.find-your-cyc {
  --fycyc-teal: #009fb4;
  --fycyc-teal-deep: #007f96;
  --fycyc-navy: #025c7a;
  --fycyc-navy-deep: #073f55;
  --fycyc-ink: #163d4f;
  --fycyc-pale: #f3f8fb;
  --fycyc-pale-2: #e8f4f7;
  --fycyc-white: #ffffff;
  --fycyc-border: rgba(2, 92, 122, .18);
  --fycyc-heading-font: "Bebas Neue", "Roboto Condensed", "Arial Narrow", sans-serif;
  --fycyc-body-font: inherit;
  color: var(--fycyc-ink);
  font-family: var(--fycyc-body-font);
  scroll-margin-top: 100px;
  position: relative;
}

.find-your-cyc *,
.find-your-cyc *::before,
.find-your-cyc *::after { box-sizing: border-box; }

.find-your-cyc button,
.find-your-cyc input,
.find-your-cyc a { font: inherit; }

.find-your-cyc button { cursor: pointer; }
.find-your-cyc svg { display:block; width:100%; height:100%; }

.fycyc-app {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

/* ----- Shared section shells ----- */
.fycyc-intro,
.fycyc-panel {
  position: relative;
  overflow: hidden;
  background: var(--fycyc-white);
  border-top: 3px solid var(--fycyc-teal);
  box-shadow: 0 18px 48px rgba(4, 64, 86, .07);
}

.fycyc-intro {
  background:
    linear-gradient(110deg, rgba(255,255,255,.98) 0 49%, rgba(239,248,250,.98) 49% 100%);
}

.fycyc-panel {
  padding: clamp(30px, 5vw, 62px);
  background:
    radial-gradient(circle at 94% 18%, rgba(0,159,180,.07) 0 120px, transparent 121px),
    linear-gradient(180deg, #ffffff 0%, #fbfdfe 100%);
}

.fycyc-enter {
  animation: fycyc-enter .28s ease both;
}

@keyframes fycyc-enter {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ----- Intro ----- */
.fycyc-intro-grid {
  min-height: 360px;
  display:grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
}

.fycyc-intro-copy {
  padding: clamp(34px, 5.2vw, 70px);
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:flex-start;
  position:relative;
  z-index:2;
}

.fycyc-intro-visual {
  position:relative;
  min-height:360px;
  padding: clamp(34px, 4vw, 54px);
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  color:#fff;
  background:
    radial-gradient(circle at 74% 22%, rgba(255,255,255,.18) 0 86px, transparent 87px),
    linear-gradient(145deg, #0b7790 0%, #075a73 46%, #033f57 100%);
}

.fycyc-intro-visual::before,
.fycyc-intro-visual::after {
  content:"";
  position:absolute;
  border:1px solid rgba(255,255,255,.26);
  border-radius:50%;
}
.fycyc-intro-visual::before { width:280px; height:280px; right:-80px; top:-75px; }
.fycyc-intro-visual::after { width:170px; height:170px; right:18%; top:19%; }

.fycyc-intro-visual-copy {
  width:min(360px, 100%);
  position:relative;
  z-index:2;
}

.fycyc-visual-small {
  display:block;
  font-size:.76rem;
  font-weight:800;
  letter-spacing:.18em;
  margin-bottom:6px;
  opacity:.72;
}

.fycyc-intro-visual-copy strong {
  display:block;
  font-family:var(--fycyc-heading-font);
  font-size:clamp(3.2rem, 6vw, 5.6rem);
  line-height:.86;
  letter-spacing:.015em;
  text-transform:uppercase;
}

.fycyc-visual-note {
  display:block;
  max-width:300px;
  margin-top:14px;
  line-height:1.45;
  opacity:.86;
}

.fycyc-site-ribbon {
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:6px;
  width:min(360px,100%);
  margin-top:28px;
}

.fycyc-site-ribbon-item {
  height:8px;
  background:var(--fycyc-site);
  box-shadow:0 0 0 1px rgba(255,255,255,.2);
}

/* ----- Type ----- */
.fycyc-eyebrow,
.fycyc-question-kicker,
.fycyc-section-label,
.fycyc-stage {
  color:var(--fycyc-teal);
  font-size:.76rem;
  font-weight:800;
  letter-spacing:.13em;
  text-transform:uppercase;
}

.fycyc-title,
.fycyc-question h3,
.fycyc-result h3,
.fycyc-review h3,
.fycyc-match-site-name {
  margin:0;
  font-family:var(--fycyc-heading-font);
  color:var(--fycyc-navy-deep);
  text-transform:uppercase;
  letter-spacing:.01em;
}

.fycyc-title {
  margin-top:5px;
  font-size:clamp(3.5rem, 7vw, 6.5rem);
  line-height:.86;
}

.fycyc-intro-promise {
  margin:15px 0 0;
  color:var(--fycyc-navy-deep);
  font-size:clamp(1.16rem, 2vw, 1.42rem);
  font-weight:800;
  line-height:1.25;
}

.fycyc-lead,
.fycyc-help,
.fycyc-result-summary {
  max-width:720px;
  line-height:1.55;
  font-size:1.02rem;
}

.fycyc-lead { margin:14px 0 0; }

/* ----- Buttons ----- */
.fycyc-intro-actions,
.fycyc-result-actions,
.fycyc-answer-actions {
  display:flex;
  gap:14px;
  align-items:center;
  flex-wrap:wrap;
}

.fycyc-intro-actions { margin-top:28px; }
.fycyc-result-actions { margin-top:26px; }
.fycyc-answer-actions { margin-top:26px; }

.fycyc-btn {
  min-height:48px;
  padding:12px 25px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:2px solid transparent;
  border-radius:999px;
  text-decoration:none !important;
  text-transform:uppercase;
  letter-spacing:.025em;
  font-family:var(--fycyc-heading-font);
  font-size:1rem;
  line-height:1;
  transition:transform .16s ease, box-shadow .16s ease, background .16s ease, opacity .16s ease;
}

.fycyc-btn:hover:not(:disabled) {
  transform:translateY(-1px);
  box-shadow:0 8px 20px rgba(2,92,122,.14);
}

.fycyc-btn:disabled {
  cursor:not-allowed;
  opacity:.38;
  filter:saturate(.35);
}

.fycyc-btn-primary {
  background:var(--fycyc-result-colour, var(--fycyc-teal));
  color:#fff !important;
}

.fycyc-btn-secondary {
  background:transparent;
  border-color:var(--fycyc-result-colour, var(--fycyc-teal));
  color:var(--fycyc-result-colour, var(--fycyc-teal)) !important;
}

.fycyc-minute {
  display:inline-flex;
  align-items:center;
  gap:7px;
  font-size:.88rem;
  opacity:.72;
}
.fycyc-minute svg { width:18px; height:18px; }

/* ----- Quiz chrome ----- */
.fycyc-head {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

.fycyc-mark {
  color:var(--fycyc-navy-deep);
  font-weight:900;
  font-size:1rem;
  letter-spacing:.015em;
  text-transform:uppercase;
}
.fycyc-mark span { color:var(--fycyc-teal); }

.fycyc-close,
.fycyc-back,
.fycyc-edit,
.fycyc-text-link {
  border:0;
  background:transparent;
  color:var(--fycyc-navy);
  font-weight:800;
  padding:7px 0;
  text-decoration:none !important;
}
.fycyc-close:hover,
.fycyc-back:hover,
.fycyc-edit:hover,
.fycyc-text-link:hover { color:var(--fycyc-teal-deep); }

.fycyc-progress {
  height:6px;
  margin:17px 0 9px;
  overflow:hidden;
  background:rgba(2,92,122,.11);
}
.fycyc-progress span {
  display:block;
  height:100%;
  background:linear-gradient(90deg, var(--fycyc-teal), #30bed0);
  transition:width .28s ease;
}

.fycyc-nav {
  min-height:36px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}
.fycyc-stage { opacity:.65; }

/* ----- Questions ----- */
.fycyc-question {
  max-width:960px;
  margin:10px auto 0;
  position:relative;
  z-index:1;
}

.fycyc-question-kicker {
  margin-top:16px;
  text-align:center;
  opacity:.88;
}

.fycyc-question h3,
.fycyc-review h3 {
  margin-top:7px;
  font-size:clamp(2.5rem, 4.8vw, 4.5rem);
  line-height:.94;
  text-align:center;
}

.fycyc-question .fycyc-help,
.fycyc-review .fycyc-help {
  margin:10px auto 28px;
  text-align:center;
  color:#486b79;
}

.fycyc-options {
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
}

.fycyc-option {
  min-height:155px;
  padding:22px 20px 20px;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:12px;
  position:relative;
  text-align:left;
  border:2px solid rgba(2,92,122,.15);
  border-radius:3px;
  background:#fff;
  color:var(--fycyc-ink);
  box-shadow:0 6px 20px rgba(4,64,86,.035);
  transition:transform .15s ease, border-color .15s ease, box-shadow .15s ease, background .15s ease;
}

.fycyc-option:hover {
  transform:translateY(-2px);
  border-color:rgba(0,159,180,.55);
  box-shadow:0 12px 28px rgba(4,64,86,.08);
}

.fycyc-option.is-selected {
  border-color:var(--fycyc-teal);
  background:linear-gradient(180deg,#fff 0%,rgba(0,159,180,.065) 100%);
  box-shadow:inset 0 4px 0 var(--fycyc-teal), 0 10px 28px rgba(4,64,86,.07);
}

.fycyc-option-icon {
  width:43px;
  height:43px;
  color:var(--fycyc-teal-deep);
  flex:0 0 auto;
}

.fycyc-option-copy { display:block; }
.fycyc-option strong {
  display:block;
  color:var(--fycyc-navy-deep);
  font-size:1.08rem;
  margin-bottom:5px;
  line-height:1.18;
}
.fycyc-option-help {
  display:block;
  color:#4d6a77;
  line-height:1.38;
  font-size:.92rem;
}

.fycyc-option-check {
  position:absolute;
  top:12px;
  right:12px;
  width:25px;
  height:25px;
  display:grid;
  place-items:center;
  border:1px solid rgba(2,92,122,.22);
  border-radius:50%;
  color:#fff;
  font-weight:900;
  font-size:.75rem;
  background:#fff;
}
.fycyc-option.is-selected .fycyc-option-check {
  background:var(--fycyc-teal);
  border-color:var(--fycyc-teal);
}

.fycyc-selection-note {
  margin-top:14px;
  text-align:center;
  color:#597581;
  font-size:.88rem;
}

/* Experience cards are more visual */
.fycyc-options-experience {
  grid-template-columns:repeat(5,minmax(0,1fr));
}
.fycyc-options-experience .fycyc-option {
  min-height:190px;
  justify-content:flex-start;
}
.fycyc-options-experience .fycyc-option-icon {
  width:56px;
  height:56px;
}

/* Locations and essentials feel more editorial */
.fycyc-options-locations { grid-template-columns:repeat(3,minmax(0,1fr)); }
.fycyc-options-essentials { grid-template-columns:repeat(2,minmax(0,1fr)); }
.fycyc-options-essentials .fycyc-option,
.fycyc-options-accessibility_detail .fycyc-option {
  min-height:118px;
  flex-direction:row;
  align-items:center;
  padding-right:52px;
}
.fycyc-options-essentials .fycyc-option-icon,
.fycyc-options-accessibility_detail .fycyc-option-icon {
  width:42px;
  height:42px;
}

.fycyc-options-year_levels .fycyc-option {
  min-height:92px;
  align-items:center;
  justify-content:center;
  text-align:center;
}
.fycyc-options-year_levels .fycyc-option-icon { width:34px; height:34px; }
.fycyc-options-year_levels .fycyc-option-help { display:none; }

/* Number question */
.fycyc-number-shell {
  margin:30px auto 0;
  width:min(440px,100%);
  padding:22px 24px 18px;
  border-top:1px solid rgba(2,92,122,.12);
  border-bottom:1px solid rgba(2,92,122,.12);
}
.fycyc-number-row {
  display:flex;
  justify-content:center;
  align-items:center;
  gap:14px;
}
.fycyc-number {
  width:170px;
  height:94px;
  border:0;
  border-bottom:4px solid var(--fycyc-teal);
  background:#fff;
  color:var(--fycyc-navy-deep);
  text-align:center;
  font-family:var(--fycyc-heading-font);
  font-size:4.3rem;
  line-height:1;
  box-shadow:0 10px 24px rgba(4,64,86,.06);
}
.fycyc-stepper {
  width:54px;
  height:54px;
  border:1px solid rgba(0,159,180,.18);
  border-radius:2px;
  background:rgba(0,159,180,.10);
  color:var(--fycyc-teal-deep);
  font-size:1.8rem;
}
.fycyc-stepper:hover { background:rgba(0,159,180,.17); }
.fycyc-unit {
  margin-top:9px;
  text-align:center;
  text-transform:uppercase;
  letter-spacing:.15em;
  font-size:.72rem;
  font-weight:800;
  color:#587783;
}

.fycyc-continue {
  display:flex;
  justify-content:center;
  margin-top:28px;
}

.fycyc-validation {
  max-width:560px;
  margin:18px auto 0;
  padding:12px 16px;
  border-left:4px solid #b42318;
  background:#fff2f2;
  color:#7a271a;
}

/* ----- Result states ----- */
.fycyc-result-panel { background:#fff; }
.fycyc-result {
  --fycyc-result-colour:var(--fycyc-teal);
  position:relative;
  z-index:1;
  background:#fff;
}

.fycyc-result-hero {
  display:grid;
  grid-template-columns:minmax(0,1.2fr) minmax(300px,.8fr);
  min-height:430px;
  border-left:8px solid var(--fycyc-result-colour);
  background:linear-gradient(105deg,#fff 0 62%, rgba(2,92,122,.035) 62% 100%);
}

.fycyc-result-copy {
  padding:clamp(30px,5vw,58px);
}

.fycyc-result .fycyc-eyebrow { color:var(--fycyc-result-colour); }
.fycyc-result-title {
  margin-top:7px !important;
  color:var(--fycyc-result-colour) !important;
  font-size:clamp(3.4rem,6vw,6.1rem) !important;
  line-height:.88 !important;
  text-align:left !important;
}
.fycyc-result-headline {
  max-width:700px;
  margin:17px 0 0;
  color:var(--fycyc-navy-deep);
  font-size:1.35rem;
  font-weight:800;
  line-height:1.25;
}
.fycyc-result-summary { margin:10px 0 0; }

.fycyc-result-visual {
  min-height:100%;
  position:relative;
  overflow:hidden;
  padding:34px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  color:#fff;
  background:
    radial-gradient(circle at 75% 17%, rgba(255,255,255,.20) 0 80px, transparent 82px),
    linear-gradient(145deg, color-mix(in srgb, var(--fycyc-result-colour), #ffffff 7%), var(--fycyc-result-colour));
}

/* Safari fallback for color-mix */
@supports not (background: color-mix(in srgb, red, blue)) {
  .fycyc-result-visual { background:var(--fycyc-result-colour); }
}

.fycyc-result-visual::after {
  content:"";
  position:absolute;
  width:330px;
  height:330px;
  border:1px solid rgba(255,255,255,.25);
  border-radius:50%;
  right:-130px;
  bottom:-120px;
}

.fycyc-result-badge {
  width:118px;
  height:118px;
  border:2px solid rgba(255,255,255,.78);
  border-radius:50%;
  display:grid;
  place-items:center;
  align-content:center;
  text-align:center;
  line-height:1;
  position:relative;
  z-index:2;
}
.fycyc-result-badge span { font-size:.63rem; letter-spacing:.2em; }
.fycyc-result-badge strong { margin-top:4px; font-size:.8rem; }
.fycyc-result-mark {
  margin-top:20px;
  max-width:320px;
  text-align:center;
  font-family:var(--fycyc-heading-font);
  font-size:clamp(3.2rem,5vw,5.2rem);
  line-height:.86;
  text-transform:uppercase;
  position:relative;
  z-index:2;
}
.fycyc-result-visual-lines {
  width:150px;
  margin-top:24px;
  display:grid;
  gap:6px;
  position:relative;
  z-index:2;
}
.fycyc-result-visual-lines span { display:block; height:3px; background:rgba(255,255,255,.75); }
.fycyc-result-visual-lines span:nth-child(2) { width:74%; }
.fycyc-result-visual-lines span:nth-child(3) { width:48%; }

.fycyc-reasons {
  list-style:none;
  padding:0;
  margin:25px 0 0;
  display:grid;
  gap:9px;
}
.fycyc-reasons li {
  position:relative;
  padding-left:29px;
  line-height:1.4;
}
.fycyc-reasons li::before {
  content:"✓";
  position:absolute;
  left:0;
  top:1px;
  width:20px;
  height:20px;
  display:grid;
  place-items:center;
  border-radius:50%;
  color:#fff;
  background:var(--fycyc-result-colour,var(--fycyc-teal));
  font-size:.7rem;
  font-weight:900;
}

.fycyc-check-box {
  margin:22px 0 0;
  padding:17px 18px;
  border-left:4px solid #f79009;
  background:#fff8ed;
}
.fycyc-check-box strong { color:#8b4b00; }
.fycyc-check-box p { margin:5px 0 0; }

.fycyc-section-label {
  margin-bottom:14px;
  color:var(--fycyc-navy-deep);
}

.fycyc-alternatives {
  margin-top:26px;
  padding:25px clamp(30px,5vw,58px) 0;
  border-top:1px solid var(--fycyc-border);
}
.fycyc-alt-grid,
.fycyc-match-grid {
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:16px;
}
.fycyc-alt-card {
  position:relative;
  padding:22px 22px 20px;
  background:var(--fycyc-pale);
  overflow:hidden;
}
.fycyc-alt-accent {
  position:absolute;
  left:0;
  top:0;
  bottom:0;
  width:5px;
  background:var(--fycyc-result-colour);
}
.fycyc-alt-card h5 {
  margin:0 0 6px;
  color:var(--fycyc-result-colour);
  font-size:1.18rem;
}
.fycyc-alt-card p { margin:0 0 8px; line-height:1.4; }

.fycyc-result > .fycyc-answer-actions,
.fycyc-close-results > .fycyc-answer-actions {
  padding:22px clamp(30px,5vw,58px) 30px;
}

/* Close match */
.fycyc-close-results {
  padding:clamp(30px,5vw,58px);
}
.fycyc-close-results > .fycyc-eyebrow,
.fycyc-close-results > h3,
.fycyc-close-summary { text-align:center; margin-left:auto; margin-right:auto; }
.fycyc-close-results > h3 {
  margin-top:6px;
  font-size:clamp(2.6rem,5vw,4.8rem);
  line-height:.92;
}
.fycyc-close-summary { margin-top:8px; }
.fycyc-match-grid { margin-top:28px; }
.fycyc-match-card {
  position:relative;
  padding:26px;
  border-top:7px solid var(--fycyc-result-colour);
  background:#fff;
  box-shadow:0 12px 30px rgba(4,64,86,.07);
}
.fycyc-match-site-name {
  color:var(--fycyc-result-colour);
  font-size:2.3rem;
  line-height:.95;
}
.fycyc-match-headline { margin:9px 0 0; color:#486a77; line-height:1.4; }
.fycyc-match-card .fycyc-result-actions { display:grid; grid-template-columns:1fr; }
.fycyc-match-card .fycyc-btn { width:100%; }

.fycyc-difference-panel {
  margin-top:24px;
  padding:24px;
  background:var(--fycyc-pale);
}
.fycyc-difference-grid { display:grid; grid-template-columns:1fr 1fr; gap:28px; }
.fycyc-difference-col { border-top:4px solid var(--fycyc-result-colour); padding-top:14px; }
.fycyc-difference-col > strong { color:var(--fycyc-result-colour); font-size:1.08rem; }
.fycyc-difference-col ul { margin:10px 0 0; padding-left:18px; line-height:1.55; }

/* No match */
.fycyc-no-match {
  padding:clamp(32px,5vw,60px);
  border-left:8px solid var(--fycyc-teal);
}
.fycyc-no-match h3 {
  margin-top:7px;
  font-size:clamp(2.8rem,5vw,4.9rem);
  line-height:.94;
}

/* ----- Review ----- */
.fycyc-review { max-width:900px; margin:0 auto; }
.fycyc-review-rows { margin:28px 0; border-top:1px solid var(--fycyc-border); }
.fycyc-review-row {
  display:grid;
  grid-template-columns:46px minmax(0,1fr) auto;
  gap:16px;
  align-items:center;
  padding:14px 0;
  border-bottom:1px solid var(--fycyc-border);
}
.fycyc-review-icon {
  width:38px;
  height:38px;
  padding:7px;
  color:var(--fycyc-teal-deep);
  background:var(--fycyc-pale-2);
}
.fycyc-review-copy { display:grid; gap:2px; }
.fycyc-review-copy strong { color:var(--fycyc-navy-deep); }
.fycyc-review-copy span { color:#587480; line-height:1.4; }

/* ----- Focus / accessibility ----- */
.find-your-cyc button:focus-visible,
.find-your-cyc a:focus-visible,
.find-your-cyc input:focus-visible {
  outline:3px solid #111;
  outline-offset:3px;
}

/* ----- Responsive ----- */
@media (max-width: 1050px) {
  .fycyc-options-experience { grid-template-columns:repeat(3,minmax(0,1fr)); }
}

@media (max-width: 820px) {
  .fycyc-app { width:min(100% - 20px,720px); }
  .fycyc-intro-grid { grid-template-columns:1fr; }
  .fycyc-intro-visual { min-height:240px; }
  .fycyc-panel { padding:28px 20px; }
  .fycyc-options,
  .fycyc-options-experience,
  .fycyc-options-locations { grid-template-columns:1fr 1fr; }
  .fycyc-result-hero { grid-template-columns:1fr; }
  .fycyc-result-visual { min-height:280px; }
  .fycyc-alt-grid,
  .fycyc-match-grid { grid-template-columns:1fr; }
  .fycyc-difference-grid { grid-template-columns:1fr; }
  .fycyc-result-title { font-size:4.1rem !important; }
}

@media (max-width: 560px) {
  .fycyc-app { width:calc(100% - 14px); }
  .fycyc-intro-copy { padding:30px 22px 28px; }
  .fycyc-intro-visual { padding:28px 22px; }
  .fycyc-title { font-size:4rem; }
  .fycyc-question h3,
  .fycyc-review h3 { font-size:2.8rem; }
  .fycyc-options,
  .fycyc-options-experience,
  .fycyc-options-locations,
  .fycyc-options-essentials { grid-template-columns:1fr; }
  .fycyc-option { min-height:112px; flex-direction:row; align-items:center; padding-right:48px; }
  .fycyc-option-icon { width:42px; height:42px; }
  .fycyc-options-year_levels .fycyc-option { min-height:82px; }
  .fycyc-number-shell { padding-left:8px; padding-right:8px; }
  .fycyc-number { width:140px; height:82px; font-size:3.5rem; }
  .fycyc-stepper { width:48px; height:48px; }
  .fycyc-result-copy { padding:28px 22px; }
  .fycyc-result-title { font-size:3.7rem !important; }
  .fycyc-result-actions { display:grid; grid-template-columns:1fr; }
  .fycyc-result-actions .fycyc-btn { width:100%; }
  .fycyc-alternatives { padding-left:22px; padding-right:22px; }
  .fycyc-result > .fycyc-answer-actions,
  .fycyc-close-results > .fycyc-answer-actions { padding-left:22px; padding-right:22px; }
  .fycyc-head { align-items:flex-start; }
  .fycyc-stage { display:none; }
}

@media (prefers-reduced-motion: reduce) {
  .find-your-cyc *,
  .find-your-cyc *::before,
  .find-your-cyc *::after {
    scroll-behavior:auto !important;
    transition:none !important;
    animation:none !important;
  }
}

/* =========================================================
   v0.2.1 polish pass
   - roomier cards
   - stronger selected states
   - 3 + 2 experience layout
   - centred incomplete location rows
   - refined program-location hierarchy
   - cleaner Safari number input
   - tighter question-panel proportions
   ========================================================= */

/* Let question screens breathe without feeling like a giant empty canvas. */
.fycyc-panel {
  padding-top: clamp(30px, 4.2vw, 52px);
  padding-bottom: clamp(30px, 4.2vw, 52px);
}

.fycyc-question {
  margin-top: 6px;
}

.fycyc-question .fycyc-help,
.fycyc-review .fycyc-help {
  margin-bottom: 24px;
  font-size: 1rem;
}

/* More generous, easier-to-scan cards. */
.fycyc-option {
  min-height: 178px;
  padding: 26px 24px 24px;
  gap: 14px;
  border-color: rgba(2,92,122,.17);
  box-shadow: 0 7px 20px rgba(4,64,86,.04);
}

.fycyc-option:hover {
  transform: translateY(-3px);
  border-color: rgba(0,159,180,.7);
  box-shadow: 0 14px 30px rgba(4,64,86,.10);
}

.fycyc-option.is-selected {
  border-color: var(--fycyc-teal);
  background: linear-gradient(180deg,#fff 0%,rgba(0,159,180,.105) 100%);
  box-shadow: inset 0 5px 0 var(--fycyc-teal), 0 14px 30px rgba(4,64,86,.10);
  transform: translateY(-1px);
}

.fycyc-option-icon {
  width: 49px;
  height: 49px;
}

.fycyc-option strong {
  font-size: 1.16rem;
  line-height: 1.2;
}

.fycyc-option-help {
  font-size: .98rem;
  line-height: 1.48;
}

.fycyc-option-check {
  width: 28px;
  height: 28px;
  border-width: 2px;
  font-size: .82rem;
}

.fycyc-option.is-selected .fycyc-option-check {
  box-shadow: 0 0 0 3px #fff;
}

/* Experience: deliberately 3 + 2 on desktop, with the second row centred. */
.fycyc-options-experience {
  grid-template-columns: repeat(6, minmax(0,1fr));
  gap: 16px;
}

.fycyc-options-experience .fycyc-option {
  grid-column: span 2;
  min-height: 220px;
}

.fycyc-options-experience .fycyc-option:nth-child(4) {
  grid-column: 2 / span 2;
}

.fycyc-options-experience .fycyc-option:nth-child(5) {
  grid-column: 4 / span 2;
}

.fycyc-options-experience .fycyc-option-icon {
  width: 66px;
  height: 66px;
}

/* Location cards: 3 on top, 2 centred beneath. */
.fycyc-options-locations {
  grid-template-columns: repeat(6, minmax(0,1fr));
  gap: 16px;
}

.fycyc-options-locations .fycyc-option {
  grid-column: span 2;
  min-height: 166px;
}

.fycyc-options-locations .fycyc-option:nth-child(4) {
  grid-column: 2 / span 2;
}

.fycyc-options-locations .fycyc-option:nth-child(5) {
  grid-column: 4 / span 2;
}

/* Three-choice screens are important decisions, so give them more presence. */
.fycyc-options-program_location .fycyc-option,
.fycyc-options-catering .fycyc-option,
.fycyc-options-program_style .fycyc-option {
  min-height: 190px;
  justify-content: flex-start;
}

.fycyc-options-program_location .fycyc-option-icon,
.fycyc-options-catering .fycyc-option-icon,
.fycyc-options-program_style .fycyc-option-icon {
  width: 60px;
  height: 60px;
}

/* Essentials remains compact and editorial, but selected states are stronger. */
.fycyc-options-essentials .fycyc-option,
.fycyc-options-accessibility_detail .fycyc-option {
  min-height: 132px;
  padding-top: 22px;
  padding-bottom: 22px;
}

/* Year-level cards get a little more breathing room. */
.fycyc-options-year_levels .fycyc-option {
  min-height: 104px;
}

/* Number input: remove native Safari/Chrome spinners and make the number the hero. */
.fycyc-number-shell {
  width: min(480px,100%);
  margin-top: 26px;
  padding-top: 18px;
  padding-bottom: 16px;
}

.fycyc-number-row {
  gap: 18px;
}

.fycyc-number {
  width: 190px;
  height: 104px;
  font-size: 5.25rem;
  font-weight: 700;
  color: var(--fycyc-navy-deep);
  -moz-appearance: textfield;
  appearance: textfield;
}

.fycyc-number::-webkit-inner-spin-button,
.fycyc-number::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.fycyc-stepper {
  width: 60px;
  height: 60px;
  font-size: 2rem;
  font-weight: 700;
}

.fycyc-unit {
  font-size: .78rem;
  margin-top: 11px;
}

/* Keep the CTA close to the decision rather than floating in unused space. */
.fycyc-continue {
  margin-top: 24px;
}

/* Slightly stronger close-match cards without changing their architecture. */
.fycyc-match-card {
  box-shadow: 0 14px 34px rgba(4,64,86,.085);
}

/* Tablet: allow 2-up, abandoning desktop 3+2 composition gracefully. */
@media (max-width: 1050px) {
  .fycyc-options-experience,
  .fycyc-options-locations {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }
  .fycyc-options-experience .fycyc-option,
  .fycyc-options-locations .fycyc-option,
  .fycyc-options-experience .fycyc-option:nth-child(4),
  .fycyc-options-experience .fycyc-option:nth-child(5),
  .fycyc-options-locations .fycyc-option:nth-child(4),
  .fycyc-options-locations .fycyc-option:nth-child(5) {
    grid-column: auto;
  }
}

@media (max-width: 820px) {
  .fycyc-option {
    min-height: 150px;
    padding: 22px 20px;
  }
  .fycyc-options-program_location .fycyc-option,
  .fycyc-options-catering .fycyc-option,
  .fycyc-options-program_style .fycyc-option {
    min-height: 160px;
  }
}

@media (max-width: 560px) {
  .fycyc-options-experience,
  .fycyc-options-locations {
    grid-template-columns: 1fr;
  }
  .fycyc-option,
  .fycyc-options-experience .fycyc-option,
  .fycyc-options-locations .fycyc-option,
  .fycyc-options-program_location .fycyc-option,
  .fycyc-options-catering .fycyc-option,
  .fycyc-options-program_style .fycyc-option {
    min-height: 116px;
    flex-direction: row;
    align-items: center;
    padding: 18px 50px 18px 18px;
    gap: 14px;
  }
  .fycyc-option-icon,
  .fycyc-options-experience .fycyc-option-icon,
  .fycyc-options-program_location .fycyc-option-icon,
  .fycyc-options-catering .fycyc-option-icon,
  .fycyc-options-program_style .fycyc-option-icon {
    width: 46px;
    height: 46px;
  }
  .fycyc-option strong { font-size: 1.05rem; }
  .fycyc-option-help { font-size: .91rem; line-height: 1.38; }
  .fycyc-number { width: 146px; height: 86px; font-size: 4rem; }
  .fycyc-stepper { width: 50px; height: 50px; }
}
