:root {
  --navy: #12224a;
  --navy-deep: #09132e;
  --blue: #1b62e7;
  --green: #63c748;
  --orange: #ff6a2a;
  --muted: #65708a;
  --line: #dce3f0;
  --paper: #f7f9ff;
  --white: #ffffff;
  --shadow: 0 22px 55px rgba(23, 43, 91, 0.1);
}

* { box-sizing: border-box; }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: #17213b;
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; }
.container { width: min(1120px, calc(100% - 3rem)); margin-inline: auto; }

.hero {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(125deg, #0b1b44 0%, #152e6e 55%, #245de2 150%);
}
.hero-shape {
  position: absolute;
  width: 35rem;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 45% 55% 70% 30% / 45% 34% 66% 55%;
  pointer-events: none;
}
.hero-shape-one { top: -24rem; right: -5rem; transform: rotate(24deg); }
.hero-shape-two { bottom: -28rem; left: -17rem; border-width: 38px; border-color: rgba(91, 177, 255, 0.11); transform: rotate(-24deg); }
.site-header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1.35rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 1rem;
  font-weight: 750;
  letter-spacing: -0.035em;
  text-decoration: none;
}
.brand img {
  width: 2.8rem;
  height: 2.8rem;
  object-fit: contain;
  margin: -0.55rem -0.7rem -0.55rem -0.5rem;
}
.site-header .brand img { margin-right: -0.35rem; }
.brand strong { font-weight: 750; }
.header-nav { display: flex; align-items: center; gap: 1.25rem; }
.header-link { font-size: 0.9rem; font-weight: 700; text-decoration: none; }
.header-link:hover { text-decoration: underline; text-underline-offset: 0.3em; }
.hero-content {
  position: relative;
  z-index: 1;
  padding-block: clamp(3.5rem, 6vw, 5.5rem) 4rem;
  text-align: center;
}
.eyebrow {
  margin: 0 0 1rem;
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.hero .eyebrow { color: #a9c7ff; }
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 830px;
  margin: 0 auto 1.2rem;
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  letter-spacing: -0.065em;
  line-height: 0.98;
}
h1 em { color: #90d9ff; font-family: Georgia, "Times New Roman", serif; font-weight: 400; }
.hero-intro {
  max-width: 630px;
  margin: 0 auto 2rem;
  color: #d9e6ff;
  font-size: clamp(1.04rem, 2vw, 1.2rem);
  line-height: 1.65;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 3rem;
  padding: 0.75rem 1.2rem;
  border: 1px solid transparent;
  border-radius: 0.45rem;
  font-size: 0.94rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--navy-deep); background: var(--white); box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18); }
