/* [project]/design-system/components/Button.css [app-client] (css) */
.u-btn {
  font-family: var(--font-body);
  font-weight: var(--weight-semibold);
  border-radius: var(--radius-md);
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--dur-fast) var(--ease-out),border-color var(--dur-fast) var(--ease-out),color var(--dur-fast) var(--ease-out);
  border: 1px solid #0000;
  justify-content: center;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  display: inline-flex;
}

.u-btn:focus-visible {
  box-shadow: var(--focus-ring);
  outline: none;
}

.u-btn--md {
  height: 44px;
  font-size: var(--text-md);
  padding: 0 20px;
}

.u-btn--sm {
  height: 36px;
  font-size: var(--text-sm);
  padding: 0 14px;
}

.u-btn--lg {
  height: 52px;
  font-size: var(--text-lg);
  padding: 0 28px;
}

.u-btn--primary {
  background: var(--accent);
  color: var(--text-on-accent);
}

.u-btn--primary:hover {
  background: var(--accent-hover);
}

.u-btn--primary:active {
  background: var(--accent-press);
}

.u-btn--secondary {
  background: var(--surface-card);
  color: var(--text-body);
  border-color: var(--border-2);
}

.u-btn--secondary:hover {
  border-color: var(--ink-3);
  background: var(--surface-card);
}

.u-btn--secondary:active {
  background: var(--surface-sunken);
}

.u-btn--ghost {
  color: var(--accent-text);
  background: none;
}

.u-btn--ghost:hover {
  background: var(--accent-soft);
}

.u-btn--ghost:active {
  background: var(--accent-soft-border);
}

.u-btn[disabled] {
  opacity: .45;
  cursor: not-allowed;
  pointer-events: none;
}

.u-btn--full {
  width: 100%;
}

a.u-btn:hover {
  text-decoration: none;
}

a.u-btn--primary, a.u-btn--primary:hover {
  color: var(--text-on-accent);
}

a.u-btn--secondary, a.u-btn--secondary:hover {
  color: var(--text-body);
}

/* [project]/design-system/components/IconButton.css [app-client] (css) */
.u-iconbtn {
  border-radius: var(--radius-md);
  border: 1px solid var(--border-2);
  background: var(--surface-card);
  width: 44px;
  height: 44px;
  color: var(--ink-2);
  cursor: pointer;
  transition: background var(--dur-fast) var(--ease-out);
  justify-content: center;
  align-items: center;
  display: inline-flex;
}

.u-iconbtn:hover {
  background: var(--surface-sunken);
  color: var(--ink-1);
}

.u-iconbtn:active {
  background: var(--border-1);
}

.u-iconbtn:focus-visible {
  box-shadow: var(--focus-ring);
  outline: none;
}

.u-iconbtn--sm {
  border-radius: var(--radius-sm);
  width: 36px;
  height: 36px;
}

.u-iconbtn--plain {
  background: none;
  border-color: #0000;
}

/* [project]/design-system/components/Badge.css [app-client] (css) */
.u-badge {
  border-radius: var(--radius-full);
  height: 24px;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  border: 1px solid #0000;
  align-items: center;
  gap: 6px;
  padding: 0 10px;
  display: inline-flex;
}

.u-badge--verified {
  background: var(--verified-bg);
  color: var(--verified-text);
  border-color: var(--verified-border);
}

.u-badge--deadline {
  background: var(--note-bg);
  color: var(--note-text);
  border-color: var(--note-border);
}

.u-badge--info {
  background: var(--accent-soft);
  color: var(--accent-text-soft);
  border-color: var(--accent-soft-border);
}

.u-badge--neutral {
  background: var(--surface-sunken);
  color: var(--ink-2);
  border-color: var(--border-1);
}

.u-badge svg {
  width: 13px;
  height: 13px;
}

/* [project]/design-system/components/Tag.css [app-client] (css) */
.u-tag {
  border-radius: var(--radius-sm);
  background: var(--surface-card);
  border: 1px solid var(--border-2);
  height: 32px;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--ink-2);
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease-out);
  align-items: center;
  gap: 6px;
  padding: 0 12px;
  display: inline-flex;
}

