:root {
  --font-family: "Inter", sans-serif;
  --font-size-base: 18.7px;
  --line-height-base: 1.71;

  --max-w: 1340px;
  --space-x: 1.37rem;
  --space-y: 1.5rem;
  --gap: 1.39rem;
  --space-section-y: calc(var(--space-y) * 2.4);
  --space-section-x: var(--space-x);
  --space-block: calc(var(--gap) * 1.5);
  --space-card: calc(var(--space-y) * .75);
  --font-size-sm: calc(var(--font-size-base) * .875);
  --font-size-md: var(--font-size-base);
  --font-size-lg: calc(var(--font-size-base) * 1.125);
  --font-size-h3: calc(var(--font-size-base) * 1.35);
  --font-size-h2: calc(var(--font-size-base) * 2);
  --font-size-h1: calc(var(--font-size-base) * 2.65);
  --motion-distance: calc(var(--gap) * var(--random-number));

  --radius-xl: 1.07rem;
  --radius-lg: 0.74rem;
  --radius-md: 0.53rem;
  --radius-sm: 0.33rem;

  --shadow-sm: 0 1px 5px rgba(0,0,0,0.15);
  --shadow-md: 0 6px 18px rgba(0,0,0,0.2);
  --shadow-lg: 0 20px 44px rgba(0,0,0,0.24);

  --overlay: rgba(10, 12, 18, 0.7);
  --anim-duration: 320ms;
  --anim-ease: cubic-bezier(0.4,0,0.2,1);
  --random-number: 1;

  --brand: #4FC3F7;
  --brand-contrast: #0A0C12;
  --accent: #81D4FA;
  --accent-contrast: #0A0C12;

  --neutral-0: #0A0C12;
  --neutral-100: #12161F;
  --neutral-300: #2A3441;
  --neutral-600: #8A94A6;
  --neutral-800: #C0C7D1;
  --neutral-900: #E8ECF1;

  --page-bg: #0A0C12;
  --page-fg: #E8ECF1;
  --muted-bg: #12161F;
  --muted-fg: #C0C7D1;
  --card-bg: #1A202C;
  --card-fg: #E8ECF1;
  --card-border: #2A3441;
  --inverse-bg: #E8ECF1;
  --inverse-fg: #0A0C12;
  --primary-bg: #4FC3F7;
  --primary-fg: #0A0C12;
  --primary-hover: #81D4FA;
  --accent-bg: #81D4FA;
  --accent-fg: #0A0C12;
  --accent-hover: #B3E5FC;
  --gradient-hero-bg: linear-gradient(135deg, #0A0C12 0%, #1A202C 50%, #0A0C12 100%);
  --gradient-hero-fg: #E8ECF1;
  --gradient-accent-bg: linear-gradient(135deg, #4FC3F7 0%, #81D4FA 100%);
  --gradient-accent-fg: #0A0C12;

  --ring: #4FC3F7;

  --link: #4FC3F7;
  --link-hover: #81D4FA;

  --btn-ghost-bg: transparent;
  --btn-ghost-bg-hover: color-mix(in srgb, currentColor 10%, transparent);
  --input-placeholder: rgba(255,255,255,0.55);
}
body{margin:0;padding:0;font-family:var(--font-family);box-sizing: border-box;}
*{box-sizing:border-box;}
a{color:inherit;}
.btn-primary,.btn.btn-primary{background:var(--primary-bg)!important;color:var(--primary-fg)!important;border-color:var(--primary-bg)!important;}
.btn-primary:hover,.btn.btn-primary:hover{background:var(--primary-hover)!important;color:var(--primary-fg)!important;border-color:var(--primary-hover)!important;}
.btn-outline-primary{color:var(--primary-bg)!important;border-color:var(--primary-bg)!important;}
.btn-outline-primary:hover{background:var(--primary-bg)!important;color:var(--primary-fg)!important;}
.bg-primary{background:var(--primary-bg)!important;color:var(--primary-fg)!important;}
.text-primary{color:var(--primary-bg)!important;}
.border-primary{border-color:var(--primary-bg)!important;}
.bg-light{background:var(--page-bg)!important;color:var(--page-fg)!important;}
.bg-dark{background:var(--inverse-bg)!important;color:var(--inverse-fg)!important;}

.site-header {
    width: 100%;
    background-color: var(--inverse-bg);
    color: var(--inverse-fg);
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .utility-bar {
    width: 100%;
    background-color: rgba(0,0,0,0.2);
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .utility-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0.35rem var(--space-x);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--gap);
    font-size: var(--font-size-sm);
    opacity: 0.85;
  }

  .utility-text {
    color: var(--inverse-fg);
  }

  .utility-phone {
    color: var(--inverse-fg);
    white-space: nowrap;
  }

  .header-main {
    width: 100%;
    background-color: var(--inverse-bg);
  }

  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0.75rem var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
    min-height: 3.5rem;
  }

  .logo {
    font-size: var(--font-size-h3);
    font-weight: 700;
    color: var(--inverse-fg);
    text-decoration: none;
    letter-spacing: -0.02em;
    white-space: nowrap;
    line-height: 1.2;
  }

  .logo:hover {
    color: var(--accent-fg);
  }

  .nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0.5rem;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-sm);
    cursor: pointer;
    gap: 4px;
    transition: border-color var(--anim-duration) var(--anim-ease);
  }

  .nav-toggle:hover {
    border-color: rgba(255,255,255,0.4);
  }

  .nav-toggle-bar {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--inverse-fg);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }

  .nav-toggle.is-active .nav-toggle-bar:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .nav-toggle.is-active .nav-toggle-bar:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.is-active .nav-toggle-bar:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .site-nav {
    display: flex;
    align-items: center;
  }

  .nav-list {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.25rem;
  }

  .nav-item {
    margin: 0;
    padding: 0;
  }

  .nav-link {
    display: block;
    padding: 0.5rem 0.85rem;
    color: var(--inverse-fg);
    text-decoration: none;
    font-size: var(--font-size-md);
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

  .nav-link:hover {
    background-color: rgba(255,255,255,0.1);
    color: var(--accent-fg);
  }

  @media (max-width: 767px) {
    .utility-inner {
      padding: 0.3rem var(--space-x);
      font-size: 0.75rem;
    }

    .header-inner {
      padding: 0.5rem var(--space-x);
      min-height: 3rem;
    }

    .logo {
      font-size: var(--font-size-md);
    }

    .nav-toggle {
      display: flex;
    }

    .site-nav {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background-color: var(--inverse-bg);
      border-top: 1px solid rgba(255,255,255,0.1);
      box-shadow: var(--shadow-md);
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration) var(--anim-ease);
    }

    .site-nav.is-open {
      max-height: 400px;
      overflow-y: auto;
    }

    .nav-list {
      flex-direction: column;
      align-items: stretch;
      padding: 0.5rem 0;
      gap: 0;
    }

    .nav-link {
      padding: 0.75rem var(--space-x);
      border-radius: 0;
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }

    .nav-link:hover {
      background-color: rgba(255,255,255,0.08);
    }
  }

.site-footer{padding:var(--space-section-y) var(--space-section-x);font-family:var(--font-family);font-size:var(--font-size-base);line-height:var(--line-height-base);background:var(--inverse-bg);color:var(--inverse-fg);}.footer-container{max-width:var(--max-w);margin:0 auto}.footer-top{display:grid;grid-template-columns:1fr 2fr;gap:var(--space-block);margin-bottom:var(--space-block)}.footer-brand{display:flex;flex-direction:column;gap:var(--space-y)}.footer-logo{font-size:var(--font-size-h2);font-weight:700;color:inherit;text-decoration:none;display:inline-block;transition:opacity var(--anim-duration) var(--anim-ease)}.footer-logo:hover{opacity:0.85}.footer-tagline{font-size:var(--font-size-sm);opacity:0.8;margin:0;max-width:28rem}.footer-columns{display:grid;grid-template-columns:repeat(3, 1fr);gap:var(--gap)}.footer-col{display:flex;flex-direction:column;gap:var(--space-y)}.footer-heading{font-size:var(--font-size-md);font-weight:600;margin:0;padding-bottom:var(--space-y);border-bottom:1px solid rgba(255, 255, 255, 0.15)}.footer-links{list-style:none;padding:0;margin:0;display:flex;flex-direction:column;gap:calc(var(--space-y) * 0.5)}.footer-links a{color:inherit;text-decoration:none;font-size:var(--font-size-sm);transition:opacity var(--anim-duration) var(--anim-ease);display:inline-block}.footer-links a:hover{opacity:0.75;text-decoration:underline;text-underline-offset:3px;color:inherit}.footer-col-contact{min-width:0}.footer-contact{display:flex;flex-direction:column;gap:var(--space-y)}.contact-item{display:flex;flex-direction:column;gap:0.25rem}.contact-label{font-size:var(--font-size-sm);font-weight:600;opacity:0.7;text-transform:uppercase;letter-spacing:0.05em}.contact-value{font-size:var(--font-size-sm);color:inherit;text-decoration:none;word-break:break-word;transition:opacity var(--anim-duration) var(--anim-ease)}a.contact-value:hover{opacity:0.75;text-decoration:underline;text-underline-offset:3px;color:inherit}.footer-bottom{border-top:1px solid rgba(255, 255, 255, 0.15);padding-top:var(--space-block);display:flex;flex-direction:column;gap:var(--space-y)}.footer-legal{display:flex;flex-wrap:wrap;gap:var(--space-x);align-items:center}.footer-legal a{color:inherit;text-decoration:none;font-size:var(--font-size-sm);transition:opacity var(--anim-duration) var(--anim-ease)}.footer-legal a:hover{opacity:0.75;text-decoration:underline;text-underline-offset:3px;color:inherit}.legal-separator{opacity:0.5}.footer-copyright{font-size:var(--font-size-sm);margin:0;opacity:0.8}.footer-disclaimer{font-size:var(--font-size-sm);margin:0;opacity:0.7;max-width:80ch;line-height:var(--line-height-base)}

  @media (max-width: 1024px) {.footer-top{grid-template-columns:1fr;gap:var(--space-block)}.footer-columns{grid-template-columns:repeat(2, 1fr)}
  }

  @media (max-width: 640px) {.footer-columns{grid-template-columns:1fr;gap:var(--space-block)}.footer-col{gap:var(--space-y)}
  }