.button-secondary { width: 100%; color: var(--navy); border-color: #cbd6ea; background: var(--white); }
.button-featured { width: 100%; color: var(--white); background: var(--blue); }
.button-dark { color: var(--white); background: var(--navy); }
.button-light { color: var(--navy); background: var(--white); }

.trust-strip { border-bottom: 1px solid var(--line); background: var(--white); }
.trust-items {
  display: flex;
  justify-content: center;
  gap: clamp(1rem, 5vw, 4.2rem);
  padding-block: 1.05rem;
  color: #42516f;
  font-size: 0.88rem;
  font-weight: 700;
}
.trust-items p { display: flex; align-items: center; gap: 0.45rem; margin: 0; }
.check { color: #39a63b; font-size: 1.1rem; }
.section { padding-block: clamp(4.6rem, 9vw, 7.2rem); }
.section-heading { max-width: 650px; margin: 0 auto 3.2rem; text-align: center; }
h2 {
  margin-bottom: 0.8rem;
  color: var(--navy);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  letter-spacing: -0.055em;
  line-height: 1.04;
}
.section-heading > p:last-child { margin: 0; color: var(--muted); line-height: 1.6; }

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 1.25rem;
}
.package-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.75rem;
  border: 1px solid var(--line);
  border-radius: 0.85rem;
  background: var(--white);
}
.package-featured { border: 2px solid var(--blue); box-shadow: var(--shadow); transform: translateY(-0.65rem); }
.most-popular {
  position: absolute;
  top: -0.82rem;
  left: 50%;
  margin: 0;
  padding: 0.35rem 0.75rem;
  border-radius: 10rem;
  color: var(--white);
  background: var(--blue);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.075em;
  text-transform: uppercase;
  transform: translateX(-50%);
  white-space: nowrap;
}
.package-topline { display: flex; align-items: center; justify-content: space-between; margin-bottom: 2rem; }
.package-number { margin: 0; color: #a4adc0; font-size: 0.75rem; font-weight: 800; letter-spacing: 0.12em; }
.package-icon { display: inline-flex; color: #7484a1; }
.package-icon svg { width: 1.25rem; height: 1.25rem; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; }
.package-featured .package-icon { color: var(--blue); }
.package-card h3 { margin-bottom: 0.55rem; color: var(--navy); font-size: 1.8rem; letter-spacing: -0.05em; }
.package-summary { min-height: 4.5rem; margin-bottom: 1.55rem; color: var(--muted); font-size: 0.94rem; line-height: 1.55; }
.price { margin-bottom: 0.1rem; color: var(--navy); font-size: 3.25rem; font-weight: 850; letter-spacing: -0.075em; line-height: 1; }
.price span { position: relative; top: -0.82rem; font-size: 1.25rem; letter-spacing: -0.02em; }
.price-from { font-size: 2.75rem; }
.price-from span { top: auto; margin-right: 0.18rem; font-size: 1.05rem; letter-spacing: -0.03em; }
.price-note { margin-bottom: 1.55rem; color: #8791a7; font-size: 0.78rem; }
.feature-list { display: grid; gap: 0.8rem; margin: 0 0 2rem; padding: 0; list-style: none; color: #46536e; font-size: 0.88rem; line-height: 1.35; }
.feature-list li { position: relative; padding-left: 1.35rem; }
.feature-list li::before { content: "✓"; position: absolute; left: 0; color: #3fae45; font-weight: 900; }
.package-card .button { margin-top: auto; }
.revisions-note { max-width: 780px; margin: 2.8rem auto 0; color: #66718a; font-size: 0.87rem; line-height: 1.6; text-align: center; }
.revisions-note p { margin: 0; }
.revisions-note p + p { margin-top: 0.7rem; color: #8490a5; font-size: 0.78rem; }

.portfolio { background: #eaf1ff; }
.portfolio-heading { margin-bottom: 3.4rem; }
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.portfolio-card {
  display: flex;
  flex-direction: column;
  min-height: 25rem;
  overflow: hidden;
  border: 1px solid rgba(20, 47, 103, 0.14);
  border-radius: 0.9rem;
  color: #e8f0ff;
  background: var(--navy);
  box-shadow: 0 18px 40px rgba(18, 34, 74, 0.12);
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}
.portfolio-card:hover { box-shadow: 0 23px 44px rgba(18, 34, 74, 0.2); transform: translateY(-0.25rem); }
.portfolio-card-rendervine { background: linear-gradient(145deg, #17264d, #1a5583); }
.portfolio-card-coach { color: var(--navy); background: #ffffff; }
.portfolio-preview {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-bottom: 1px solid rgba(224, 236, 255, 0.18);
  background: #0b1632;
}
.portfolio-preview img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.portfolio-card-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.55rem 1.6rem 1.6rem;
}
.portfolio-signature {
  margin-bottom: 0.7rem;
  color: #92b8ff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.portfolio-card-coach .portfolio-signature { color: #5581d8; }
.portfolio-card h3 { margin-bottom: 0.7rem; color: var(--white); font-size: 2rem; letter-spacing: -0.055em; }
.portfolio-card-coach h3 { color: var(--navy); }
.portfolio-description { margin-bottom: 2rem; color: #c8d7f5; font-size: 0.94rem; line-height: 1.62; }
.portfolio-card-coach .portfolio-description { color: #66718a; }
.portfolio-link { margin-top: auto; padding-top: 1rem; border-top: 1px solid rgba(224, 236, 255, 0.18); color: #9fc0ff; font-size: 0.82rem; font-weight: 800; }
.portfolio-card-coach .portfolio-link { border-color: var(--line); color: var(--blue); }
.how-it-works { color: var(--white); background: var(--navy); }
.how-it-works h2 { max-width: 420px; color: var(--white); }
.how-it-works .eyebrow { color: #8eb7ff; }
.static-layout { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(2rem, 8vw, 8rem); align-items: start; }
.static-copy > p { margin-bottom: 2rem; color: #c8d4f0; font-size: 1.08rem; line-height: 1.7; }
.mini-points { display: grid; gap: 1.1rem; }
.mini-points p { display: grid; grid-template-columns: 10rem 1fr; gap: 1rem; margin: 0; padding-top: 1.1rem; border-top: 1px solid rgba(255, 255, 255, 0.17); }
.mini-points strong { color: var(--white); font-size: 0.9rem; }
.mini-points span { color: #aebedd; font-size: 0.88rem; line-height: 1.45; }

.site-care { padding-bottom: clamp(4.2rem, 8vw, 6rem); }
.care-panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(1.5rem, 5vw, 5.5rem);
  align-items: center;
  padding: clamp(2rem, 6vw, 4.5rem);
  border-radius: 1rem;
  background: #dceafe;
}
.care-copy > p:not(.eyebrow) { max-width: 500px; margin-bottom: 1.8rem; color: #536584; line-height: 1.65; }
.care-card { padding: 1.8rem; border-radius: 0.75rem; color: var(--white); background: var(--navy); box-shadow: 0 17px 35px rgba(12, 32, 81, 0.2); }
.care-label { margin-bottom: 0.6rem; color: #b8cbf7; font-size: 0.78rem; font-weight: 800; letter-spacing: 0.11em; text-transform: uppercase; }
.care-price { margin-bottom: 1.5rem; font-size: 3rem; font-weight: 850; letter-spacing: -0.07em; line-height: 1; }
.care-price span { position: relative; top: -0.7rem; font-size: 1.15rem; }
.care-price small { margin-left: 0.3rem; color: #b8cbf7; font-size: 0.9rem; font-weight: 600; letter-spacing: 0; }
.feature-list-dark { margin-bottom: 0; color: #dce6fd; }
.feature-list-dark li::before { color: #82db69; }
.fine-print { max-width: 865px; margin: 1.15rem auto 0; color: #7a8599; font-size: 0.76rem; line-height: 1.55; text-align: center; }

.next-steps { padding-block: clamp(4.6rem, 8vw, 7rem); color: var(--white); background: linear-gradient(110deg, #2164df, #345fe0); text-align: center; }
.next-steps .eyebrow { color: #b7d9ff; }
.next-steps h2 { color: var(--white); }
.next-steps p:not(.eyebrow) { max-width: 560px; margin: 0 auto 1.8rem; color: #e2edff; line-height: 1.65; }

.modal-open { overflow: hidden; }
.inquiry-modal[hidden], .inquiry-form[hidden], .inquiry-success[hidden] { display: none; }
.inquiry-modal { position: fixed; z-index: 10; inset: 0; display: grid; place-items: center; padding: 1.25rem; }
.inquiry-backdrop { position: absolute; inset: 0; background: rgba(4, 15, 43, 0.68); backdrop-filter: blur(5px); }
.inquiry-dialog {
  position: relative;
  width: min(100%, 42rem);
  max-height: min(46rem, calc(100vh - 2.5rem));
  overflow: auto;
  padding: clamp(1.75rem, 5vw, 2.8rem);
  border-radius: 1rem;
  background: var(--white);
  box-shadow: 0 28px 70px rgba(4, 15, 43, 0.32);
}
.inquiry-dialog .eyebrow { margin-bottom: 0.7rem; }
.inquiry-dialog h2 { max-width: 480px; margin-bottom: 0.7rem; font-size: clamp(2rem, 5vw, 2.8rem); }
.inquiry-intro { max-width: 480px; margin-bottom: 1.8rem; color: var(--muted); line-height: 1.6; }
.inquiry-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--navy);
  background: var(--white);
  font-size: 1.65rem;
  line-height: 1;
  place-items: center;
  cursor: pointer;
}
.inquiry-close:hover { border-color: #aebbd2; background: #f3f6fc; }
.inquiry-form { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.form-field { display: grid; gap: 0.45rem; }
.form-field-wide, .form-actions { grid-column: 1 / -1; }
.form-field label { color: #334260; font-size: 0.83rem; font-weight: 800; }
.form-field label span { color: #8a95aa; font-weight: 600; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  min-height: 3rem;
  padding: 0.72rem 0.82rem;
  border: 1px solid #cbd6ea;
  border-radius: 0.45rem;
  color: var(--navy);
  background: var(--white);
  font: inherit;
}
.form-field textarea { min-height: 7rem; resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus, .inquiry-close:focus-visible { outline: 3px solid rgba(27, 98, 231, 0.28); outline-offset: 2px; border-color: var(--blue); }
.form-trap { position: absolute; left: -10000px; width: 1px; height: 1px; opacity: 0; }
.form-actions { margin-top: 0.35rem; }
.form-actions .button { width: 100%; }
.form-actions .button:disabled { cursor: wait; opacity: 0.68; }
.form-status { min-height: 1.3rem; margin: 0.7rem 0 0; color: #61708a; font-size: 0.8rem; line-height: 1.45; text-align: center; }
.form-disclosure { margin: 0.55rem 0 0; color: #7a8599; font-size: 0.72rem; line-height: 1.5; text-align: center; }
.form-disclosure a { color: inherit; text-underline-offset: 0.22em; }
.inquiry-success { padding: 1.5rem 0 0; }
.inquiry-success p:not(.eyebrow) { max-width: 430px; margin-bottom: 1.5rem; color: var(--muted); line-height: 1.6; }
.policy-page { min-height: calc(100vh - 5rem); }
.policy-header { display: flex; align-items: center; justify-content: space-between; padding-block: 1.35rem; color: var(--navy); }
.policy-brand img { margin-right: -0.35rem; }
.policy-content { width: min(760px, calc(100% - 3rem)); padding-block: clamp(3.5rem, 8vw, 6.5rem); }
.policy-content h1 { max-width: 720px; margin: 0 0 1rem; color: var(--navy); font-size: clamp(2.8rem, 6vw, 4.6rem); }
.policy-content h2 { margin: 2.1rem 0 0.55rem; color: var(--navy); font-size: 1rem; font-weight: 800; line-height: 1.45; }
.policy-content > p { max-width: 700px; color: #4c5a74; line-height: 1.72; }
.policy-content a { color: var(--blue); }
.policy-updated { margin-bottom: 2rem; color: #8490a5 !important; font-size: 0.8rem; font-weight: 700; }
.site-footer { display: flex; align-items: center; justify-content: space-between; padding-block: 1.8rem; color: #69748b; font-size: 0.8rem; }
.site-footer p { margin: 0; }
.footer-brand { color: var(--navy); font-size: 0.9rem; }
.footer-brand img { width: 2.3rem; height: 2.3rem; margin-right: -0.35rem; }
.footer-meta { display: flex; flex-wrap: wrap; align-items: center; justify-content: flex-end; gap: 1.15rem; }
.footer-link { color: var(--blue); font-weight: 750; text-decoration: none; }
.footer-link:hover { text-decoration: underline; text-underline-offset: 0.3em; }

@media (max-width: 820px) {
  .package-grid { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }
  .portfolio-grid { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }
  .package-featured { transform: none; }
  .static-layout, .care-panel { grid-template-columns: 1fr; }
  .care-panel { gap: 2.5rem; }
  .package-summary { min-height: auto; }
}
@media (max-width: 560px) {
  .container { width: min(100% - 2rem, 1120px); }
  .hero { min-height: 490px; }
  .hero-content { padding-top: 4.1rem; }
  .header-nav { gap: 0.7rem; }
  .header-link { font-size: 0.8rem; }
  .trust-items { align-items: flex-start; flex-direction: column; gap: 0.6rem; }
  .mini-points p { grid-template-columns: 1fr; gap: 0.3rem; }
  .inquiry-modal { align-items: end; padding: 0; }
  .inquiry-dialog { width: 100%; max-height: calc(100vh - 1rem); border-radius: 1rem 1rem 0 0; }
  .inquiry-form { grid-template-columns: 1fr; }
  .form-field, .form-field-wide, .form-actions { grid-column: auto; }
  .policy-content { width: min(100% - 2rem, 760px); }
  .site-footer { align-items: flex-start; flex-direction: column; gap: 1rem; }
  .footer-meta { align-items: flex-start; flex-direction: column; gap: 0.55rem; }
}
@media (max-width: 420px) {
  .site-header { align-items: flex-start; flex-direction: column; gap: 0.45rem; }
  .header-nav { width: 100%; justify-content: space-between; }
  .policy-header { align-items: flex-start; flex-direction: column; gap: 0.45rem; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .button { transition: none; }
}