.u-tag:hover {
  border-color: var(--ink-3);
  color: var(--ink-1);
}

.u-tag:focus-visible {
  box-shadow: var(--focus-ring);
  outline: none;
}

.u-tag--on {
  background: var(--accent-soft);
  border-color: var(--accent);
  color: var(--accent-text-soft);
  font-weight: var(--weight-semibold);
}

/* [project]/design-system/components/Card.css [app-client] (css) */
.u-card {
  background: var(--surface-card);
  border: var(--border-thin);
  border-radius: var(--radius-md);
  padding: var(--space-3);
}

.u-card--lg {
  border-radius: var(--radius-lg);
  padding: var(--space-4);
}

.u-card--float {
  box-shadow: var(--shadow-card);
}

.u-card--hover {
  transition: box-shadow var(--dur-med) var(--ease-out),transform var(--dur-med) var(--ease-out);
}

.u-card--hover:hover {
  box-shadow: var(--shadow-float);
  transform: translateY(-2px);
}

/* [project]/design-system/components/Input.css [app-client] (css) */
.u-field {
  font-family: var(--font-body);
  flex-direction: column;
  gap: 6px;
  display: flex;
}

.u-field label {
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: var(--ink-1);
}

.u-input {
  border-radius: var(--radius-md);
  border: 1px solid var(--border-2);
  background: var(--surface-card);
  height: 44px;
  font-family: var(--font-body);
  font-size: var(--text-md);
  color: var(--ink-1);
  transition: border-color var(--dur-fast) var(--ease-out),box-shadow var(--dur-fast) var(--ease-out);
  box-sizing: border-box;
  width: 100%;
  padding: 0 14px;
}

.u-input::placeholder {
  color: var(--ink-3);
}

.u-input:hover {
  border-color: var(--ink-3);
}

.u-input:focus {
  border-color: var(--accent);
  box-shadow: var(--focus-ring);
  outline: none;
}

.u-input--error {
  border-color: var(--danger);
}

.u-input--error:focus {
  border-color: var(--danger);
  box-shadow: 0 0 0 3px var(--danger-bg);
}

.u-field .u-hint {
  font-size: var(--text-xs);
  color: var(--ink-3);
}

.u-field .u-err {
  font-size: var(--text-xs);
  color: var(--danger);
}

/* [project]/design-system/components/Select.css [app-client] (css) */
.u-select {
  appearance: none;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-2);
  background: var(--surface-card) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23474C56' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") no-repeat right 12px center;
  height: 44px;
  font-family: var(--font-body);
  font-size: var(--text-md);
  color: var(--ink-1);
  box-sizing: border-box;
  cursor: pointer;
  width: 100%;
  transition: border-color var(--dur-fast) var(--ease-out);
  padding: 0 40px 0 14px;
}

.u-select:hover {
  border-color: var(--ink-3);
}

.u-select:focus {
  border-color: var(--accent);
  box-shadow: var(--focus-ring);
  outline: none;
}

/* [project]/design-system/components/Checkbox.css [app-client] (css) */
.u-check {
  cursor: pointer;
  font-family: var(--font-body);
  font-size: var(--text-md);
  color: var(--ink-1);
  align-items: flex-start;
  gap: 10px;
  display: inline-flex;
}

.u-check input {
  opacity: 0;
  width: 0;
  position: absolute;
}

.u-check .u-box {
  border: 1px solid var(--border-2);
  background: var(--surface-card);
  width: 20px;
  height: 20px;
  transition: all var(--dur-fast) var(--ease-out);
  border-radius: 6px;
  flex: none;
  justify-content: center;
  align-items: center;
  margin-top: 2px;
  display: flex;
}

.u-check svg {
  opacity: 0;
  transition: all var(--dur-fast) var(--ease-out);
  transform: scale(.6);
}

.u-check input:checked + .u-box {
  background: var(--accent);
  border-color: var(--accent);
}

.u-check input:checked + .u-box svg {
  opacity: 1;
  transform: scale(1);
}

.u-check input:focus-visible + .u-box {
  box-shadow: var(--focus-ring);
}