.cookies {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--card-bg);
  color: var(--card-fg);
  border-bottom: 1px solid var(--card-border);
  box-shadow: var(--shadow-sm);
  font-family: var(--font-family);
  font-size: var(--font-size-sm);
  line-height: var(--line-height-base);
}

.cookies .notice {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap);
  padding: var(--space-y) var(--space-section-x);
  max-width: var(--max-w);
  margin: 0 auto;
  flex-wrap: wrap;
}

.cookies .copy {
  display: flex;
  align-items: baseline;
  gap: var(--space-x);
  flex: 1 1 auto;
  min-width: 200px;
}

.cookies .title {
  font-size: var(--font-size-md);
  font-weight: 600;
  white-space: nowrap;
}

.cookies p {
  margin: 0;
}

.cookies .actions {
  display: flex;
  align-items: center;
  gap: var(--space-x);
  flex-shrink: 0;
}

.cookies .choice {
  background: var(--primary-bg);
  color: var(--primary-fg);
  border: none;
  border-radius: var(--radius-sm);
  padding: 0.5rem 1rem;
  font-size: var(--font-size-sm);
  font-family: inherit;
  cursor: pointer;
  transition: background var(--anim-duration) var(--anim-ease);
}

.cookies .choice:hover {
  background: var(--primary-hover);
}

.cookies .choice.cookie-reject {
  background: transparent;
  color: var(--card-fg);
  border: 1px solid var(--card-border);
}

.cookies .choice.cookie-reject:hover {
  background: var(--muted-bg);
}

.cookies .link {
  background: none;
  border: none;
  color: var(--link);
  font-size: var(--font-size-sm);
  font-family: inherit;
  cursor: pointer;
  text-decoration: underline;
  padding: 0.5rem;
}

.cookies .link:hover {
  color: var(--link-hover);
}

@media (max-width: 640px) {
  .cookies .notice {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-y);
  }
  
  .cookies .actions {
    width: 100%;
    justify-content: flex-end;
  }
}

.intro-focus {
    background: var(--gradient-hero-bg);
    color: var(--gradient-hero-fg);
    padding: 72px 24px;
  }

  .intro-focus .inner {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 48px;
  }

  .intro-focus .lead {
    flex: 1 1 62%;
  }

  .intro-focus h1 {
    font-size: 2.4rem;
    line-height: 1.2;
    font-weight: 650;
    margin: 0 0 20px;
    max-width: 640px;
    letter-spacing: -0.01em;
  }

  .intro-focus .subtitle {
    font-size: 1.05rem;
    line-height: 1.65;
    max-width: 580px;
    margin: 0 0 28px;
    color: #C0C7D1;
  }

  .intro-focus .route {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
  }

  .intro-focus .route-link {
    color: #4FC3F7;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 550;
    border-bottom: 1px solid rgba(79, 195, 247, 0.35);
    padding-bottom: 3px;
    transition: border-color 0.2s ease, color 0.2s ease;
  }

  .intro-focus .route-link:hover {
    color: #81D4FA;
    border-color: #81D4FA;
  }

  .intro-focus .note {
    flex: 0 1 30%;
    border-left: 1px solid #2A3441;
    padding-left: 28px;
    margin-top: 8px;
  }

  .intro-focus .note p {
    font-size: 0.92rem;
    line-height: 1.6;
    margin: 0;
    color: #C0C7D1;
  }

  @media (max-width: 860px) {
    .intro-focus .inner {
      flex-direction: column;
      gap: 32px;
    }

    .intro-focus .note {
      border-left: none;
      border-top: 1px solid #2A3441;
      padding-left: 0;
      padding-top: 20px;
    }

    .intro-focus h1 {
      font-size: 1.9rem;
    }
  }

.intro-focus {
  background: var(--page-bg);
  color: var(--page-fg);
}

.next-step {
    background: linear-gradient(135deg, #0A0C12 0%, #1A202C 50%, #0A0C12 100%);
    color: #E8ECF1;
    padding: 72px 24px;
  }

  .next-step .inner {
    max-width: 820px;
    margin: 0 auto;
  }

  .next-step h2 {
    font-size: 1.75rem;
    line-height: 1.3;
    font-weight: 600;
    margin: 0 0 20px;
    letter-spacing: -0.01em;
  }

  .next-step p {
    font-size: 1rem;
    line-height: 1.7;
    color: #C0C7D1;
    margin: 0 0 16px;
  }

  .next-step p:last-of-type {
    margin-bottom: 32px;
  }

  .next-step .route {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
  }

  .next-step .action {
    display: inline-block;
    background: #4FC3F7;
    color: #0A0C12;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: background 0.2s ease;
  }

  .next-step .action:hover {
    background: #81D4FA;
  }

  .next-step .read {
    color: #81D4FA;
    font-size: 0.95rem;
    text-decoration: none;
    border-bottom: 1px solid rgba(129, 212, 250, 0.4);
    padding-bottom: 2px;
    transition: border-color 0.2s ease;
  }

  .next-step .read:hover {
    border-color: #81D4FA;
  }

.next-step {
  background: var(--inverse-bg);
  color: var(--inverse-fg);
}

.capabilities {
    background: var(--page-bg);
    color: var(--page-fg);
    padding: 4rem 1.5rem;
  }

  .capabilities .inner {
    max-width: 720px;
    margin: 0 auto;
  }

  .capabilities h2 {
    font-size: 1.75rem;
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 1.5rem;
    letter-spacing: -0.01em;
  }

  .capabilities p {
    font-size: 1rem;
    line-height: 1.7;
    margin: 0 0 1.25rem;
    color: var(--muted-fg);
  }

  .capabilities p:last-of-type {
    margin-bottom: 2rem;
  }

  .capabilities .route {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem 2rem;
    border-top: 1px solid var(--card-border);
    padding-top: 1.5rem;
  }

  .capabilities .route a {
    color: var(--primary-bg);
    text-decoration: none;
    font-size: 0.95rem;
    line-height: 1.5;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
  }

  .capabilities .route a:hover {
    border-bottom-color: var(--primary-bg);
  }

.capabilities {
  background: var(--page-bg);
  color: var(--page-fg);
}

.faq {
    background: var(--page-bg);
    color: var(--page-fg);
    padding: 4rem 1.5rem;
  }

  .faq .inner {
    max-width: 760px;
    margin: 0 auto;
  }

  .faq h2 {
    font-size: 1.75rem;
    font-weight: 600;
    line-height: 1.25;
    margin: 0 0 1rem;
  }

  .faq .lead {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 0 2.5rem;
    max-width: 640px;
  }

  .faq .entry {
    border-top: 1px solid var(--card-border);
    padding: 1.5rem 0;
  }

  .faq .entry h3 {
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.4;
    margin: 0 0 0.6rem;
  }

  .faq .entry p {
    font-size: 0.95rem;
    line-height: 1.65;
    margin: 0;
    max-width: 660px;
  }

  .faq .closing {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 2rem 0 0;
    padding-top: 1.5rem;
    border-top: 1px solid var(--card-border);
  }

  .faq .closing a {
    color: var(--primary-bg);
    text-decoration: none;
  }

  .faq .closing a:hover {
    text-decoration: underline;
  }

.faq {
  background: var(--inverse-bg);
  color: var(--inverse-fg);
}

.people-behind {
    background: var(--page-bg);
    color: var(--page-fg);
    padding: 4.5rem 1.5rem;
  }

  .people-behind .inner {
    max-width: 960px;
    margin: 0 auto;
  }

  .people-behind h2 {
    font-size: 1.9rem;
    font-weight: 600;
    line-height: 1.25;
    margin: 0 0 1rem;
  }

  .people-behind .lead {
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0 0 2.8rem;
    max-width: 720px;
  }

  .people-behind .members {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.8rem;
  }

  .people-behind .member {
    background: var(--card-bg);
    color: var(--card-fg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 1.5rem;
  }

  .people-behind .member h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin: 0 0 0.35rem;
  }

  .people-behind .role {
    font-size: 0.85rem;
    color: var(--muted-fg);
    margin: 0 0 1rem;
    line-height: 1.4;
  }

  .people-behind .member p:last-child {
    font-size: 0.95rem;
    line-height: 1.65;
    margin: 0;
  }

  .people-behind .note {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--muted-fg);
    border-top: 1px solid var(--card-border);
    padding-top: 1.5rem;
    margin: 0;
    max-width: 720px;
  }

  @media (max-width: 800px) {
    .people-behind .members {
      grid-template-columns: 1fr;
    }
  }

.people-behind {
  background: var(--page-bg);
  color: var(--page-fg);
}

