/* Sunflower Web CSS 
   Global ranges: <=314px | 315–590px | 591–1080px | >=1081px
   Component grids are content-driven inside those ranges. */
@layer reset, tokens, base, layout, components, responsive, preferences;
@layer reset {
  *, *::before, *::after {
    box-sizing: border-box;
  }
  html {
    scroll-behavior: smooth;
  }
  body, h1, h2, h3, p, ol, ul {
    margin: 0;
  }
  ol, ul {
    padding: 0;
  }
  img, svg {
    display: block;
    max-width: 100%;
  }
  button, input, select, textarea {
    font: inherit;
  }
}
@layer tokens {
  :root {
    --font: ui-sans-serif, system-ui, -apple-system, blinkmacsystemfont, "Segoe UI", sans-serif;
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lead: clamp(1.0625rem, 1rem + 0.22vw, 1.2rem);
    --h3: clamp(1.15rem, 1.12rem + 0.5vw, 1.2rem);
    --h2: clamp(1.45rem, 1.28rem + 1.3vw, 2rem);
    --h1: clamp(1.75rem, 1.35rem + 2.5vw, 2.5rem);
    --s1: 0.25rem;
    --s2: 0.5rem;
    --s3: 0.75rem;
    --s4: 1rem;
    --s5: 1.25rem;
    --s6: 1.5rem;
    --s7: 2rem;
    --s8: 2.5rem;
    --s9: 3rem;
    --s10: 4rem;
    --gutter: 1rem;
    --section-y: clamp(2rem, 6vw, 3rem);
    --container: 73.75rem;
    --text-width: 42rem;
    --radius-sm: 0.5rem;
    --radius: 0.875rem;
    --radius-lg: 1.25rem;
    --ease: 180ms ease;
  }
}
@layer base {
  html {
    min-width: 0;
    scroll-padding-top: 7rem;
  }
  body {
    min-width: 0;
    overflow-x: clip;
    background: var(--paper);
    color: var(--ink);
    font: 400 var(--text-base) / 1.62 var(--font);
    text-rendering: optimizelegibility;
  }
  body.nav-open {
    overflow: hidden;
  }
  h1, h2, h3 {
  color: var(--heading);
    font-weight: 700;
    line-height: 1.13;
    letter-spacing: -0.025em;
  }
  h1 {
    font-size: var(--h1);
  }
  h2 {
    font-size: var(--h2);
  }
  h3 {
    font-size: var(--h3);
    letter-spacing: -0.015em;
  }
  p {
    max-width: var(--text-width);
  }
  a {
    color: inherit;
    text-underline-offset: 0.2em;
    text-decoration-thickness: 0.08em;
  }
  button {
    color: inherit;
  }
  :focus-visible {
    outline: 3px solid var(--focus);
    outline-offset: 3px;
  }
  ::selection {
    background: var(--accent-soft);
    color: var(--heading);
  }
  [id] {
    scroll-margin-top: 7rem;
  }
}
@layer layout {
  .container {
    width: min(calc(100% - var(--gutter) - var(--gutter)), var(--container));
    margin-inline: auto;
  }
  .section {
    padding-block: var(--section-y);
  }
  .section--surface {
    background: var(--surface);
  }
  .section--tint {
  background: var(--tint);
}
  .section--dark {
    background: var(--green-950);
    color: var(--white);
  }
  .section--dark h2, .section--dark h3 {
    color: var(--white);
  }
  .section-heading {
    max-width: 48rem;
    margin: 0 auto clamp(1.5rem, 5vw, 2.25rem);
    text-align: center;
  }
  .section-heading > p:last-child {
    margin: 0 auto 0;
    color: var(--muted);
    font-size: var(--text-lead);
  }
  .section--dark .section-heading > p:last-child {
    color: var(--on-dark-muted);
  }
  .content-grid {
    display: grid;
    gap: var(--s4);
    align-items: center;
  }
  .content-copy > p:not(.eyebrow) {
    margin-top: var(--s4);
    color: var(--muted);
  }
}
@layer components {
  .skip-link {
    position: fixed;
    z-index: 1000;
    top: var(--s3);
    left: var(--s3);
    padding: var(--s3) var(--s4);
    border-radius: var(--radius-sm);
    background: var(--raised);
    color: var(--heading);
    font-weight: 700;
    transform: translateY(-180%);
  }
  .skip-link:focus {
    transform: none;
  }
  .visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    border: 0;
    clip-path: inset(50%);
    white-space: nowrap;
  }
  .top-strip {
    background: var(--green-950);
    color: var(--white);
    font-size: var(--text-sm);
  }
  .top-strip__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0 var(--s3);
    padding: 0.35rem 0;
  }
  .top-strip a {
    display: inline-flex;
    align-items: center;
    gap: var(--s2);
    text-decoration: none;
  }
  .top-strip i {
    color: var(--accent-on-dark);
    line-height: 1;
  }
  .site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: var(--header-bg);
  box-shadow: var(--shadow-sm);
}
  .header-layout {
    min-height: 4.75rem;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: var(--s4);
  }
  .brand {
    width: min(100%, 14rem);
    display: block;
    padding-block: var(--s3) var(--s2);
  }
  .brand picture {
    display: block;
  }
  .brand img {
    width: 100%;
    height: auto;
  }
  .nav-toggle {
    width: 2.75rem;
    height: 2.75rem;
    display: none;
    place-items: center;
    border: 2px solid var(--interactive);
    border-radius: 50%;
    background: var(--raised);
    color: var(--heading);
    cursor: pointer;
  }
  .nav-toggle i {
    font-size: 1.15rem;
    line-height: 1;
  }
  .primary-nav {
    grid-column: 1 / -1;
    padding-block: var(--s3) var(--s4);
    border-top: 1px solid var(--line);
  }
  .nav-list, .nav-submenu {
    list-style: none;
  }
  .nav-list {
    display: grid;
    gap: var(--s1);
  }
  .nav-list a, .nav-disclosure summary {
    min-height: 2rem;
    display: flex;
    align-items: center;
    padding: var(--s2);
    border-radius: var(--radius-sm);
    font-weight: 700;
    line-height: 1.25;
    text-decoration: none;
    max-width: fit-content;
  }
  .nav-list a:hover, .nav-list a[aria-current="page"], .nav-disclosure--current > summary, .nav-disclosure summary:hover {
    color: var(--interactive);
  }
  .nav-disclosure summary {
    justify-content: space-between;
    gap: var(--s1);
    cursor: pointer;
    list-style: none;
  }
  .nav-disclosure summary::-webkit-details-marker {
    display: none;
  }
  .nav-disclosure summary i {
    font-size: 0.75rem;
    line-height: 1;
    transition: transform var(--ease);
  }
  .nav-disclosure[open] summary i {
    transform: rotate(180deg);
  }
  .nav-submenu {
    display: grid;
    gap: var(--s1);
  }
  .nav-submenu a {
    font-size: var(--text-sm);
    font-weight: 600;
  }
  .nav-list .nav-cta {
    justify-content: center;
    margin-top: var(--s2);
    background: var(--green-900);
    color: var(--white);
    text-align: center;
  }
  .nav-list .nav-cta:hover, .nav-list .nav-cta[aria-current="page"] {
    background: var(--green-950);
    color: var(--white);
  }
  .js .nav-toggle {
    display: grid;
  }
  .js .primary-nav {
    position: absolute;
    top: calc(100% - 5px);
    right: 1rem;
    left: auto;
    display: none;
    max-height: calc(100vh - 4.75rem);
    max-height: calc(100dvh - 4.75rem);
    overflow-y: auto;
    padding: 0 var(--s3) var(--s3);
    border-top: 0;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    box-shadow: var(--shadow);
    width: 9.5rem;
    border-top: 5px solid var(--interactive);
  }
  .js .primary-nav.is-open {
    display: block;
  }
  .js .nav-list {
    width: min(100%, var(--container));
    margin-inline: auto;
  }
  .button-row {
    display: flex;
    flex-wrap: wrap;
    gap: var(--s3);
    justify-content: center;
  }
  .button {
    min-height: 3rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--s2);
    padding: 0.72rem 1.25rem;
    border: 2px solid transparent;
    border-radius: 999px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    transition: transform var(--ease), background-color var(--ease), color var(--ease);
  }
  .button i {
    line-height: 1;
  }
  .button:hover {
    transform: translateY(-2px);
  }
  .button--primary {
    background: var(--green-900);
    color: var(--white);
  }
  .button--primary:hover {
    background: var(--green-950);
  }
  .button--outline {
    border-color: var(--interactive);
    color: var(--interactive);
  }
  .button--outline:hover {
    background: var(--green-900);
    color: var(--white);
  }
  .button--light {
    background: var(--white);
    color: var(--green-950);
  }
  .button--light:hover {
    background: var(--button-light-hover);
  }
  .button--outline-light {
    border-color: var(--white);
    color: var(--white);
  }
  .button--outline-light:hover {
    background: var(--white);
    color: var(--green-950);
  }
  .eyebrow {
    display: inline-flex;
    align-items: start;
    gap: var(--s2);
    color: var(--interactive);
    font-size: var(--text-xs);
    font-weight: 800;
    letter-spacing: 0.13em;
    line-height: 1.35;
    text-transform: uppercase;
  }
  .eyebrow i {
  flex: 0 0 auto;
  color: inherit;
  line-height: 1;
  margin-top: 0.15rem;
}
  .section--dark .eyebrow, .cta .eyebrow, .problem-card .eyebrow, .contact-card .eyebrow {
    color: var(--accent-on-dark);
  }
  .section--dark .eyebrow i, .cta .eyebrow i, .contact-card .eyebrow i {
    color: inherit;
  }
  .hero {
    padding-block: clamp(1.25rem, 5vw, 2.5rem) clamp(1.5rem, 5vw, 3rem);
    background: linear-gradient(135deg, var(--paper), var(--hero-end));
  }
  .hero-grid {
    display: grid;
    gap: clamp(var(--s4), 6vw, var(--s5));
    align-items: center;
  }
  .hero-copy {
    text-align: center;
  }
  .hero-lead {
    margin: var(--s3) auto 0;
    color: var(--muted);
    font-size: var(--text-lead);
  }
  .hero-copy .button-row {
    justify-content: center;
    margin-top: var(--s5);
  }
  .trust-list {
    margin-top: var(--s5);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--s1) var(--s6);
    color: var(--muted);
    font-size: var(--text-sm);
    list-style: none;
  }
  .trust-list li {
    display: inline-flex;
    align-items: center;
    gap: var(--s2);
  }
  .trust-list i {
    color: var(--accent-text);
    line-height: 1;
  }
  .problem-card {
    width: min(100%, 34.063rem);
    margin-inline: auto;
    padding: var(--s5);
    border-radius: var(--radius-lg);
    background: var(--green-900);
    color: var(--white);
    box-shadow: var(--shadow);
    container-name: problem-card;
    container-type: inline-size;
  }
  .problem-card h2 {
    color: var(--white);
    font-size: clamp(1.65rem, 1.35rem + 1.2vw, 2.35rem);
  }
  .problem-list {
    margin-top: var(--s3);
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: var(--s3);
    list-style: none;
  }
  .problem-list > li {
    min-width: 0;
    display: grid;
    grid-template-columns: 1.875rem minmax(0, 1fr);
    align-items: center;
    gap: var(--s3);
    padding: var(--s3);
    border: 1px solid var(--on-dark-border);
    border-radius: var(--radius);
    background: var(--on-dark-soft);
    line-height: 1.2;
  }
  /* Two columns when they fit comfortably. */
  @container problem-card (width >=20rem) {
    .problem-list {
      grid-template-columns:
        repeat(2, minmax(min-content, max-content));
    }
  }
  .problem-list__icon {
    width: 1.875rem;
    height: 1.875rem;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--on-dark-icon);
    color: var(--accent-on-dark);
    font-size: 0.875rem;
    line-height: 1;
  }
  .problem-list__icon i, .problem-list__icon i::before {
    display: block;
    width: 1em;
    line-height: 1;
    text-align: center;
  }
  .problem-card__note {
    margin-top: var(--s3);
    color: var(--on-dark-muted);
    font-size: var(--text-sm);
    line-height: 1.5;
  }
  .icon-box {
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    line-height: 1;
  }
  .icon-box i, .icon-box i::before {
    display: block;
    width: 1em;
    line-height: 1;
    text-align: center;
  }
  .proof-band {
    border-block: 1px solid var(--line);
    background: var(--raised);
  }
  .proof-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 12rem), 1fr));
    gap: var(--s4);
    padding-block: var(--s5);
  }
  .proof-item {
    min-width: 0;
    min-height: 5rem;
    display: grid;
    grid-template-columns: 2.25rem minmax(0, 1fr);
    align-items: start;
    gap: var(--s3);
    padding: var(--s4);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
  }
  .proof-item strong, .proof-item span {
    display: block;
  }
  .proof-item strong {
    color: var(--heading);
    line-height: 1.2;
  }
  .proof-item p > span {
    color: var(--muted);
    font-size: var(--text-sm);
    line-height: 1.3;
  }
  .icon-box--proof {
    width: 2.25rem;
    height: 2.25rem;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--accent-soft);
    color: var(--accent-text);
    line-height: 1;
  }
  .icon-box--proof > i {
    --fa-display: grid;
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    line-height: 1;
  }
  .icon-box--proof > i::before {
    width: auto;
    line-height: 1;
  }
  .card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 15.6rem), 1fr));
    gap: var(--s6);
  }
  .feature-card, .plan-card {
    min-width: 0;
    min-height: 100%;
    padding: var(--s4);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--raised);
    box-shadow: var(--shadow-sm);
  }
  .feature-card {
    display: flex;
    flex-direction: column;
  }
  .feature-card__heading {
    display: grid;
    grid-template-columns: 3rem minmax(0, 1fr);
    align-items: center;
    gap: var(--s4);
  }
  .icon-box--feature {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background: var(--tint);
    color: var(--interactive);
    font-size: 1.15rem;
  }
  .feature-card__body {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--s2);
    margin-top: var(--s2);
  }
  .feature-card__body > p, .plan-card > p:not(.plan-label) {
    color: var(--muted);
  }
  .arrow-list {
    display: grid;
    color: var(--muted);
    list-style: none;
  }
  .feature-card .arrow-list {
    width: 100%;
    grid-template-columns:
      repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
    gap: 0 var(--s5);
  }
  .arrow-list li {
    display: grid;
    grid-template-columns: 1rem minmax(0, 1fr);
    align-items: start;
    gap: var(--s2);
  }
  .arrow-list li::before {
    content: "\f061";
    margin-top: 0.55rem;
    color: var(--accent-text);
    font-family: "Font Awesome 6 Free", sans-serif;
    font-size: 0.65em;
    font-weight: 900;
    line-height: 1;
    text-align: center;
  }
  .text-link {
    display: inline-flex;
    align-items: center;
    gap: var(--s2);
    margin-top: auto;
    color: var(--interactive);
    font-weight: 700;
    text-decoration: none;
  }
  .text-link i {
    flex: 0 0 auto;
    line-height: 1;
    transition: transform var(--ease);
  }
  .text-link:hover i {
    transform: translateX(0.2rem);
  }
  .steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 15.5rem), 1fr));
    gap: var(--s4);
    counter-reset: steps;
    max-width: 46rem;
    margin-inline: auto;
  }
  .step {
    min-width: 0;
    min-height: 100%;
    display: grid;
    grid-template-columns: 2.5rem minmax(0, 1fr);
    grid-template-rows: max-content max-content;
    align-items: start;
    align-content: start;
    gap: 0 var(--s4);
    padding: var(--s4);
    border: 1px solid var(--on-dark-border);
    border-radius: var(--radius);
    counter-increment: steps;
  }
  .step::before {
    content: "0"counter(steps);
    grid-column: 1;
    grid-row: 1 / 3;
    width: 2.5rem;
    height: 2.5rem;
    display: grid;
    place-items: center;
    align-self: start;
    margin: 0;
    border: 2px solid currentcolor;
    border-radius: 50%;
    color: var(--accent-on-dark);
    font-weight: 800;
    line-height: 1;
  }
  .step h3 {
    grid-column: 2;
    grid-row: 1;
  }
  .step p {
    grid-column: 2;
    grid-row: 2;
    color: var(--on-dark-muted);
    line-height: 1.4;
  }
  .plan-card {
    display: flex;
    flex-direction: column;
  }
  .plan-card--featured {
    border-color: var(--interactive);
    box-shadow: 0 0 0 2px var(--interactive), var(--shadow-sm);
  }
  .plan-label {
    color: var(--accent-text);
    font-size: var(--text-xs);
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }
  .plan-card h3, .plan-card > p:not(.plan-label) {
    margin-top: var(--s3);
  }
  .plan-card .arrow-list {
    margin-block: var(--s4) var(--s5);
  }
  .plan-card .button {
    align-self: flex-start;
    margin-top: auto;
  }
  .content-grid {
    max-width: 36.5rem;
    margin-inline: auto;
  }
  .balance-panel {
    min-width: 0;
    padding: var(--s4);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--raised);
    box-shadow: var(--shadow);
  }
  .balance-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 11rem), 1fr));
    gap: var(--s4);
    list-style: none;
  }
  .balance-list li {
    min-width: 0;
    display: grid;
    grid-template-columns: 2.5rem minmax(0, 1fr);
    align-items: start;
    gap: var(--s3);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: var(--s3);
  }
  .icon-box--round {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: var(--tint);
    color: var(--interactive);
  }
  .balance-list strong, .balance-list p > span {
    display: block;
  }
  .balance-list strong {
    color: var(--heading);
    line-height: 1.3;
  }
  .balance-list p > span {
    color: var(--muted);
    font-size: var(--text-sm);
    line-height: 1.45;
  }
  .cta {
    background: var(--green-900);
    color: var(--white);
  }
  .cta__grid {
    display: grid;
    gap: var(--s6);
    align-items: center;
    max-width: fit-content;
    text-align: center;
  }
  .cta h2 {
    color: var(--white);
  }
  .cta p:not(.eyebrow) {
    margin-top: var(--s3);
    color: var(--on-dark-muted);
  }
  .page-hero {
    padding-block: clamp(2.75rem, 6vw, 4.75rem);
    border-bottom: 1px solid var(--line);
    background: var(--surface);
    text-align: center;
  }
  .page-hero__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .page-hero h1 {
    max-width: 20ch;
    margin-top: var(--s3);
  }
  .page-hero__lead {
    margin-top: var(--s4);
    color: var(--muted);
    font-size: var(--text-lead);
  }
  .page-hero .button-row {
    justify-content: center;
    margin-top: var(--s5);
  }
  .breadcrumbs {
    width: 100%;
    margin-bottom: var(--s5);
    color: var(--muted);
    font-size: var(--text-sm);
    text-align: left;
  }
  .breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    gap: var(--s1) var(--s2);
    list-style: none;
  }
  .breadcrumbs li {
    display: inline-flex;
    align-items: center;
    gap: var(--s2);
  }
  .breadcrumbs li + li::before {
    content: "/";
    color: var(--line);
  }
  .breadcrumbs a {
    min-height: 1.75rem;
    display: inline-flex;
    align-items: center;
  }
  .contact-card {
    display: grid;
    gap: var(--s4);
    padding: var(--s5);
    border-radius: var(--radius-lg);
    background: var(--green-950);
    color: var(--white);
    box-shadow: var(--shadow);
    max-width: 34rem;
    margin: 0 auto;
  }
  .contact-card-content {
    text-align: center;
  }
  .contact-card h2 {
    color: var(--white);
  }
  .contact-card > div > p:not(.eyebrow) {
    margin-top: var(--s3);
    color: var(--on-dark-muted);
  }
  .contact-methods {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: center;
    gap: var(--s3);
  }
  .contact-method {
    flex: 0 0 auto;
    width: max-content;
    max-width: 100%;
    min-height: 4.25rem;
    display: grid;
    grid-template-columns: max-content;
    justify-items: center;
    padding: var(--s3);
    border: 1px solid var(--on-dark-border-strong);
    border-radius: var(--radius-sm);
    text-align: center;
    text-decoration: none;
  }
  a.contact-method:hover {
    border-color: var(--accent-on-dark);
    background: var(--on-dark-soft-hover);
  }
  .icon-box--contact {
    width: 1.5rem;
    height: 1.5rem;
    align-self: start;
    color: var(--accent-on-dark);
  }
  .contact-method small, .contact-method strong {
    display: block;
    white-space: nowrap;
  }
  .contact-method small {
    color: var(--on-dark-muted);
  }
  .media-split {
    display: grid;
    gap: clamp(var(--s7), 6vw, var(--s10));
    align-items: center;
  }
  .media-split__copy h2 {
    margin-top: var(--s3);
  }
  .media-split__copy > p:not(.eyebrow) {
    margin-top: var(--s4);
    color: var(--muted);
  }
  .media-frame {
    display: block;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--surface);
  }
  .media-frame img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  .testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 18rem), 1fr));
    gap: var(--s6);
  }
  .testimonial {
    min-height: 100%;
    padding: var(--s6);
    margin: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--raised);
    box-shadow: var(--shadow-sm);
  }
  .testimonial blockquote p {
    color: var(--ink);
    font-size: var(--text-lead);
  }
  .testimonial figcaption {
    margin-top: var(--s5);
    color: var(--muted);
    font-size: var(--text-sm);
  }
  .testimonial figcaption strong, .testimonial figcaption span {
    display: block;
  }
  .testimonial figcaption strong {
    color: var(--heading);
  }
  .faq-list {
    max-width: 50rem;
    display: grid;
    gap: var(--s3);
    margin-inline: auto;
  }
  .faq-item {
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--raised);
  }
  .faq-item summary {
    min-height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--s4);
    padding: var(--s3) var(--s4);
    color: var(--heading);
    font-weight: 700;
    cursor: pointer;
    list-style: none;
  }
  .faq-item summary::-webkit-details-marker {
    display: none;
  }
  .faq-item summary i {
    flex: 0 0 auto;
    color: var(--interactive);
    line-height: 1;
    transition: transform var(--ease);
  }
  .faq-item[open] summary i {
    transform: rotate(45deg);
  }
  .faq-item__answer {
    padding: 0 var(--s4) var(--s4);
    color: var(--muted);
  }
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
    gap: var(--s5);
  }
  .gallery-item {
    margin: 0;
  }
  .gallery-item figcaption {
    margin-top: var(--s2);
    color: var(--muted);
    font-size: var(--text-sm);
  }
  .site-footer {
    padding-top: var(--s9);
    background: var(--footer);
    color: var(--on-dark-muted);
    font-size: 0.9375rem;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: fit-content(100%);
    justify-content: center;
    align-items: start;
    gap: var(--s7);
  }
  .footer-brand {
    width: auto;
    max-width: 100%;
    text-align: left;
  }
  .footer-brand img {
    width: min(100%, 15.5rem);
    height: auto;
  }
  .footer-nav-group {
    width: max-content;
    max-width: 100%;
    display: grid;
    grid-template-columns: max-content;
    align-items: start;
    justify-self: start;
    gap: var(--s4);
  }
  .footer-nav {
    max-width: 100%;
    padding-inline-start: 0;
    text-align: left;
  }
  .site-footer a[href^="mailto:"] {
    white-space: nowrap;
    overflow-wrap: normal;
  }
  .site-footer h2 {
    color: var(--white);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }
  .site-footer ul {
    margin-top: var(--s2);
    font-size: 0.75rem;
    line-height: 1.45;
    list-style: none;
  }
  .site-footer li, .site-footer a {
    overflow-wrap: anywhere;
  }
  .site-footer li + li {
    margin-top: var(--s1);
  }
  .site-footer a {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
  }
  .site-footer a:hover {
    color: var(--white);
    text-decoration: underline;
  }
  .footer-bottom {
    min-height: 3.25rem;
    margin-top: var(--s8);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: var(--s3);
    border-top: 1px solid var(--on-dark-border-subtle);
    font-size: 0.8125rem;
    max-width: 45.938rem;
  }
  .footer-bottom i {
    margin-inline-start: var(--s1);
    line-height: 1;
  }
  .footer-bottom a {
    color: var(--accent-on-dark);
  }
}
@layer responsive {
  /* Range 1: very narrow phones — up to 314px */
  @media (width <=314.98px) {
    :root {
      --gutter: 0.625rem;
      --section-y: 2rem;
      --text-base: 0.9375rem;
      --text-lead: 1rem;
      --h3: 1.15rem;
      --h2: clamp(1.5rem, 10vw, 1.75rem);
      --h1: clamp(1.75rem, 13vw, 2rem);
    }
    .header-layout {
      min-height: 4rem;
      gap: var(--s2);
    }
    .brand {
      width: min(100%, 9.5rem);
    }
    .nav-toggle {
      width: 2.375rem;
      height: 2.375rem;
    }
    .js .primary-nav {
      max-height: calc(100vh - 4rem);
      max-height: calc(100dvh - 4rem);
    }
    .button-row, .button {
      width: 100%;
    }
    .button {
      min-height: 2.75rem;
      padding-inline: var(--s3);
      font-size: var(--text-sm);
    }
    .hero, .page-hero {
      padding-block: 2.25rem;
    }
    .hero-copy .button-row, .trust-list {
      margin-top: var(--s4);
    }
    .trust-list {
      display: grid;
      justify-content: start;
      text-align: left;
    }
    .problem-card {
      padding: var(--s4);
    }
    .problem-card__note {
      margin-inline-start: 0;
      text-align: center;
    }
    .feature-card__heading {
      grid-template-columns: 2.5rem minmax(0, 1fr);
      gap: var(--s3);
    }
    .icon-box--feature {
      width: 2.5rem;
      height: 2.5rem;
      font-size: 1rem;
    }
    .step {
      padding: var(--s4) 0;
      border: 0;
      border-top: 1px solid var(--on-dark-border);
      border-radius: 0;
    }
    .plan-card .button {
      width: 100%;
      align-self: stretch;
    }
  }
  @media (width <=329.98px) {
    .top-strip {
      display: none;
    }
  }
  @media (315px <=width <=400px) {
    .hero-copy .eyebrow > span {
      max-width: 15.5rem;
    }
  }
  /* Range 2: phones — 315px to 590px */
  @media (315px <=width <=590px) {
    :root {
      --gutter: clamp(0.875rem, 4vw, 1.25rem);
      --section-y: 2.25rem;
      --text-lead: clamp(1rem, 2.6vw, 1.125rem);
      --h3: clamp(1.1rem, 4.5vw, 1.3rem);
      --h2: clamp(1.35rem, 6.5vw, 1.6rem);
      --h1: clamp(1.75rem, 8vw, 2.25rem);
    }
    .top-strip a {
      justify-content: center;
    }
    .contact-card > div > p:not(.eyebrow) {
      margin-inline: auto;
    }
    .contact-method strong {
      font-size: 0.9375rem;
    }
    .steps-grid {
      max-width: 25.938rem;
      margin-inline: auto;
    }
    .footer-brand img {
      width: min(100%, 13.5rem);
    }
  }
  /* Mobile and tablet navigation separators */
  @media (width <=1080px) {
    .nav-list, .nav-submenu {
      gap: 0;
    }
    .nav-list > li:not(:last-child) {
      border-bottom: 1px solid var(--line);
    }
    /*
     * Contact is the final item and has no bottom border.
     */
    .nav-list > li:last-child {
      padding-bottom: 0;
      padding-top: var(--s3);
    }
    .nav-list > li:first-child {
      padding-top: 0;
    }
    /*
     * Keep active links, the Services control, and Contact
     * as compact rounded elements instead of full-width bars.
     */
    .nav-list > li > a, .nav-disclosure > summary, .nav-submenu > li > a {
      width: fit-content;
      max-width: 100%;
    }
    /*
     * When Services is open, this border appears beneath
     * the Services heading.
     */
    .nav-submenu {
      padding: 0;
      border-top: 1px solid var(--line);
    }
    /*
     * All Services and Website Updates receive borders.
     * The final dropdown item does not receive its own border.
     */
    .nav-submenu > li:not(:last-child) {
      border-bottom: 1px solid var(--line);
    }
    .nav-submenu > li:last-child {
      padding-bottom: 0;
    }
    /*
     * The Contact row now supplies its spacing, so the
     * button does not need an additional top margin.
     */
    .nav-list .nav-cta {
      margin-top: 0;
      margin-inline: auto;
    }
  }
  /* Range 3: tablets and compact desktops — 591px to 1080px */
  @media (591px <=width <=1080px) {
    :root {
      --gutter: clamp(1.5rem, 4vw, 2.25rem);
      --section-y: 1.8rem 2.2rem;
      --text-lead: 1.125rem;
      --h3: clamp(1.25rem, 1.05rem + 0.65vw, 1.5rem);
      --h2: clamp(1.5rem, 1.45rem + 1.25vw, 2rem);
      --h1: clamp(1.8rem, 2rem + 1.7vw, 2.3rem);
    }
    .header-layout {
      min-height: 5rem;
    }
    .brand {
      width: min(100%, 15rem);
    }
    .js .primary-nav {
      max-height: calc(100vh - 5rem);
      max-height: calc(100dvh - 5rem);
    }
    .hero-copy {
      max-width: 48rem;
      margin-inline: auto;
    }
  }
  /* Range 4: full desktop — 1081px and above */
  @media (width >=1081px) {
    :root {
      --gutter: 2rem;
      --h1: clamp(2.25rem, 1.45rem + 1.4vw, 2.5rem);
    }
    .top-strip__inner {
      min-height: 2.5rem;
      gap: 0 var(--s6);
      padding: 0;
    }
    .top-strip a {
      min-height: 2.5rem;
    }
    .header-layout {
      min-height: 5.75rem;
      grid-template-columns: minmax(14rem, 17rem) minmax(0, 1fr);
      gap: var(--s7);
    }
    .brand {
      width: 17rem;
    }
    .js .nav-toggle {
      display: none;
    }
    .primary-nav, .js .primary-nav {
      position: static;
      grid-column: 2;
      display: block;
      max-height: none;
      overflow: visible;
      padding: 0;
      border: 0;
      background: transparent;
      box-shadow: none;
      width: auto;
    }
    .nav-list, .js .nav-list {
      width: auto;
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: var(--s1);
      margin: 0;
    }
    .nav-list a, .nav-disclosure summary {
      min-height: 2rem;
      max-width: none;
      padding-inline: var(--s3);
      font-size: var(--text-sm);
    }
    .nav-disclosure {
      position: relative;
    }
    .nav-submenu {
      position: absolute;
      z-index: 10;
      top: calc(100% + var(--s2));
      left: 0;
      width: max-content;
      gap: 0;
      padding: 0 var(--s2);
      border: 1px solid var(--line);
      border-radius: var(--radius-sm);
      background: var(--paper);
      box-shadow: var(--shadow);
    }
    .nav-submenu > li > a {
      padding-block: var(--s3);
      white-space: normal;
      border-bottom: 1px solid var(--line);
      border-radius: 0;
    }
    .nav-submenu > li:last-child > a {
      border-bottom: 0;
    }
    .nav-list .nav-cta {
      margin: 0 0 0 var(--s2);
      padding-inline: var(--s4);
    }
    .hero-grid {
      grid-template-columns: minmax(0, 1fr) 34rem;
    }
    .hero-copy {
      text-align: left;
    }
    .hero-copy h1, .hero-lead {
      margin-inline: 0;
    }
    .hero-copy h1 {
      max-width: 100%;
    }
    .hero-copy .button-row, .trust-list {
      justify-content: flex-start;
    }
    .content-grid {
      grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
      max-width: none;
    }
    .media-split {
      grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    }
    .media-split--reverse .media-split__media {
      grid-column: 1;
      grid-row: 1;
    }
    .media-split--reverse .media-split__copy {
      grid-column: 2;
    }
    .hero-copy .eyebrow {
      margin-inline: 0;
    }
    .proof-item {
      align-items: center;
    }
  }
  @media (width >=890px) {
    .content-grid {
      grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
      max-width: none;
    }
  }
  @media (591px <=width <=799px) {
    .steps-grid {
      max-width: 29.063rem;
      margin-inline: auto;
    }
  }
  @media (393px <=width <=691px) {
    .contact-methods {
      max-width: 17rem;
      margin-inline: auto;
    }
    .contact-methods .email {
      max-width: 16rem;
      justify-content: center;
      width: 100%;
    }
  }
  @media (300px <=width <=392px) {
    .contact-methods .phone, .contact-methods .hours {
      max-width: 13.063rem;
      justify-content: center;
      width: 100%;
    }
  }
  @media (width <=356px) {
    .footer-bottom {
      min-height: 0;
      padding-block: var(--s4);
      flex-direction: column;
      flex-wrap: nowrap;
      align-items: center;
      justify-content: center;
      gap: 0;
      text-align: center;
    }
    .footer-bottom > p, .footer-bottom > a {
      width: 100%;
    }
    .footer-bottom > a {
      justify-content: center;
    }
  }
  @media (315px <=width <27rem) {
    .footer-grid {
      grid-template-columns:
        minmax(0, 1fr) max-content minmax(0, 1fr) max-content minmax(0, 1fr);
      justify-content: stretch;
      align-items: start;
      gap: var(--s4);
    }
    .footer-brand {
      grid-column: 2 / 5;
      grid-row: 1;
      justify-self: stretch;
    }
    .footer-nav-group {
      display: contents;
    }
    .footer-nav-group > :nth-child(1) {
      grid-column: 2;
      grid-row: 2;
    }
    .footer-nav-group > :nth-child(2) {
      grid-column: 4;
      grid-row: 2;
    }
    .footer-nav-group > :nth-child(3) {
      grid-column: 2 / 5;
      grid-row: 3;
      justify-self: start;
    }
  }
  @media (27rem <=width <650px) {
    .footer-grid {
      grid-template-columns: repeat(3, max-content);
      justify-content: space-evenly;
      align-items: start;
      gap: var(--s4);
    }
    .footer-brand {
      width: 15.5rem;
      max-width: 100%;
      grid-column: 1 / -1;
      grid-row: 1;
      justify-self: start;
    }
    .footer-nav-group {
      display: contents;
    }
    .footer-nav-group > :nth-child(1) {
      grid-column: 1;
      grid-row: 2;
    }
    .footer-nav-group > :nth-child(2) {
      grid-column: 2;
      grid-row: 2;
    }
    .footer-nav-group > :nth-child(3) {
      grid-column: 3;
      grid-row: 2;
    }
  }
  @media (width >=475px) {
    .footer-bottom {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
      justify-content: stretch;
    }
    .footer-bottom > p {
      grid-column: 2;
      text-align: center;
    }
    .footer-bottom > a {
      grid-column: 3;
      justify-self: end;
    }
  }
  @media (width >=650px) {
    .footer-grid {
      max-width: 45.938rem;
      display: grid;
      grid-template-columns:
        minmax(0, 15.5rem) repeat(3, max-content);
      align-items: start;
      justify-content: space-between;
      gap: 0 var(--s4);
    }
    .footer-brand {
      width: 100%;
      max-width: 15.5rem;
    }
    .footer-nav-group {
      display: contents;
    }
  }
}
@layer preferences {
  @media (prefers-reduced-motion: reduce) {
    html {
      scroll-behavior: auto;
    }
    *, *::before, *::after {
      scroll-behavior: auto;
      transition-duration: 0.01ms;
      animation-duration: 0.01ms;
      animation-iteration-count: 1;
    }
  }
  @media (prefers-contrast: more) {
    :root {
      --line: #66736d;
    }
    .feature-card, .plan-card, .button, .contact-method {
      border-width: 2px;
    }
  }
  @media (forced-colors: active) {
    .icon-box, .problem-list__icon {
      border: 1px solid currentcolor;
    }
    .button, .nav-toggle {
      forced-color-adjust: none;
    }
  }
  @media print {
    :root {
      color-scheme: light;
      --accent-text: #000;
      --accent-on-dark: #000;
      --accent-soft: #fff;
      --focus: #000;
      --ink: #000;
      --muted: #000;
      --line: #777;
      --paper: #fff;
      --surface: #fff;
      --white: #000;
      --heading: #000;
      --raised: #fff;
      --tint: #fff;
      --interactive: #000;
      --hero-end: #fff;
      --on-dark-muted: #000;
      --on-dark-border: #777;
      --on-dark-border-strong: #777;
      --shadow-sm: none;
      --shadow: none;
    }
    .top-strip, .site-header, .button-row, .cta, .site-footer, .breadcrumbs {
      display: none;
    }
    body {
      background: #fff;
      color: #000;
      font-size: 11pt;
    }
    .hero, .section, .section--dark, .section--tint, .page-hero {
      padding-block: 1.25rem;
      background: #fff;
      color: #000;
    }
    h1, h2, h3, .section--dark h2, .section--dark h3, .section--dark .section-heading > p:last-child, .step p, .eyebrow, .eyebrow i {
      color: #000;
    }
    .feature-card, .plan-card, .balance-panel, .problem-card, .step, .contact-card {
      break-inside: avoid;
      border: 1px solid #777;
      background: #fff;
      color: #000;
      box-shadow: none;
    }
    a[href]::after {
      content: " ("attr(href) ")";
      font-size: 0.85em;
      font-weight: 400;
    }
  }
}