/* [project]/design-system/components/Switch.css [app-client] (css) */
.u-switch {
  cursor: pointer;
  font-family: var(--font-body);
  font-size: var(--text-md);
  color: var(--ink-1);
  align-items: center;
  gap: 10px;
  display: inline-flex;
}

.u-switch input {
  opacity: 0;
  width: 0;
  position: absolute;
}

.u-switch .u-track {
  border-radius: var(--radius-full);
  background: var(--border-2);
  width: 40px;
  height: 24px;
  transition: background var(--dur-med) var(--ease-out);
  flex: none;
  position: relative;
}

.u-switch .u-track:after {
  content: "";
  width: 18px;
  height: 18px;
  transition: transform var(--dur-med) var(--ease-out);
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 3px;
  left: 3px;
  box-shadow: 0 1px 3px #16181d40;
}

.u-switch input:checked + .u-track {
  background: var(--accent);
}

.u-switch input:checked + .u-track:after {
  transform: translateX(16px);
}

.u-switch input:focus-visible + .u-track {
  box-shadow: var(--focus-ring);
}

/* [project]/design-system/components/Tabs.css [app-client] (css) */
.u-tabs {
  background: var(--surface-sunken);
  border-radius: var(--radius-md);
  gap: 4px;
  width: fit-content;
  max-width: 100%;
  padding: 4px;
  display: flex;
}

.u-tab {
  border-radius: var(--radius-sm);
  height: 36px;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--ink-2);
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--dur-fast) var(--ease-out);
  background: none;
  border: 0;
  padding: 0 16px;
}

.u-tab:hover {
  color: var(--ink-1);
}

.u-tab--on {
  background: var(--surface-card);
  color: var(--ink-1);
  font-weight: var(--weight-semibold);
  box-shadow: 0 1px 3px #16181d14;
}

.u-tab:focus-visible {
  box-shadow: var(--focus-ring);
  outline: none;
}

/* [project]/design-system/components/Accordion.css [app-client] (css) */
.u-acc {
  border: var(--border-thin);
  border-radius: var(--radius-md);
  background: var(--surface-card);
  overflow: hidden;
}

.u-acc-item + .u-acc-item {
  border-top: var(--border-thin);
}

.u-acc-head {
  width: 100%;
  font-family: var(--font-body);
  font-size: var(--text-md);
  font-weight: var(--weight-semibold);
  color: var(--ink-1);
  cursor: pointer;
  text-align: left;
  background: none;
  border: 0;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  display: flex;
}

.u-acc-head:hover {
  background: var(--surface-sunken);
}

.u-acc-head:focus-visible {
  box-shadow: var(--focus-ring);
  border-radius: var(--radius-sm);
  outline: none;
}

.u-acc-head svg {
  transition: transform var(--dur-med) var(--ease-out);
  color: var(--ink-3);
  flex: none;
}

.u-acc-item--open .u-acc-head svg {
  transform: rotate(180deg);
}

.u-acc-body {
  font-size: var(--text-md);
  color: var(--ink-2);
  line-height: var(--leading-body);
  padding: 0 20px 18px;
}

/* [project]/design-system/components/LangSwitch.css [app-client] (css) */
.u-lang {
  border: 1px solid var(--border-2);
  border-radius: var(--radius-full);
  background: var(--surface-card);
  gap: 2px;
  padding: 3px;
  display: inline-flex;
}

.u-lang button {
  border-radius: var(--radius-full);
  height: 28px;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--ink-2);
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease-out);
  background: none;
  border: 0;
  padding: 0 12px;
}

.u-lang button:hover {
  color: var(--ink-1);
}

.u-lang button.u-lang--on {
  background: var(--ink-1);
  color: #fff;
  font-weight: var(--weight-semibold);
}

.u-lang button:focus-visible {
  box-shadow: var(--focus-ring);
  outline: none;
}

.u-lang--pending {
  cursor: progress;
}

.u-lang--pending button {
  opacity: .6;
}

.u-lang--pending button.u-lang--on {
  opacity: 1;
}

@media (prefers-reduced-motion: no-preference) {
  .u-lang--pending button.u-lang--on {
    animation: u-lang-pulse var(--dur-slow, .6s) var(--ease-out) infinite alternate;
  }
}