.our-story {
    background: var(--page-bg);
    color: var(--page-fg);
    padding: 72px 24px;
  }

  .our-story .inner {
    max-width: 960px;
    margin: 0 auto;
  }

  .our-story h2 {
    font-size: 30px;
    font-weight: 600;
    line-height: 1.25;
    margin: 0 0 20px 0;
    letter-spacing: -0.01em;
  }

  .our-story p {
    font-size: 16px;
    line-height: 1.7;
    margin: 0 0 16px 0;
    max-width: 780px;
  }

  .our-story .milestones {
    margin-top: 48px;
    display: block;
  }

  .our-story .milestone {
    padding: 20px 0 24px 0;
    border-top: 1px solid var(--card-border, #2A3441);
  }

  .our-story .milestone:last-child {
    border-bottom: 1px solid var(--card-border, #2A3441);
  }

  .our-story .milestone h3 {
    font-size: 14px;
    font-weight: 600;
    color: var(--brand-primary-bg, #4FC3F7);
    margin: 0 0 8px 0;
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }

  .our-story .milestone p {
    font-size: 15px;
    line-height: 1.65;
    margin: 0;
    max-width: 720px;
  }

  @media (min-width: 768px) {
    .our-story {
      padding: 96px 32px;
    }

    .our-story h2 {
      font-size: 36px;
      max-width: 720px;
    }

    .our-story p {
      font-size: 17px;
    }

    .our-story .milestone {
      padding: 24px 0 28px 0;
    }
  }

.our-story {
  background: var(--inverse-bg);
  color: var(--inverse-fg);
}

.identity {
    background: var(--gradient-hero-bg);
    color: var(--gradient-hero-fg);
    padding: 4rem 1.5rem;
  }

  .identity .inner {
    max-width: 46rem;
    margin: 0 auto;
  }

  .identity h1 {
    font-size: 2.2rem;
    font-weight: 600;
    line-height: 1.2;
    margin: 0 0 1.5rem;
    letter-spacing: -0.01em;
  }

  .identity .lead {
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0 0 1.25rem;
  }

  .identity p {
    font-size: 1rem;
    line-height: 1.7;
    margin: 0 0 1.25rem;
    color: var(--gradient-hero-fg);
  }

  .identity .notes {
    list-style: none;
    margin: 2rem 0 0;
    padding: 0;
    border-top: 1px solid rgba(232, 236, 241, 0.2);
  }

  .identity .notes li {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 1.25rem 0 0;
  }

  .identity .note-meta {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--brand-primary-bg);
  }

  .identity .note-text {
    font-size: 1rem;
    line-height: 1.6;
  }

.identity {
  background: var(--page-bg);
  color: var(--page-fg);
}

.timeline {
    background: var(--inverse-bg);
    color: var(--inverse-fg);
    padding: 4rem 1.5rem;
  }

  .timeline .inner {
    max-width: 860px;
    margin: 0 auto;
  }

  .timeline h2 {
    font-size: 1.9rem;
    font-weight: 600;
    line-height: 1.25;
    margin: 0 0 1rem 0;
    letter-spacing: -0.02em;
  }

  .timeline .lead {
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0 0 2.5rem 0;
    max-width: 640px;
  }

  .timeline .entries {
    list-style: none;
    margin: 0;
    padding: 0;
    border-left: 1px solid var(--card-border);
    margin-left: 0.5rem;
  }

  .timeline .entry {
    position: relative;
    padding: 0 0 2.25rem 1.75rem;
  }

  .timeline .entry:last-child {
    padding-bottom: 0.25rem;
  }

  .timeline .entry::before {
    content: "";
    position: absolute;
    left: -5px;
    top: 6px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--primary-bg);
  }

  .timeline time {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--primary-bg);
    margin-bottom: 0.35rem;
  }

  .timeline h3 {
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.35;
    margin: 0 0 0.5rem 0;
  }

  .timeline .entry p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    max-width: 620px;
  }

.timeline {
  background: var(--inverse-bg);
  color: var(--inverse-fg);
}

.clarifications {
      background: var(--gradient-hero-bg);
      color: var(--gradient-hero-fg);
      padding: 3.2rem 1.5rem 3.8rem;
    }

    .clarifications .inner {
      max-width: 860px;
      margin: 0 auto;
    }

    .clarifications h2 {
      font-size: 1.65rem;
      font-weight: 600;
      line-height: 1.25;
      margin: 0 0 0.75rem 0;
      letter-spacing: -0.01em;
    }

    .clarifications .lead {
      font-size: 1rem;
      line-height: 1.6;
      margin: 0 0 2.2rem 0;
      max-width: 640px;
      color: var(--gradient-hero-fg);
      opacity: 0.9;
    }

    .clarifications .notes-list {
      border-top: 1px solid rgba(232, 236, 241, 0.18);
      margin: 0 0 1.8rem 0;
    }

    .clarifications .note {
      padding: 1.25rem 0 1.35rem 0;
      border-bottom: 1px solid rgba(232, 236, 241, 0.14);
    }

    .clarifications .note h3 {
      font-size: 1rem;
      font-weight: 600;
      line-height: 1.4;
      margin: 0 0 0.4rem 0;
      color: var(--gradient-hero-fg);
    }

    .clarifications .note p {
      font-size: 0.92rem;
      line-height: 1.6;
      margin: 0;
      color: var(--gradient-hero-fg);
      opacity: 0.82;
      max-width: 720px;
    }

    .clarifications .footnote {
      font-size: 0.85rem;
      line-height: 1.5;
      margin: 0.5rem 0 0 0;
      color: var(--gradient-hero-fg);
      opacity: 0.7;
      border-left: 2px solid rgba(79, 195, 247, 0.7);
      padding-left: 1rem;
    }

    @media (max-width: 600px) {
      .clarifications {
        padding: 2.4rem 1.2rem 2.8rem;
      }

      .clarifications h2 {
        font-size: 1.4rem;
      }

      .clarifications .lead {
        font-size: 0.95rem;
      }

      .clarifications .note p {
        font-size: 0.88rem;
      }
    }

.clarifications {
  background: var(--inverse-bg);
  color: var(--inverse-fg);
}

.plans-overview {
    background: var(--page-bg);
    color: var(--page-fg);
    padding: 72px 24px;
  }

  .plans-overview .inner {
    max-width: 860px;
    margin: 0 auto;
  }

  .plans-overview h2 {
    font-size: 1.9rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin: 0 0 16px 0;
    line-height: 1.25;
  }

  .plans-overview .lead {
    font-size: 1.05rem;
    line-height: 1.65;
    margin: 0 0 48px 0;
    max-width: 720px;
  }

  .plans-overview .entry {
    padding: 28px 0;
    border-top: 1px solid var(--card-bg);
  }

  .plans-overview .entry:last-child {
    border-bottom: 1px solid var(--card-bg);
  }

  .plans-overview .entry h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 12px 0;
    line-height: 1.35;
  }

  .plans-overview .entry p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 0 12px 0;
    max-width: 760px;
  }

  .plans-overview .route {
    display: inline-block;
    margin-top: 8px;
    color: var(--primary-bg);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.15s ease;
  }

  .plans-overview .route:hover {
    border-bottom-color: var(--primary-bg);
  }

.plans-overview {
  background: var(--page-bg);
  color: var(--page-fg);
}

.capabilities {
    background: var(--gradient-hero-bg);
    color: var(--gradient-hero-fg);
    padding: 5rem 1.5rem;
  }

  .capabilities .inner {
    max-width: 760px;
    margin: 0 auto;
  }

  .capabilities h2 {
    font-size: 1.9rem;
    font-weight: 600;
    line-height: 1.25;
    margin: 0 0 1.25rem;
    letter-spacing: -0.01em;
  }

  .capabilities p {
    font-size: 1rem;
    line-height: 1.7;
    margin: 0 0 1.1rem;
    color: var(--gradient-hero-fg);
  }

  .capabilities p:last-of-type {
    margin-bottom: 0;
  }

  .capabilities .route {
    margin-top: 2rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(232, 236, 241, 0.15);
    font-size: 0.95rem;
  }

  .capabilities .route a {
    color: var(--primary-bg);
    text-decoration: none;
    border-bottom: 1px solid rgba(79, 195, 247, 0.4);
    transition: border-color 0.2s ease;
  }

  .capabilities .route a:hover {
    border-bottom-color: var(--primary-bg);
  }

.capabilities {
  background: var(--inverse-bg);
  color: var(--inverse-fg);
}

.faq {
    background: var(--page-bg);
    color: var(--page-fg);
    padding: 4rem 1.5rem;
  }

  .faq .inner {
    max-width: 760px;
    margin: 0 auto;
  }

  .faq h2 {
    font-size: 1.75rem;
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 1rem;
    letter-spacing: -0.01em;
  }

  .faq > .inner > p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--muted-fg);
    margin: 0 0 2.5rem;
  }

  .faq .question {
    border-top: 1px solid var(--card-border);
    padding: 1.5rem 0;
  }

  .faq .question:last-of-type {
    border-bottom: 1px solid var(--card-border);
  }

  .faq .question h3 {
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.4;
    margin: 0 0 0.6rem;
  }

  .faq .question p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--muted-fg);
    margin: 0;
  }

  .faq .note {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--muted-fg);
    margin: 2rem 0 0;
  }

.faq {
  background: var(--page-bg);
  color: var(--page-fg);
}

.value-points {
    background: var(--page-bg);
    color: var(--page-fg);
    padding: 72px 24px;
  }

  .value-points .inner {
    max-width: 1080px;
    margin: 0 auto;
  }

  .value-points h2 {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 16px;
    letter-spacing: -0.02em;
  }

  .value-points .inner > p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--muted-fg);
    max-width: 720px;
    margin: 0 0 48px;
  }

  .value-points .benefits {
    list-style: none;
    margin: 0 0 40px;
    padding: 0;
    display: block;
  }

  .value-points .benefits li {
    padding: 24px 0;
    border-top: 1px solid var(--card-border);
  }

  .value-points .benefits li:last-child {
    border-bottom: 1px solid var(--card-border);
  }

  .value-points .benefits h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 8px;
    line-height: 1.4;
  }

  .value-points .benefits p {
    font-size: 15px;
    line-height: 1.65;
    color: var(--muted-fg);
    margin: 0;
    max-width: 760px;
  }

  .value-points .note {
    font-size: 14px;
    line-height: 1.6;
    color: var(--muted-fg);
    margin: 0;
    max-width: 720px;
    border-left: 2px solid var(--primary-bg);
    padding-left: 16px;
  }

.value-points {
  background: var(--page-bg);
  color: var(--page-fg);
}