@keyframes u-lang-pulse {
  from {
    opacity: 1;
  }

  to {
    opacity: .65;
  }
}

/* [project]/design-system/components/DeadlineNote.css [app-client] (css) */
.u-note {
  background: var(--note-bg);
  border: 1px solid var(--note-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-note);
  font-family: var(--font-body);
  max-width: 280px;
  padding: 16px 18px;
  display: inline-block;
}

.u-note .u-note-date {
  font-family: var(--font-display);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-display);
  font-size: var(--text-lg);
  color: var(--note-text);
  align-items: center;
  gap: 8px;
  display: flex;
}

.u-note .u-note-dot {
  background: var(--note-accent);
  border-radius: 50%;
  flex: none;
  width: 8px;
  height: 8px;
}

.u-note .u-note-label {
  font-size: var(--text-sm);
  color: var(--note-text);
  opacity: .85;
  margin-top: 4px;
}

/* [project]/landing/landing.css [app-client] (css) */
.u-page {
  isolation: isolate;
  position: relative;
}

.u-page:before, .u-page:after {
  content: "";
  pointer-events: none;
  height: 900px;
  position: absolute;
  inset: 0 0 auto;
}

.u-page:before {
  z-index: -3;
  background: radial-gradient(56% 42% at 50% -4%, color-mix(in srgb, var(--brand-orange) 9%, transparent), transparent 70%),
    radial-gradient(32% 30% at 2% 4%, color-mix(in srgb, var(--brand-rose) 22%, transparent), transparent 70%),
    radial-gradient(32% 30% at 98% 0%, color-mix(in srgb, var(--brand-yellow) 28%, transparent), transparent 70%);
}

.u-page:after {
  z-index: -2;
  background-image: radial-gradient(color-mix(in srgb, var(--ink-1) 20%, transparent) 1px, transparent 1px);
  opacity: .5;
  background-size: 22px 22px;
  -webkit-mask-image: radial-gradient(64% 62% at 50% 8%, #000, #0000 76%);
  mask-image: radial-gradient(64% 62% at 50% 8%, #000, #0000 76%);
}

.u-hero {
  position: relative;
  overflow: hidden;
}

.u-pill {
  border-radius: var(--radius-full);
  background: var(--surface-card);
  border: 1px solid var(--border-2);
  height: 30px;
  box-shadow: var(--shadow-card);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--accent-text);
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  display: inline-flex;
}

.u-pill-dot {
  background: var(--accent);
  border-radius: 50%;
  flex: none;
  width: 7px;
  height: 7px;
}

.u-eyebrow {
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--accent-text);
  margin: 0 0 10px;
}

.u-float {
  z-index: -1;
  position: absolute;
}

@media (max-width: 1279px) {
  .u-float {
    display: none;
  }
}

.u-float-card {
  background: var(--surface-card);
  border: var(--border-thin);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-float);
  min-width: 168px;
  padding: 12px 14px;
}

.u-float-card .u-float-title {
  font-family: var(--font-display);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-display);
  font-size: var(--text-md);
  color: var(--ink-1);
}

.u-float-card .u-float-meta {
  font-size: var(--text-xs);
  color: var(--ink-3);
  margin-top: 2px;
}

.u-programs {
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px 32px;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.u-programs li {
  font-family: var(--font-display);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-display);
  font-size: var(--text-lg);
  color: var(--ink-3);
}

.u-band {
  background: linear-gradient(180deg,
    transparent,
    color-mix(in srgb, var(--surface-sunken) 62%, var(--canvas)) 16%,
    color-mix(in srgb, var(--surface-sunken) 62%, var(--canvas)) 84%,
    transparent);
  border-top: 1px solid color-mix(in srgb, var(--border-1) 70%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--border-1) 70%, transparent);
}

.u-feature {
  background: var(--surface-card);
  border: var(--border-thin);
  border-radius: var(--radius-lg);
  padding: var(--space-3);
  transition: box-shadow var(--dur-med) var(--ease-out),
    transform var(--dur-med) var(--ease-out),
    border-color var(--dur-med) var(--ease-out);
  flex-direction: column;
  display: flex;
  position: relative;
  overflow: hidden;
}

.u-feature:hover {
  border-color: var(--border-2);
  box-shadow: var(--shadow-float);
  transform: translateY(-3px);
}

.u-feature-mock {
  border-radius: var(--radius-md);
  border: var(--border-thin);
  background: linear-gradient(180deg, var(--canvas), var(--surface-card));
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
  padding: 14px;
  display: flex;
}

.u-mock-row {
  font-size: var(--text-xs);
  color: var(--ink-2);
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  display: flex;
}

.u-mock-line {
  border-radius: var(--radius-full);
  background: var(--surface-sunken);
  height: 8px;
}

.u-step {
  background: var(--surface-card);
  border: var(--border-thin);
  border-radius: var(--radius-lg);
  padding: var(--space-3);
  position: relative;
}

.u-step-num {
  border-radius: var(--radius-full);
  width: 40px;
  height: 40px;
  font-family: var(--font-display);
  font-weight: var(--weight-bold);
  font-size: var(--text-lg);
  color: var(--ink-inverse);
  background: var(--accent);
  box-shadow: 0 0 0 6px color-mix(in srgb, var(--brand-orange) 12%, transparent);
  justify-content: center;
  align-items: center;
  display: inline-flex;
}

@media (min-width: 721px) {
  .u-step:not(:last-child):after {
    content: "";
    border-top: 1px dashed var(--border-2);
    width: 18px;
    position: absolute;
    top: 44px;
    right: -17px;
  }
}

.u-sch {
  position: relative;
  overflow: hidden;
}

.u-sch:before {
  content: "";
  background: linear-gradient(90deg, var(--brand-orange), var(--brand-rose));
  opacity: 0;
  height: 3px;
  transition: opacity var(--dur-med) var(--ease-out);
  position: absolute;
  inset: 0 0 auto;
}

.u-sch:hover:before {
  opacity: 1;
}

.u-cta-panel {
  isolation: isolate;
  background: var(--surface-ink);
  border-radius: calc(var(--radius-lg) + 8px);
  position: relative;
  overflow: hidden;
}

.u-cta-panel:before {
  content: "";
  z-index: -1;
  background: radial-gradient(46% 60% at 50% 0%, color-mix(in srgb, var(--brand-orange) 34%, transparent), transparent 70%),
    radial-gradient(30% 40% at 88% 12%, color-mix(in srgb, var(--brand-rose) 26%, transparent), transparent 72%);
  height: 460px;
  position: absolute;
  inset: -40% -10% auto;
}

.u-footer-col {
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.u-footer-head {
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--ink-3);
  margin: 0 0 4px;
}

.u-footer-col a {
  font-size: var(--text-sm);
  color: var(--ink-2);
}

.u-footer-col a:hover {
  color: var(--ink-1);
}

@media (prefers-reduced-motion: reduce) {
  .u-feature:hover {
    transform: none;
  }
}

/* [project]/landing/sections/SiteHeader.css [app-client] (css) */
.u-header {
  z-index: 20;
  position: sticky;
  top: 0;
}

.u-header-bar {
  background: color-mix(in srgb,var(--surface-card) 82%,transparent);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border: 1px solid var(--border-1);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-card);
}

.u-wordmark {
  font-family: var(--font-display);
  font-weight: var(--weight-heavy);
  letter-spacing: var(--tracking-display);
  color: var(--ink-1);
  text-decoration: none;
}

.u-wordmark:hover {
  color: var(--ink-1);
  text-decoration: none;
}

.u-header-menu {
  background: color-mix(in srgb,var(--surface-card) 96%,transparent);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border-1);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-float);
  margin-top: 8px;
}

.u-header-menu-list {
  flex-direction: column;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.u-header-menu-list a {
  font-size: var(--text-md);
  color: var(--ink-2);
  padding: 10px 4px;
  display: block;
}

.u-header-menu-list a:hover {
  color: var(--ink-1);
}

.u-header-menu-list li:last-child {
  margin-top: 8px;
}

/*# sourceMappingURL=_1ui3cxv._.css.map*/