.next-step {
    background: var(--gradient-hero-bg);
    color: var(--gradient-hero-fg);
    padding: 4.5rem 1.5rem;
  }
  .next-step .inner {
    max-width: 46rem;
    margin: 0 auto;
    display: block;
  }
  .next-step h2 {
    font-size: 1.75rem;
    line-height: 1.25;
    font-weight: 600;
    margin: 0 0 1.25rem;
    letter-spacing: -0.01em;
  }
  .next-step p {
    font-size: 1rem;
    line-height: 1.7;
    margin: 0 0 2rem;
    max-width: 42rem;
  }
  .next-step .route {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.25rem 1.75rem;
  }
  .next-step .action {
    display: inline-block;
    background: var(--primary-bg);
    color: var(--primary-fg);
    padding: 0.8rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: background 0.2s ease;
  }
  .next-step .action:hover {
    background: var(--primary-hover);
  }
  .next-step .route a:not(.action) {
    color: var(--gradient-hero-fg);
    font-size: 0.9rem;
    text-decoration: underline;
    text-underline-offset: 3px;
    opacity: 0.85;
    transition: opacity 0.2s ease;
  }
  .next-step .route a:not(.action):hover {
    opacity: 1;
  }

.recommendations {
    background: var(--page-bg);
    color: var(--page-fg);
    padding: 3rem 1.25rem;
  }

  .recommendations .inner {
    max-width: 960px;
    margin: 0 auto;
  }

  .recommendations h2 {
    font-size: 1.6rem;
    font-weight: 600;
    margin: 0 0 0.75rem;
    letter-spacing: -0.01em;
  }

  .recommendations .intro {
    margin: 0 0 2rem;
    max-width: 720px;
    line-height: 1.6;
  }

  .recommendations .entries {
    border-top: 1px solid var(--card-border);
  }

  .recommendations .entry {
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--card-border);
  }

  .recommendations .entry h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin: 0 0 0.4rem;
    line-height: 1.4;
  }

  .recommendations .entry p {
    margin: 0 0 0.6rem;
    line-height: 1.55;
    font-size: 0.95rem;
  }

  .recommendations .entry a {
    color: var(--primary-bg);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
  }

  .recommendations .entry a:hover {
    color: var(--primary-hover);
    text-decoration: underline;
  }

  .recommendations .closing {
    margin: 1.5rem 0 0;
    font-size: 0.9rem;
    color: var(--muted-fg);
    line-height: 1.5;
  }

.recommendations {
  background: var(--page-bg);
  color: var(--page-fg);
}

.clarifications {
        background: var(--page-bg);
        color: var(--page-fg);
        padding: 72px 24px;
    }

    .clarifications .inner {
        max-width: 860px;
        margin: 0 auto;
    }

    .clarifications h2 {
        font-size: 1.75rem;
        font-weight: 600;
        line-height: 1.3;
        margin: 0 0 16px 0;
        letter-spacing: -0.01em;
    }

    .clarifications > .inner > p {
        font-size: 1rem;
        line-height: 1.7;
        margin: 0 0 40px 0;
        color: var(--muted-fg);
    }

    .clarifications ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .clarifications li {
        padding: 20px 0;
        border-bottom: 1px solid var(--card-border);
    }

    .clarifications li:first-child {
        border-top: 1px solid var(--card-border);
    }

    .clarifications li h3 {
        font-size: 1.05rem;
        font-weight: 600;
        margin: 0 0 8px 0;
        line-height: 1.4;
    }

    .clarifications li p {
        font-size: 0.95rem;
        line-height: 1.65;
        margin: 0;
        color: var(--muted-fg);
    }

.clarifications {
  background: var(--page-bg);
  color: var(--page-fg);
}

.support {
    background: var(--page-bg);
    color: var(--page-fg);
    padding: 72px 24px;
  }

  .support .inner {
    max-width: 860px;
    margin: 0 auto;
  }

  .support .intro {
    margin-bottom: 56px;
  }

  .support .subtitle {
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted-fg);
    margin: 0 0 12px;
  }

  .support h2 {
    font-size: 30px;
    line-height: 1.25;
    font-weight: 600;
    margin: 0 0 16px;
    max-width: 640px;
  }

  .support .lead {
    font-size: 16px;
    line-height: 1.7;
    color: var(--muted-fg);
    max-width: 680px;
    margin: 0;
  }

  .support .channel {
    padding: 28px 0;
    border-top: 1px solid var(--card-border);
  }

  .support .channel:last-of-type {
    border-bottom: 1px solid var(--card-border);
  }

  .support .channel-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 10px;
  }

  .support .channel-head h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
  }

  .support .channel-type {
    font-size: 13px;
    color: var(--muted-fg);
    margin: 0;
    white-space: nowrap;
  }

  .support .channel-text {
    font-size: 15px;
    line-height: 1.65;
    margin: 0 0 10px;
    max-width: 720px;
  }

  .support .channel-note {
    font-size: 14px;
    line-height: 1.6;
    color: var(--muted-fg);
    margin: 0;
    max-width: 720px;
  }

  .support a {
    color: var(--primary-bg);
    text-decoration: none;
    border-bottom: 1px solid rgba(79, 195, 247, 0.3);
  }

  .support a:hover {
    color: var(--accent-bg);
    border-bottom-color: var(--accent-bg);
  }

  .support .route {
    margin: 40px 0 0;
    font-size: 14px;
    line-height: 1.6;
    color: var(--muted-fg);
  }

  @media (max-width: 640px) {
    .support {
      padding: 48px 20px;
    }

    .support h2 {
      font-size: 24px;
    }

    .support .channel-head {
      flex-direction: column;
      gap: 4px;
    }

    .support .channel-type {
      white-space: normal;
    }
  }

.support {
  background: var(--inverse-bg);
  color: var(--inverse-fg);
}

.timeline {
    background: var(--page-bg);
    color: var(--page-fg);
    padding: 4rem 1.5rem;
  }

  .inner {
    max-width: 960px;
    margin: 0 auto;
  }

  .timeline-head {
    max-width: 640px;
    margin-bottom: 3rem;
  }

  .timeline-head h2 {
    font-size: 1.75rem;
    font-weight: 600;
    line-height: 1.25;
    margin: 0 0 1rem;
    letter-spacing: -0.01em;
  }

  .timeline-head p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--muted-fg);
    margin: 0;
  }

  .timeline-list {
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
  }

  .timeline-list::before {
    content: "";
    position: absolute;
    left: 0.5rem;
    top: 0.5rem;
    bottom: 0.5rem;
    width: 1px;
    background: var(--card-border);
  }

  .timeline-item {
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: 2.5rem;
  }

  .timeline-item:last-child {
    margin-bottom: 0;
  }

  .timeline-marker {
    position: absolute;
    left: 0;
    top: 0.25rem;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background: var(--primary-bg);
    border: 2px solid var(--page-bg);
    box-shadow: 0 0 0 1px var(--primary-bg);
  }

  .timeline-marker time {
    position: absolute;
    left: 1.75rem;
    top: -0.15rem;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--accent-bg);
    white-space: nowrap;
    letter-spacing: 0.02em;
  }

  .timeline-content {
    padding-top: 1.5rem;
  }

  .timeline-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
    margin: 0 0 0.6rem;
  }

  .timeline-content p {
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--muted-fg);
    margin: 0;
    max-width: 620px;
  }

  @media (min-width: 640px) {
    .timeline {
      padding: 5rem 2rem;
    }

    .timeline-head h2 {
      font-size: 2rem;
    }

    .timeline-list::before {
      left: 0.75rem;
    }

    .timeline-item {
      padding-left: 3rem;
    }

    .timeline-marker {
      width: 1.5rem;
      height: 1.5rem;
      left: 0;
    }

    .timeline-marker time {
      left: 2.5rem;
      top: 0.1rem;
      font-size: 0.85rem;
    }

    .timeline-content {
      padding-top: 2rem;
    }
  }

.timeline {
  background: var(--page-bg);
  color: var(--page-fg);
}

.how-it-works {
    background: var(--page-bg);
    color: var(--page-fg);
    padding: 4rem 1.5rem;
  }

  .how-it-works .inner {
    max-width: 960px;
    margin: 0 auto;
  }

  .how-it-works h2 {
    font-size: 1.75rem;
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 1rem;
  }

  .how-it-works > .inner > p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--muted-fg);
    max-width: 720px;
    margin: 0 0 2.5rem;
  }

  .how-it-works .steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
  }

  .how-it-works .step {
    border-left: 2px solid var(--primary-bg);
    padding: 0.25rem 0 0.25rem 1.25rem;
  }

  .how-it-works .step h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin: 0 0 0.5rem;
  }

  .how-it-works .step p {
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--muted-fg);
    margin: 0;
  }

  .how-it-works .note {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--muted-fg);
    border-top: 1px solid var(--card-border);
    padding-top: 1.5rem;
    margin: 0;
  }

  .how-it-works .note a {
    color: var(--primary-bg);
    text-decoration: none;
    border-bottom: 1px solid rgba(79, 195, 247, 0.4);
  }

  .how-it-works .note a:hover {
    color: var(--accent-bg);
    border-bottom-color: var(--accent-bg);
  }

  @media (min-width: 640px) {
    .how-it-works .steps {
      grid-template-columns: 1fr 1fr;
      gap: 2rem 2.5rem;
    }
  }

.how-it-works {
  background: var(--inverse-bg);
  color: var(--inverse-fg);
}

.contacts {
    background: var(--page-bg);
    color: var(--page-fg);
    padding: 72px 24px;
  }

  .contacts .inner {
    max-width: 760px;
    margin: 0 auto;
  }

  .contacts h2 {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 20px;
    letter-spacing: -0.01em;
  }

  .contacts p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--muted-fg);
    margin: 0 0 16px;
  }

  .contacts .contact-lines {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--card-border);
  }

  .contacts .contact-line {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin: 0 0 20px;
    font-size: 15px;
    line-height: 1.6;
    color: var(--page-fg);
  }

  .contacts .contact-line:last-child {
    margin-bottom: 0;
  }

  .contacts .contact-line span {
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--muted-fg);
  }

  .contacts .contact-line a {
    color: var(--primary-bg);
    text-decoration: none;
  }

  .contacts .contact-line a:hover {
    color: var(--brand-hover);
    text-decoration: underline;
  }

.contacts {
  background: var(--inverse-bg);
  color: var(--inverse-fg);
}

.stay-in-touch {
    background: var(--page-bg);
    color: var(--page-fg);
    padding: 64px 24px;
  }

  .stay-in-touch .inner {
    max-width: 720px;
    margin: 0 auto;
  }

  .stay-in-touch h2 {
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 16px 0;
  }

  .stay-in-touch p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0 0 12px 0;
    color: var(--muted-fg);
  }

  .stay-in-touch p:last-child {
    margin-bottom: 0;
  }

  .stay-in-touch a {
    color: var(--primary-bg);
    text-decoration: none;
    border-bottom: 1px solid rgba(79, 195, 247, 0.3);
    transition: border-color 0.2s ease;
  }

  .stay-in-touch a:hover {
    border-bottom-color: var(--primary-bg);
  }

.stay-in-touch {
  background: var(--page-bg);
  color: var(--page-fg);
}

.support {
    background: var(--page-bg);
    color: var(--page-fg);
    padding: 4.5rem 1.25rem;
  }

  .support .inner {
    max-width: 880px;
    margin: 0 auto;
  }

  .support h2 {
    font-size: 1.75rem;
    font-weight: 600;
    line-height: 1.25;
    margin: 0 0 1.25rem;
    letter-spacing: -0.01em;
  }

  .support p {
    font-size: 1rem;
    line-height: 1.7;
    margin: 0 0 1rem;
    max-width: 72ch;
  }

  .support p:last-of-type {
    margin-bottom: 2rem;
  }

  .support .route {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding-top: 0.25rem;
  }

  .support .route a {
    color: var(--primary-bg);
    font-size: 0.95rem;
    text-decoration: none;
    border-bottom: 1px solid rgba(79, 195, 247, 0.4);
    padding-bottom: 0.15rem;
    transition: border-color 0.2s ease;
  }

  .support .route a:hover {
    border-bottom-color: var(--primary-bg);
  }

.value-points {
      background: var(--page-bg);
      color: var(--page-fg);
      padding: 4.5rem 1.25rem;
    }

    .value-points .inner {
      max-width: 900px;
      margin: 0 auto;
    }

    .value-points h2 {
      font-size: 1.9rem;
      font-weight: 600;
      line-height: 1.25;
      margin: 0 0 1rem;
      max-width: 640px;
      letter-spacing: -0.01em;
    }

    .value-points .lead {
      font-size: 1.05rem;
      line-height: 1.6;
      margin: 0 0 3rem;
      max-width: 620px;
      color: var(--muted-fg);
    }

    .value-points .notes {
      display: block;
    }

    .value-points .note {
      margin: 0 0 2.25rem;
      padding-left: 1.5rem;
      border-left: 2px solid var(--brand-primary-bg);
    }

    .value-points .note h3 {
      font-size: 1.1rem;
      font-weight: 600;
      margin: 0 0 0.5rem;
      line-height: 1.4;
    }

    .value-points .note p {
      font-size: 0.95rem;
      line-height: 1.65;
      margin: 0;
      max-width: 640px;
      color: var(--muted-fg);
    }

    .value-points .footnote {
      margin: 3rem 0 0;
      font-size: 0.9rem;
      line-height: 1.6;
      color: var(--muted-fg);
      max-width: 620px;
    }

    .value-points .footnote a {
      color: var(--brand-primary-bg);
      text-decoration: none;
      border-bottom: 1px solid rgba(79, 195, 247, 0.4);
      transition: border-color 0.2s ease;
    }

    .value-points .footnote a:hover {
      border-bottom-color: var(--brand-primary-bg);
    }

    @media (min-width: 640px) {
      .value-points {
        padding: 5.5rem 2rem;
      }

      .value-points h2 {
        font-size: 2.2rem;
      }

      .value-points .lead {
        font-size: 1.1rem;
      }
    }

.recommendations {
    background: var(--gradient-hero-bg);
    color: var(--gradient-hero-fg);
    padding: 56px 24px;
  }

  .recommendations .inner {
    max-width: 1080px;
    margin: 0 auto;
  }

  .recommendations h2 {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.25;
    margin: 0 0 16px 0;
    letter-spacing: -0.01em;
  }

  .recommendations .inner > p {
    font-size: 16px;
    line-height: 1.65;
    margin: 0 0 32px 0;
    max-width: 720px;
  }

  .recommendations .entries {
    border-top: 1px solid var(--card-bg);
  }

  .recommendations .entry {
    padding: 24px 0;
    border-bottom: 1px solid var(--card-bg);
  }

  .recommendations .entry h3 {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0 0 8px 0;
  }

  .recommendations .entry p {
    font-size: 15px;
    line-height: 1.6;
    margin: 0 0 12px 0;
    max-width: 820px;
  }

  .recommendations .entry a {
    color: var(--primary-bg);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
  }

  .recommendations .entry a:hover {
    border-bottom-color: var(--primary-bg);
  }

  .recommendations .note {
    font-size: 14px;
    line-height: 1.6;
    margin: 24px 0 0 0;
    color: var(--muted-fg);
    max-width: 720px;
  }

.recommendations {
  background: var(--inverse-bg);
  color: var(--inverse-fg);
}

.social-proof {
    background: var(--page-bg);
    color: var(--page-fg);
    padding: 4.5rem 1.5rem;
  }

  .social-proof .inner {
    max-width: 860px;
    margin: 0 auto;
  }

  .social-proof h2 {
    font-size: 1.7rem;
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 1.2rem 0;
    letter-spacing: -0.01em;
  }

  .social-proof .lead {
    font-size: 1rem;
    line-height: 1.7;
    margin: 0 0 3rem 0;
    max-width: 640px;
    color: var(--muted-fg);
  }

  .social-proof .quotes {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .social-proof .quote {
    padding: 1.6rem 0;
    border-top: 1px solid var(--card-border);
  }

  .social-proof .quote:last-child {
    border-bottom: 1px solid var(--card-border);
  }

  .social-proof .quote-text {
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0 0 0.8rem 0;
  }

  .social-proof .quote-meta {
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
    color: var(--muted-fg);
  }

.social-proof {
  background: var(--page-bg);
  color: var(--page-fg);
}

.feedback {
    background: var(--page-bg);
    color: var(--page-fg);
    padding: 72px 24px;
  }

  .feedback .inner {
    max-width: 860px;
    margin: 0 auto;
  }

  .feedback h2 {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 16px;
    letter-spacing: -0.01em;
  }

  .feedback p {
    font-size: 16px;
    line-height: 1.7;
    margin: 0 0 14px;
  }

  .feedback .review {
    margin-top: 44px;
    padding-top: 28px;
    border-top: 1px solid var(--card-border);
  }

  .feedback .review-text {
    font-size: 17px;
    line-height: 1.75;
    margin: 0 0 14px;
  }

  .feedback .review-author {
    font-size: 14px;
    color: var(--muted-fg);
    margin: 0;
  }

.feedback {
  background: var(--page-bg);
  color: var(--page-fg);
}

.partners {
        background: var(--gradient-hero-bg);
        color: var(--gradient-hero-fg);
        padding: 72px 24px;
    }

    .partners .inner {
        max-width: 960px;
        margin: 0 auto;
    }

    .partners h2 {
        font-size: 1.9rem;
        font-weight: 600;
        line-height: 1.25;
        margin: 0 0 24px 0;
        letter-spacing: -0.01em;
    }

    .partners p {
        font-size: 1rem;
        line-height: 1.7;
        margin: 0 0 18px 0;
        max-width: 72ch;
    }

    .partners p:last-child {
        margin-bottom: 0;
    }

    @media (max-width: 640px) {
        .partners {
            padding: 56px 20px;
        }

        .partners h2 {
            font-size: 1.6rem;
        }
    }

.partners {
  background: var(--inverse-bg);
  color: var(--inverse-fg);
}

.why-choose {
        background: var(--page-bg);
        color: var(--page-fg);
        padding: 4rem 1.5rem;
    }

    .why-choose .inner {
        max-width: 860px;
        margin: 0 auto;
    }

    .why-choose h2 {
        font-size: 1.8rem;
        font-weight: 600;
        line-height: 1.3;
        margin: 0 0 1.5rem;
        letter-spacing: -0.01em;
    }

    .why-choose .lead {
        font-size: 1.05rem;
        line-height: 1.7;
        margin: 0 0 1.25rem;
    }

    .why-choose .closing {
        font-size: 1rem;
        line-height: 1.65;
        margin: 0 0 2.5rem;
        color: var(--muted-fg);
    }

    .why-choose .reasons {
        list-style: none;
        margin: 0 0 2.5rem;
        padding: 0;
    }

    .why-choose .reason {
        padding: 1.25rem 0;
        border-top: 1px solid var(--card-border);
    }

    .why-choose .reason:last-child {
        border-bottom: 1px solid var(--card-border);
    }

    .why-choose .reason h3 {
        font-size: 1.1rem;
        font-weight: 600;
        margin: 0 0 0.5rem;
        line-height: 1.4;
    }

    .why-choose .reason p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin: 0;
        color: var(--muted-fg);
    }

    .why-choose .route {
        font-size: 0.95rem;
        line-height: 1.6;
        margin: 0;
    }

    .why-choose .route a {
        color: var(--primary-bg);
        text-decoration: none;
        border-bottom: 1px solid rgba(79, 195, 247, 0.4);
        transition: border-color 0.2s ease;
    }

    .why-choose .route a:hover {
        border-bottom-color: var(--primary-bg);
    }

.why-choose {
  background: var(--page-bg);
  color: var(--page-fg);
}

.recommendations {
    background: var(--page-bg);
    color: var(--page-fg);
    padding: 72px 0;
  }

  .recommendations .inner {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 24px;
  }

  .recommendations h2 {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 16px 0;
  }

  .recommendations .intro {
    font-size: 16px;
    line-height: 1.7;
    margin: 0 0 48px 0;
    max-width: 720px;
  }

  .recommendations .entry {
    margin-bottom: 40px;
  }

  .recommendations .entry h3 {
    font-size: 19px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0 0 6px 0;
  }

  .recommendations .entry h3 a {
    color: var(--brand-primary-bg, #4FC3F7);
    text-decoration: none;
  }

  .recommendations .entry h3 a:hover {
    color: var(--brand-accent-bg, #81D4FA);
    text-decoration: underline;
  }

  .recommendations .meta {
    font-size: 14px;
    margin: 0 0 10px 0;
    color: var(--muted-fg, #C0C7D1);
  }

  .recommendations .entry p:last-child {
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
    max-width: 780px;
  }

  .recommendations .route {
    margin: 48px 0 0 0;
    font-size: 15px;
    line-height: 1.7;
  }

  .recommendations .route a {
    color: var(--brand-primary-bg, #4FC3F7);
    text-decoration: none;
  }

  .recommendations .route a:hover {
    color: var(--brand-accent-bg, #81D4FA);
    text-decoration: underline;
  }

.value-points {
    background: var(--page-bg);
    color: var(--page-fg);
    padding: 4rem 1.5rem;
  }
  .value-points .inner {
    max-width: 900px;
    margin: 0 auto;
  }
  .value-points h2 {
    font-size: 1.75rem;
    font-weight: 600;
    line-height: 1.25;
    margin: 0 0 1rem;
    letter-spacing: -0.01em;
  }
  .value-points .lead {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 0 2.5rem;
    max-width: 70ch;
  }
  .value-points .entries {
    display: block;
  }
  .value-points .entry {
    border-top: 1px solid var(--card-border);
    padding: 1.25rem 0;
  }
  .value-points .entry:last-of-type {
    border-bottom: 1px solid var(--card-border);
  }
  .value-points .entry h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin: 0 0 0.4rem;
    line-height: 1.3;
  }
  .value-points .entry p {
    font-size: 0.95rem;
    line-height: 1.55;
    margin: 0;
    max-width: 75ch;
  }
  .value-points .note {
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 2rem 0 0;
    color: var(--muted-fg);
  }
  .value-points .note a {
    color: var(--primary-bg);
    text-decoration: none;
    border-bottom: 1px solid rgba(79, 195, 247, 0.4);
    transition: border-color 0.15s ease;
  }
  .value-points .note a:hover {
    border-bottom-color: var(--primary-bg);
  }

.our-story {
    background: var(--page-bg);
    color: var(--page-fg);
    padding: 5rem 1.5rem;
  }

  .our-story .inner {
    max-width: 760px;
    margin: 0 auto;
  }

  .our-story h2 {
    font-size: 1.9rem;
    font-weight: 600;
    line-height: 1.25;
    margin: 0 0 2.2rem;
    letter-spacing: -0.01em;
  }

  .our-story p {
    font-size: 1rem;
    line-height: 1.75;
    margin: 0 0 1.6rem;
  }

  .our-story p:last-child {
    margin-bottom: 0;
  }

  .our-story a {
    color: var(--primary-bg);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
  }

  .our-story a:hover {
    color: var(--primary-hover);
  }

.mission {
    background: var(--page-bg);
    color: var(--page-fg);
    padding: 72px 24px;
  }

  .mission .inner {
    max-width: 860px;
    margin: 0 auto;
  }

  .mission h2 {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 24px;
    letter-spacing: -0.01em;
  }

  .mission p {
    font-size: 16px;
    line-height: 1.7;
    margin: 0 0 18px;
    color: var(--muted-fg);
  }

  .mission p:last-child {
    margin-bottom: 0;
  }

.mission {
  background: var(--page-bg);
  color: var(--page-fg);
}

.identity {
    background: var(--gradient-hero-bg);
    color: var(--gradient-hero-fg);
    padding: 72px 24px 80px;
  }

  .identity .inner {
    max-width: 860px;
    margin: 0 auto;
  }

  .identity h1 {
    font-size: 2.1rem;
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin: 0 0 20px;
    max-width: 720px;
  }

  .identity p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0 0 40px;
    max-width: 760px;
  }

  .identity h2 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 16px;
    letter-spacing: -0.01em;
  }

  .identity ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .identity li {
    font-size: 1rem;
    line-height: 1.6;
    padding-left: 20px;
    position: relative;
    max-width: 720px;
  }

  .identity li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.65em;
    width: 8px;
    height: 1px;
    background: var(--brand-primary-bg, #4FC3F7);
  }

.identity {
  background: var(--inverse-bg);
  color: var(--inverse-fg);
}

.timeline {
    background: var(--page-bg);
    color: var(--page-fg);
    padding: 72px 24px;
  }

  .timeline .inner {
    max-width: 760px;
    margin: 0 auto;
  }

  .timeline h2 {
    font-size: 28px;
    line-height: 1.3;
    margin: 0 0 16px;
    letter-spacing: -0.01em;
  }

  .timeline > .inner > p {
    font-size: 15px;
    line-height: 1.7;
    margin: 0 0 12px;
    color: var(--muted-fg);
  }

  .timeline .entry {
    margin-top: 48px;
  }

  .timeline .entry h3 {
    font-size: 17px;
    line-height: 1.4;
    margin: 0 0 8px;
    font-weight: 600;
    color: var(--page-fg);
  }

  .timeline .entry p {
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
    color: var(--muted-fg);
  }

.how-it-works {
        background: var(--page-bg);
        color: var(--page-fg);
        padding: 4rem 1.5rem;
    }

    .how-it-works .inner {
        max-width: 960px;
        margin: 0 auto;
    }

    .how-it-works h2 {
        font-size: 1.75rem;
        font-weight: 600;
        margin: 0 0 1rem;
        letter-spacing: -0.01em;
    }

    .how-it-works .lead {
        font-size: 1rem;
        line-height: 1.7;
        max-width: 720px;
        margin: 0 0 2.5rem;
        color: var(--muted-fg);
    }

    .how-it-works .steps {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .how-it-works .step {
        padding: 1.5rem 0;
        border-bottom: 1px solid var(--card-border);
    }

    .how-it-works .step:first-child {
        border-top: 1px solid var(--card-border);
    }

    .how-it-works .step-head {
        display: flex;
        align-items: baseline;
        gap: 1rem;
        margin-bottom: 0.5rem;
    }

    .how-it-works .step-num {
        font-size: 0.8rem;
        font-weight: 500;
        color: var(--primary-bg);
        letter-spacing: 0.05em;
        font-variant-numeric: tabular-nums;
    }

    .how-it-works h3 {
        font-size: 1.15rem;
        font-weight: 600;
        margin: 0;
    }

    .how-it-works .step-text {
        font-size: 0.95rem;
        line-height: 1.65;
        margin: 0;
        color: var(--muted-fg);
    }

    .how-it-works .footnote {
        font-size: 0.9rem;
        line-height: 1.6;
        margin: 2rem 0 0;
        color: var(--muted-fg);
    }

    .how-it-works .footnote a {
        color: var(--primary-bg);
        text-decoration: none;
        border-bottom: 1px solid transparent;
        transition: border-color 0.15s ease;
    }

    .how-it-works .footnote a:hover {
        border-bottom-color: var(--primary-bg);
    }

    @media (max-width: 640px) {
        .how-it-works {
            padding: 3rem 1.25rem;
        }

        .how-it-works h2 {
            font-size: 1.5rem;
        }

        .how-it-works .step-head {
            flex-direction: column;
            gap: 0.25rem;
        }
    }

.timeline {
      background: var(--page-bg);
      color: var(--page-fg);
      padding: 4.5rem 1.25rem;
    }

    .timeline .inner {
      max-width: 780px;
      margin: 0 auto;
    }

    .timeline h2 {
      font-size: 1.75rem;
      font-weight: 600;
      line-height: 1.3;
      margin: 0 0 1rem;
      letter-spacing: -0.01em;
    }

    .timeline > .inner > p {
      font-size: 1rem;
      line-height: 1.65;
      margin: 0 0 3rem;
      max-width: 640px;
    }

    .timeline .entry {
      border-left: 1px solid var(--card-border);
      padding: 0 0 2.5rem 1.75rem;
      margin-left: 0.25rem;
      position: relative;
    }

    .timeline .entry:last-child {
      border-left-color: transparent;
      padding-bottom: 0;
    }

    .timeline .entry::before {
      content: "";
      position: absolute;
      left: -5px;
      top: 6px;
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: var(--primary-bg);
    }

    .timeline .entry-head {
      margin-bottom: 0.75rem;
    }

    .timeline time {
      display: block;
      font-size: 0.8rem;
      font-weight: 500;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      margin-bottom: 0.35rem;
    }

    .timeline h3 {
      font-size: 1.15rem;
      font-weight: 600;
      line-height: 1.4;
      margin: 0;
    }

    .timeline .entry > p {
      font-size: 0.95rem;
      line-height: 1.6;
      margin: 0 0 0.75rem;
    }

    .timeline .note {
      font-size: 0.85rem;
      line-height: 1.55;
      padding: 0.75rem 1rem;
      background: var(--muted-bg);
      color: var(--muted-fg);
      border-radius: 4px;
      margin: 0;
    }

    @media (max-width: 600px) {
      .timeline {
        padding: 3rem 1rem;
      }

      .timeline .entry {
        padding-left: 1.25rem;
      }

      .timeline h2 {
        font-size: 1.5rem;
      }
    }

.clarifications {
    background: var(--gradient-hero-bg);
    color: var(--gradient-hero-fg);
    padding: 64px 24px;
  }

  .clarifications .inner {
    max-width: 720px;
    margin: 0 auto;
  }

  .clarifications h2 {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 20px 0;
    letter-spacing: -0.01em;
  }

  .clarifications p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0 0 16px 0;
    color: var(--muted-fg);
  }

  .clarifications p:last-child {
    margin-bottom: 0;
  }

.blog-item {
    background: var(--page-bg);
    color: var(--page-fg);
    padding: 48px 24px;
  }
  .blog-item .inner {
    max-width: 760px;
    margin: 0 auto;
  }
  .blog-item .post-head {
    border-bottom: 1px solid var(--muted-bg);
    padding-bottom: 16px;
    margin-bottom: 24px;
  }
  .blog-item .post-date {
    font-size: 14px;
    color: var(--muted-fg);
    margin: 0 0 8px 0;
  }
  .blog-item h1 {
    font-size: 32px;
    line-height: 1.25;
    margin: 0;
    font-weight: 600;
  }
  .blog-item .post-body p {
    font-size: 16px;
    line-height: 1.7;
    margin: 0 0 18px 0;
  }
  .blog-item .post-foot {
    border-top: 1px solid var(--muted-bg);
    padding-top: 16px;
    margin-top: 32px;
  }
  .blog-item .post-foot p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--muted-fg);
    margin: 0;
  }
  .blog-item .post-foot a {
    color: var(--primary-bg);
    text-decoration: underline;
    text-underline-offset: 3px;
  }
  .blog-item .post-foot a:hover {
    color: var(--accent-bg);
  }

.blog-item {
  background: var(--page-bg);
  color: var(--page-fg);
}

.author {
    background: var(--page-bg);
    color: var(--page-fg);
    padding: 3rem 1.5rem;
  }
  .author .inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 2.5rem;
  }
  .author-media {
    flex: 0 0 280px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
  }
  .author-media img {
    display: block;
    width: 100%;
    height: auto;
  }
  .author-body {
    flex: 1;
    max-width: 640px;
  }
  .author-body h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0 0 0.25rem;
    letter-spacing: -0.02em;
  }
  .role {
    font-size: 1rem;
    color: var(--muted-fg);
    margin: 0 0 1.25rem;
    font-weight: 500;
  }
  .expertise {
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--page-fg);
    margin: 0 0 1.5rem;
  }
  .author-link {
    display: inline-block;
    color: var(--primary-bg);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid var(--primary-bg);
    padding-bottom: 2px;
  }
  .author-link:hover {
    color: var(--primary-hover);
    border-color: var(--primary-hover);
  }
  @media (max-width: 720px) {
    .author .inner {
      flex-direction: column;
      gap: 1.5rem;
    }
    .author-media {
      flex-basis: auto;
      width: 100%;
      max-width: 420px;
    }
  }

.author {
  background: var(--inverse-bg);
  color: var(--inverse-fg);
}

.blog-item {
            background: var(--page-bg);
            color: var(--page-fg);
            padding: 4rem 1.5rem;
        }

        .blog-item .inner {
            max-width: 720px;
            margin: 0 auto;
        }

        .blog-item__header {
            border-bottom: 1px solid var(--card-border);
            padding-bottom: 2rem;
            margin-bottom: 2rem;
        }

        .blog-item__meta {
            font-size: 0.85rem;
            color: var(--muted-fg);
            margin: 0 0 1rem 0;
            letter-spacing: 0.02em;
        }

        .blog-item__header h1 {
            font-size: 2rem;
            line-height: 1.25;
            margin: 0 0 0.75rem 0;
            font-weight: 600;
        }

        .blog-item__subtitle {
            font-size: 1.1rem;
            color: var(--muted-fg);
            margin: 0;
            line-height: 1.5;
        }

        .blog-item__content p {
            font-size: 1rem;
            line-height: 1.7;
            margin: 0 0 1.5rem 0;
        }

        .blog-item__footer {
            border-top: 1px solid var(--card-border);
            padding-top: 1.5rem;
            margin-top: 1rem;
        }

        .blog-item__note {
            font-size: 0.9rem;
            color: var(--muted-fg);
            line-height: 1.6;
            margin: 0 0 1.25rem 0;
        }

        .blog-item__route {
            display: flex;
            gap: 1.5rem;
        }

        .blog-item__route a {
            color: var(--primary-bg);
            text-decoration: none;
            font-size: 0.9rem;
            border-bottom: 1px solid transparent;
            padding-bottom: 2px;
        }

        .blog-item__route a:hover {
            border-bottom-color: var(--primary-bg);
        }

        @media (max-width: 640px) {
            .blog-item {
                padding: 2.5rem 1rem;
            }

            .blog-item__header h1 {
                font-size: 1.6rem;
            }

            .blog-item__route {
                flex-direction: column;
                gap: 0.75rem;
            }
        }

.author {
    background: var(--inverse-bg);
    color: var(--inverse-fg);
    padding: 64px 0;
  }
  .author .inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: flex-start;
    gap: 48px;
  }
  .author .media {
    flex: 0 0 260px;
  }
  .author .media img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 8px;
  }
  .author .body {
    flex: 1;
  }
  .author h2 {
    font-size: 28px;
    font-weight: 600;
    margin: 0 0 6px;
    line-height: 1.2;
  }
  .author .role {
    font-size: 15px;
    margin: 0 0 20px;
    opacity: 0.8;
  }
  .author .bio {
    font-size: 15px;
    line-height: 1.65;
    margin: 0 0 20px;
    max-width: 640px;
  }
  .author .note {
    font-size: 14px;
    margin: 0;
    border-top: 1px solid rgba(10, 12, 18, 0.15);
    padding-top: 16px;
    max-width: 640px;
  }
  .author .note a {
    color: var(--inverse-fg);
    text-decoration: underline;
    text-underline-offset: 3px;
  }
  .author .note a:hover {
    text-decoration: none;
  }
  @media (max-width: 720px) {
    .author .inner {
      flex-direction: column;
      gap: 24px;
    }
    .author .media {
      flex: 0 0 auto;
      max-width: 320px;
    }
  }

.blog-item {
    background: var(--page-bg);
    color: var(--page-fg);
    padding: 4rem 1.5rem 5rem;
  }
  .blog-item .inner {
    max-width: 760px;
    margin: 0 auto;
  }
  .blog-item .date {
    font-size: 0.85rem;
    color: var(--muted-fg);
    margin: 0 0 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
  }
  .blog-item h1 {
    font-size: 2rem;
    line-height: 1.25;
    margin: 0 0 1.5rem;
    font-weight: 600;
  }
  .blog-item .intro {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--muted-fg);
    margin: 0 0 1.5rem;
  }
  .blog-item p {
    font-size: 1rem;
    line-height: 1.7;
    margin: 0 0 1.25rem;
  }
  .blog-item .note {
    background: var(--card-bg);
    color: var(--card-fg);
    border-left: 3px solid var(--primary-bg);
    padding: 1rem 1.25rem;
    margin: 2rem 0 0;
    font-size: 0.95rem;
    line-height: 1.6;
  }
  .blog-item .route {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--card-border);
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
  }
  .blog-item .route a {
    color: var(--primary-bg);
    text-decoration: none;
    font-size: 0.95rem;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
  }
  .blog-item .route a:hover {
    border-bottom-color: var(--primary-bg);
  }
  @media (max-width: 640px) {
    .blog-item {
      padding: 3rem 1.25rem 4rem;
    }
    .blog-item h1 {
      font-size: 1.6rem;
    }
    .blog-item .intro {
      font-size: 1rem;
    }
  }

.author {
    background: var(--page-bg);
    color: var(--page-fg);
    padding: 4rem 1.5rem;
  }

  .author .inner {
    max-width: 52rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
  }

  .author .media {
    width: 100%;
    border-radius: 0.5rem;
    overflow: hidden;
    background: var(--card-bg);
  }

  .author .media img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .author .bio h1 {
    font-size: 1.9rem;
    line-height: 1.25;
    font-weight: 600;
    margin: 0 0 1.25rem;
    letter-spacing: -0.01em;
  }

  .author .bio p {
    font-size: 1rem;
    line-height: 1.7;
    margin: 0 0 1.1rem;
    color: var(--page-fg);
  }

  .author .bio p:last-child {
    margin-bottom: 0;
  }

  .author .bio a {
    color: var(--brand-primary-bg, #4FC3F7);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: rgba(79, 195, 247, 0.4);
  }

  .author .bio a:hover {
    color: var(--brand-accent-bg, #81D4FA);
    text-decoration-color: rgba(129, 212, 250, 0.6);
  }

  @media (min-width: 640px) {
    .author {
      padding: 5rem 2rem;
    }

    .author .bio h1 {
      font-size: 2.2rem;
    }
  }

.contacts {
    background: var(--page-bg);
    color: var(--page-fg);
    padding: 4.5rem 1.5rem;
  }

  .contacts .inner {
    max-width: 720px;
    margin: 0 auto;
  }

  .contacts h2 {
    font-size: 1.75rem;
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 1rem 0;
    letter-spacing: -0.01em;
  }

  .contacts p {
    font-size: 1rem;
    line-height: 1.7;
    margin: 0 0 2.5rem 0;
    color: var(--muted-fg);
  }

  .contact-line {
    display: flex;
    flex-direction: column;
    padding: 1.25rem 0;
    border-top: 1px solid var(--card-border);
  }

  .contact-line:last-child {
    border-bottom: 1px solid var(--card-border);
  }

  .contact-label {
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted-fg);
    margin-bottom: 0.4rem;
  }

  .contact-value {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--page-fg);
  }

  .contact-link {
    color: var(--primary-bg);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
  }

  .contact-link:hover {
    border-bottom-color: var(--primary-bg);
  }

  @media (min-width: 640px) {
    .contacts {
      padding: 5rem 2rem;
    }

    .contacts h2 {
      font-size: 2rem;
    }

    .contact-line {
      flex-direction: row;
      align-items: baseline;
      gap: 2rem;
    }

    .contact-label {
      flex: 0 0 180px;
      margin-bottom: 0;
    }
  }

.contacts {
  background: var(--page-bg);
  color: var(--page-fg);
}

.form {
    background: var(--page-bg);
    color: var(--page-fg);
    padding: 64px 24px;
  }

  .form .inner {
    max-width: 640px;
    margin: 0 auto;
  }

  .form h2 {
    font-size: 1.75rem;
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 16px;
    letter-spacing: -0.01em;
  }

  .form p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 0 32px;
    color: var(--muted-fg);
  }

  .form form {
    border-top: 1px solid var(--card-border);
    padding-top: 28px;
  }

  .form .field {
    margin-bottom: 18px;
  }

  .form label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 6px;
  }

  .form input,
  .form select {
    width: 100%;
    box-sizing: border-box;
    padding: 10px 14px;
    font-size: 0.95rem;
    
    color: var(--page-fg);
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 6px;
    outline: none;
  }

  .form input:focus,
  .form select:focus {
    border-color: var(--primary-bg);
  }

  .form input::placeholder {
    color: var(--muted-fg);
    opacity: 0.7;
  }

  .form select {
    appearance: none;
    background-image: none;
  }

  .form button {
    display: inline-block;
    margin-top: 8px;
    padding: 12px 28px;
    font-size: 0.95rem;
    font-weight: 500;
    
    color: var(--primary-fg);
    background: var(--primary-bg);
    border: none;
    border-radius: 6px;
    cursor: pointer;
  }

  .form button:hover {
    background: var(--primary-hover);
  }

  @media (max-width: 480px) {
    .form {
      padding: 48px 16px;
    }

    .form h2 {
      font-size: 1.5rem;
    }
  }

.form {
  background: var(--inverse-bg);
  color: var(--inverse-fg);
}

.map {
      background: var(--page-bg);
      color: var(--page-fg);
      padding: 4rem 1.5rem;
    }
    .map .inner {
      max-width: 72rem;
      margin: 0 auto;
    }
    .map h2 {
      font-size: 1.8rem;
      font-weight: 600;
      line-height: 1.3;
      margin: 0 0 1.2rem;
    }
    .map p {
      font-size: 1rem;
      line-height: 1.7;
      margin: 0 0 1rem;
      max-width: 60rem;
    }
    .map .columns {
      margin-top: 2.5rem;
      display: flex;
      gap: 3rem;
      align-items: flex-start;
    }
    .map .column {
      flex: 1;
    }
    .map .column h3 {
      font-size: 1rem;
      font-weight: 600;
      margin: 0 0 0.6rem;
      color: var(--page-fg);
    }
    .map .column p {
      font-size: 0.95rem;
      line-height: 1.6;
      margin: 0;
      color: var(--muted-fg);
    }
    @media (max-width: 48rem) {
      .map .columns {
        flex-direction: column;
        gap: 1.8rem;
      }
    }

.map {
  background: var(--page-bg);
  color: var(--page-fg);
}

.policy-items {
      background: var(--page-bg);
      color: var(--page-fg);
      padding: 64px 24px 80px;
    }

    .policy-items .inner {
      max-width: 860px;
      margin: 0 auto;
    }

    .policy-items h1 {
      font-size: 1.9rem;
      line-height: 1.25;
      font-weight: 600;
      margin: 0 0 20px;
      letter-spacing: -0.01em;
    }

    .policy-items .intro {
      font-size: 1.05rem;
      line-height: 1.7;
      color: var(--muted-fg);
      margin: 0 0 48px;
      max-width: 720px;
    }

    .policy-items .entry {
      border-top: 1px solid var(--card-border);
      padding: 28px 0;
    }

    .policy-items .entry:last-child {
      border-bottom: 1px solid var(--card-border);
    }

    .policy-items h2 {
      font-size: 1.15rem;
      font-weight: 600;
      line-height: 1.4;
      margin: 0 0 10px;
    }

    .policy-items p {
      font-size: 0.95rem;
      line-height: 1.7;
      color: var(--muted-fg);
      margin: 0;
    }

    @media (max-width: 640px) {
      .policy-items {
        padding: 48px 20px 64px;
      }

      .policy-items h1 {
        font-size: 1.6rem;
      }

      .policy-items .intro {
        font-size: 1rem;
        margin-bottom: 36px;
      }
    }

.policy-items {
  background: var(--page-bg);
  color: var(--page-fg);
}

.terms-items {
            background: var(--page-bg);
            color: var(--page-fg);
            padding: 72px 24px 88px;
        }

        .terms-items .inner {
            max-width: 860px;
            margin: 0 auto;
        }

        .terms-items h2 {
            font-size: 2rem;
            font-weight: 600;
            line-height: 1.25;
            margin: 0 0 20px;
            letter-spacing: -0.01em;
        }

        .terms-items .inner > p {
            font-size: 1rem;
            line-height: 1.7;
            color: var(--muted-fg);
            margin: 0 0 48px;
            max-width: 720px;
        }

        .terms-items .terms-list {
            display: flex;
            flex-direction: column;
            gap: 36px;
        }

        .terms-items .terms-group {
            border-top: 1px solid var(--card-border);
            padding-top: 24px;
        }

        .terms-items .terms-group h3 {
            font-size: 1.05rem;
            font-weight: 600;
            line-height: 1.4;
            margin: 0 0 10px;
        }

        .terms-items .terms-group p {
            font-size: 0.95rem;
            line-height: 1.7;
            color: var(--muted-fg);
            margin: 0;
            max-width: 760px;
        }

.terms-items {
  background: var(--page-bg);
  color: var(--page-fg);
}

.thank {
            background: var(--gradient-hero-bg);
            color: var(--gradient-hero-fg);
            padding: 72px 24px;
        }
        .thank .inner {
            max-width: 720px;
            margin: 0 auto;
        }
        .thank h1 {
            font-size: 2rem;
            font-weight: 600;
            letter-spacing: -0.02em;
            margin: 0 0 20px 0;
            line-height: 1.2;
        }
        .thank .lead {
            font-size: 1.05rem;
            line-height: 1.65;
            margin: 0 0 16px 0;
            color: #C0C7D1;
        }
        .thank .note {
            font-size: 0.95rem;
            line-height: 1.6;
            margin: 0 0 28px 0;
            color: #C0C7D1;
        }
        .thank .route {
            font-size: 0.95rem;
            line-height: 1.6;
            margin: 0 0 18px 0;
            color: #C0C7D1;
        }
        .thank .path {
            display: flex;
            flex-wrap: wrap;
            gap: 12px 24px;
            padding-top: 20px;
            border-top: 1px solid #2A3441;
        }
        .thank .path a {
            color: #4FC3F7;
            text-decoration: none;
            font-size: 0.92rem;
            border-bottom: 1px solid transparent;
            transition: border-color 0.2s ease;
        }
        .thank .path a:hover {
            border-bottom-color: #4FC3F7;
        }
        @media (max-width: 600px) {
            .thank {
                padding: 48px 20px;
            }
            .thank h1 {
                font-size: 1.6rem;
            }
            .thank .path {
                flex-direction: column;
                gap: 10px;
            }
        }

.thank {
  background: var(--inverse-bg);
  color: var(--inverse-fg);
}

.next-step {
    background: var(--page-bg);
    color: var(--page-fg);
    padding: 96px 24px;
  }

  .next-step .inner {
    max-width: 720px;
    margin: 0 auto;
  }

  .next-step h2 {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.2;
    margin: 0 0 20px;
    letter-spacing: -0.01em;
  }

  .next-step p {
    font-size: 16px;
    line-height: 1.7;
    margin: 0 0 40px;
    color: var(--muted-fg);
  }

  .next-step .route {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    border-top: 1px solid var(--card-border);
    padding-top: 28px;
  }

  .next-step .action {
    display: inline-block;
    background: var(--primary-bg);
    color: var(--primary-fg);
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 15px;
    text-decoration: none;
    transition: background 0.2s ease;
  }

  .next-step .action:hover {
    background: var(--primary-hover);
  }

  .next-step .route a:not(.action) {
    color: var(--accent-bg);
    font-size: 15px;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
  }

  .next-step .route a:not(.action):hover {
    border-bottom-color: var(--accent-bg);
  }

.next-step {
  background: var(--page-bg);
  color: var(--page-fg);
}

.404 {
    background: var(--gradient-hero-bg);
    color: var(--gradient-hero-fg);
    padding: 6rem 1.5rem;
    min-height: 60vh;
    display: flex;
    align-items: center;
  }

  .404 .inner {
    max-width: 720px;
    margin: 0 auto;
    width: 100%;
  }

  .404 .code {
    font-size: 0.9rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--brand-primary-bg);
    margin: 0 0 1.5rem;
    font-weight: 600;
  }

  .404 h1 {
    font-size: 2.2rem;
    line-height: 1.25;
    margin: 0 0 1.25rem;
    font-weight: 600;
  }

  .404 .note {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--muted-fg);
    margin: 0 0 2.5rem;
    max-width: 60ch;
  }

  .404 .route {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
  }

  .404 .route a {
    display: inline-block;
    padding: 0.7rem 1.4rem;
    border-radius: 6px;
    font-size: 0.95rem;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.2s ease;
  }

  .404 .route a:first-child {
    background: var(--brand-primary-bg);
    color: var(--brand-primary-fg);
  }

  .404 .route a:first-child:hover {
    background: var(--brand-primary-hover);
  }

  .404 .route a:last-child {
    background: transparent;
    color: var(--gradient-hero-fg);
    border: 1px solid var(--card-border);
  }

  .404 .route a:last-child:hover {
    background: var(--card-bg);
  }

  @media (max-width: 640px) {
    .404 {
      padding: 4rem 1.25rem;
    }

    .404 h1 {
      font-size: 1.7rem;
    }

    .404 .route {
      flex-direction: column;
      align-items: flex-start;
    }
  }

.404 {
  background: var(--inverse-bg);
  color: var(--inverse-fg);
}