/* ==========================================================================
   MYTHFORGE — Apple-inspired design system
   Light, type-led, generous whitespace. Tokens live in :root.
   ========================================================================== */

:root{
  /* Neutrals */
  --white:        #ffffff;
  --gray-50:      #fbfbfd;
  --gray-100:     #f5f5f7;
  --gray-200:     #e8e8ed;
  --gray-300:     #d2d2d7;
  --gray-500:     #86868b;
  --gray-600:     #6e6e73;
  --ink:          #1d1d1f;
  --black:        #000000;

  /* Accents */
  --blue:         #0071e3;
  --blue-hover:   #0077ed;
  --link:         #0066cc;
  --link-dark:    #2997ff;

  /* Surfaces */
  --on-dark:      #f5f5f7;
  --on-dark-soft: #86868b;

  /* Shape */
  --radius:       18px;
  --radius-lg:    28px;
  --pill:         980px;

  /* Layout */
  --container:    980px;
  --container-wide: 1400px;
  --gutter:       clamp(20px, 4.6vw, 40px);
  --section-y:    clamp(72px, 9vw, 132px);

  /* Type */
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text",
          "Inter", "Segoe UI", Roboto, "Helvetica Neue", Arial,
          "PingFang SC", "Microsoft YaHei", sans-serif;

  --ease: cubic-bezier(.28,.11,.32,1);
}

/* --------------------------------------------------------------- reset --- */
*,*::before,*::after{ box-sizing:border-box; }
html{ -webkit-text-size-adjust:100%; scroll-behavior:smooth; }
body{
  margin:0;
  background:var(--white);
  color:var(--ink);
  font-family:var(--font);
  font-size:17px;
  line-height:1.47;
  letter-spacing:-.022em;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  overflow-x:hidden;
}
body.is-locked{ overflow:hidden; }
img,svg,video{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
button,input,textarea,select{ font:inherit; color:inherit; }
ul{ margin:0; padding:0; list-style:none; }
p{ margin:0 0 1em; }
p:last-child{ margin-bottom:0; }
h1,h2,h3,h4{ margin:0; font-weight:600; letter-spacing:-.012em; line-height:1.08; }
::selection{ background:var(--blue); color:#fff; }

/* --------------------------------------------------------- typography --- */
.hero-title{
  font-size:clamp(2.6rem, 6.6vw, 5.2rem);
  font-weight:600;
  letter-spacing:-.018em;
  line-height:1.04;
}
.section-title{
  font-size:clamp(1.9rem, 4.4vw, 3.4rem);
  font-weight:600;
  letter-spacing:-.014em;
}
.tile-title{
  font-size:clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight:600;
  letter-spacing:-.014em;
}
.h4{ font-size:1.25rem; font-weight:600; }

/* Apple's two-tone headline: dark lead-in, grey remainder. */
.dim{ color:var(--gray-500); }
.on-dark .dim{ color:var(--on-dark-soft); }

.lede{
  font-size:clamp(1.125rem, 1.9vw, 1.4rem);
  line-height:1.4;
  letter-spacing:-.016em;
  color:var(--gray-600);
}
.on-dark .lede{ color:var(--on-dark-soft); }

.eyebrow{
  display:block;
  font-size:.875rem;
  font-weight:600;
  letter-spacing:-.01em;
  color:var(--gray-500);
  margin-bottom:14px;
}
.eyebrow--blue{ color:var(--link); }
.muted{ color:var(--gray-600); }
.small{ font-size:.8125rem; line-height:1.45; letter-spacing:-.01em; }
.on-dark .muted{ color:var(--on-dark-soft); }

/* -------------------------------------------------------------- layout --- */
.container{
  width:100%; max-width:var(--container);
  margin-inline:auto; padding-inline:var(--gutter);
}
.container--wide{ max-width:var(--container-wide); }
.section{ padding-block:var(--section-y); }
.section--tight{ padding-block:clamp(48px,6vw,84px); }
.center{ text-align:center; }

.section-head{ max-width:820px; }
.section-head--center{ margin-inline:auto; text-align:center; }
.section-head .lede{ margin-top:22px; }

.grid{ display:grid; gap:clamp(16px,2vw,24px); }
.grid--2{ grid-template-columns:repeat(2,1fr); }
.grid--3{ grid-template-columns:repeat(3,1fr); }
.grid--4{ grid-template-columns:repeat(4,1fr); }

/* Dark bands — used sparingly, the way Apple uses them for pro products. */
.on-dark{ background:var(--black); color:var(--on-dark); }
.on-dark h1,.on-dark h2,.on-dark h3,.on-dark h4{ color:var(--on-dark); }
.tint{ background:var(--gray-100); }

/* ---------------------------------------------------- buttons & links --- */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 24px;
  border:1px solid transparent;
  border-radius:var(--pill);
  background:var(--blue); color:#fff;
  font-size:17px; font-weight:400; letter-spacing:-.022em;
  cursor:pointer;
  transition:background .22s var(--ease), color .22s var(--ease),
             border-color .22s var(--ease), opacity .22s var(--ease);
  white-space:nowrap;
}
.btn:hover{ background:var(--blue-hover); }
.btn--soft{ background:var(--gray-200); color:var(--ink); }
.btn--soft:hover{ background:var(--gray-300); }
.btn--outline{
  background:transparent; color:var(--ink);
  border-color:var(--gray-300);
}
.btn--outline:hover{ background:var(--gray-100); border-color:var(--gray-500); }
.btn--on-dark{ background:var(--white); color:var(--ink); }
.btn--on-dark:hover{ background:var(--gray-100); }
.btn--block{ width:100%; }
.btn--sm{ padding:8px 18px; font-size:15px; }
.btn-row{ display:flex; flex-wrap:wrap; gap:14px; align-items:center; }
.btn-row--center{ justify-content:center; }

/* The blue "Learn more ›" text link Apple uses everywhere. */
.chevron{
  display:inline-flex; align-items:center; gap:4px;
  color:var(--link); font-size:17px; letter-spacing:-.022em;
  transition:color .2s var(--ease);
}
.chevron::after{ content:"›"; font-size:1.15em; line-height:1; }
.chevron:hover{ text-decoration:underline; }
.on-dark .chevron{ color:var(--link-dark); }
.chevron--lg{ font-size:21px; }

/* ---------------------------------------------------------------- nav --- */
.site-nav{
  position:fixed; inset:0 0 auto 0; z-index:90;
  background:rgba(251,251,253,.82);
  backdrop-filter:saturate(180%) blur(20px);
  -webkit-backdrop-filter:saturate(180%) blur(20px);
  border-bottom:1px solid rgba(0,0,0,.06);
}
.site-nav__inner{
  max-width:1024px; margin-inline:auto;
  padding-inline:var(--gutter);
  height:48px;
  display:flex; align-items:center; justify-content:space-between; gap:20px;
}
.site-nav a.brand{
  display:flex; align-items:center; gap:8px;
  font-size:15px; font-weight:600; letter-spacing:-.01em;
}
.brand__mark{ width:20px; height:20px; flex:0 0 auto; }

.site-nav__links{ display:flex; align-items:center; gap:2px; }
.site-nav__links a{
  display:block;
  padding:8px 12px;
  font-size:12px; letter-spacing:-.01em;
  color:var(--ink); opacity:.8;
  transition:opacity .2s var(--ease);
}
.site-nav__links a:hover{ opacity:1; }
.site-nav__links a.is-active{ opacity:1; font-weight:500; }

.site-nav__actions{ display:flex; align-items:center; gap:8px; }
.site-nav__actions .btn{ padding:8px 16px; font-size:13px; }

.nav-toggle{
  display:none;
  width:40px; height:32px; padding:0;
  border:0; background:transparent; cursor:pointer;
  place-items:center;
}
.nav-toggle__bars{ display:grid; gap:5px; width:18px; }
.nav-toggle__bars span{ height:1.5px; background:var(--ink); border-radius:2px; }

@media (max-width:900px){
  .nav-toggle{ display:grid; }
  .site-nav__actions .btn{ display:none; }
  .site-nav__links{
    position:fixed; inset:48px 0 auto 0;
    display:block;
    background:rgba(251,251,253,.98);
    backdrop-filter:saturate(180%) blur(20px);
    -webkit-backdrop-filter:saturate(180%) blur(20px);
    padding:8px var(--gutter) 28px;
    max-height:calc(100vh - 48px); overflow-y:auto;
    opacity:0; transform:translateY(-8px); pointer-events:none;
    transition:opacity .3s var(--ease), transform .3s var(--ease);
  }
  .site-nav__links.is-open{ opacity:1; transform:none; pointer-events:auto; }
  .site-nav__links a{
    font-size:19px; font-weight:500; letter-spacing:-.014em;
    padding:16px 0; border-bottom:1px solid var(--gray-200); opacity:1;
  }
}

/* --------------------------------------------------------------- hero --- */
.hero{
  padding-top:calc(48px + clamp(56px,8vw,104px));
  padding-bottom:clamp(40px,5vw,64px);
  text-align:center;
}
.hero h1{ max-width:16ch; margin-inline:auto; }
.hero .lede{ max-width:44ch; margin:24px auto 0; }
.hero__actions{ margin-top:32px; justify-content:center; }
.hero__media{
  max-width:var(--container-wide);
  margin:clamp(44px,6vw,76px) auto 0;
  padding-inline:var(--gutter);
}

/* ------------------------------------------------------------- ribbon --- */
.ribbon{
  background:var(--gray-100);
  border-block:1px solid rgba(0,0,0,.05);
  padding-block:18px;
  text-align:center;
}
.ribbon p{
  font-size:14px; letter-spacing:-.014em; color:var(--ink);
  max-width:60ch; margin-inline:auto;
}
.ribbon .chevron{ font-size:14px; }

/* --------------------------------------------------- media placeholder --- */
.media{
  position:relative; display:grid; place-items:center;
  overflow:hidden; border-radius:var(--radius);
  background:var(--gray-200);
}
.media--16x9{ aspect-ratio:16/9; }
.media--4x3 { aspect-ratio:4/3; }
.media--3x2 { aspect-ratio:3/2; }
.media--1x1 { aspect-ratio:1/1; }
.media--3x4 { aspect-ratio:3/4; }
.media--4x5 { aspect-ratio:4/5; }
.media--21x9{ aspect-ratio:21/9; }
.media--fill{ height:100%; min-height:260px; }
.media img{
  position:absolute; inset:0; width:100%; height:100%;
  object-fit:cover; z-index:2;
}
.media__ph{
  position:relative; z-index:1;
  padding:16px 20px; max-width:24ch;
  font-size:.6875rem; font-weight:500;
  letter-spacing:.04em; text-transform:uppercase;
  color:var(--gray-500); text-align:center; line-height:1.5;
}
.on-dark .media{ background:#1d1d1f; }
.on-dark .media__ph{ color:var(--on-dark-soft); }

/* -------------------------------------------------------------- tiles --- */
.tiles{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:12px;
}
.tile{
  position:relative;
  display:flex; flex-direction:column; align-items:center;
  text-align:center;
  min-height:clamp(460px,44vw,600px);
  padding:clamp(38px,4.4vw,58px) clamp(24px,3.4vw,44px) 0;
  border-radius:var(--radius);
  overflow:hidden;
  background:var(--gray-100);
}
.tile--dark{ background:var(--black); color:var(--on-dark); }
.tile--dark h3{ color:var(--on-dark); }
.tile--dark .tile__sub{ color:var(--on-dark-soft); }
.tile h3{ max-width:18ch; }
.tile__sub{
  margin-top:12px; max-width:34ch;
  font-size:clamp(1rem,1.5vw,1.1875rem);
  letter-spacing:-.016em; color:var(--gray-600);
}
.tile__links{ margin-top:20px; display:flex; gap:26px; justify-content:center; flex-wrap:wrap; }
.tile__links .chevron{ font-size:16px; }
.tile__media{
  width:calc(100% + 2 * clamp(24px,3.4vw,44px));
  margin:auto calc(-1 * clamp(24px,3.4vw,44px)) 0;
  flex:1; min-height:220px;
}
.tile__media .media{
  border-radius:0; height:100%;
  background:rgba(0,0,0,.045);
}
.tile--dark .tile__media .media{ background:rgba(255,255,255,.07); }
.tile__media .media__ph{ max-width:30ch; }

/* ------------------------------------------------------------- cards --- */
.card{
  display:flex; flex-direction:column;
  padding:clamp(26px,3vw,38px);
  border-radius:var(--radius);
  background:var(--gray-100);
}
.card h3{ font-size:1.25rem; }
.card p{ margin-top:12px; color:var(--gray-600); font-size:1rem; letter-spacing:-.018em; }
.on-dark .card{ background:#1d1d1f; }
.on-dark .card p{ color:var(--on-dark-soft); }

.card__list{ margin-top:20px; display:grid; gap:10px; }
.card__list li{
  position:relative; padding-left:22px;
  font-size:1rem; letter-spacing:-.018em; color:var(--gray-600);
}
.card__list li::before{
  content:"›"; position:absolute; left:2px; top:-1px;
  color:var(--gray-500); font-size:1.05em;
}
.on-dark .card__list li{ color:var(--on-dark-soft); }

/* ------------------------------------------------------------- stats --- */
.stats{ display:grid; grid-template-columns:repeat(3,1fr); gap:clamp(24px,4vw,48px); }
.stat{ text-align:center; }
.stat b{
  display:block;
  font-size:clamp(2.6rem,5vw,4rem);
  font-weight:600; letter-spacing:-.02em; line-height:1;
  color:var(--ink);
}
.stat span{
  display:block; margin-top:14px;
  font-size:.9375rem; letter-spacing:-.016em; color:var(--gray-600);
  max-width:26ch; margin-inline:auto;
}
.on-dark .stat b{ color:var(--on-dark); }
.on-dark .stat span{ color:var(--on-dark-soft); }

/* ------------------------------------------------------------- steps --- */
.steps{ display:grid; grid-template-columns:repeat(4,1fr); gap:clamp(20px,3vw,36px); }
.step__num{
  font-size:clamp(2rem,3.6vw,2.75rem);
  font-weight:600; letter-spacing:-.02em; line-height:1;
  color:var(--gray-300);
}
.step h4{ margin-top:18px; font-size:1.0625rem; }
.step p{ margin-top:10px; font-size:.9375rem; letter-spacing:-.016em; color:var(--gray-600); }
.on-dark .step__num{ color:#424245; }
.on-dark .step p{ color:var(--on-dark-soft); }

/* ------------------------------------------------------------ split --- */
.split{
  display:grid; grid-template-columns:1fr 1fr;
  gap:clamp(32px,5vw,72px); align-items:center;
}
.split--reverse .split__media{ order:2; }
.feature-list{ display:grid; gap:26px; margin-top:36px; }
.feature{ display:grid; grid-template-columns:auto 1fr; gap:18px; }
.feature__num{
  font-size:1rem; font-weight:600; color:var(--gray-500);
  padding-top:1px; min-width:26px;
}
.feature h4{ font-size:1.0625rem; }
.feature p{ margin-top:8px; font-size:.9375rem; letter-spacing:-.016em; color:var(--gray-600); }
.on-dark .feature p{ color:var(--on-dark-soft); }

/* ---------------------------------------------------- product cards --- */
.product{
  display:flex; flex-direction:column;
  padding:clamp(20px,2.2vw,28px);
  border-radius:var(--radius);
  background:var(--white);
  box-shadow:0 4px 20px rgba(0,0,0,.05);
  transition:transform .3s var(--ease), box-shadow .3s var(--ease);
}
.product:hover{ transform:translateY(-3px); box-shadow:0 10px 32px rgba(0,0,0,.09); }
.product .media{ border-radius:12px; background:var(--gray-100); }
.product__body{ display:flex; flex-direction:column; flex:1; padding-top:24px; }
.product__tag{
  font-size:.8125rem; font-weight:600; letter-spacing:-.01em;
  color:var(--link); margin-bottom:8px;
}
.product__body h3{ font-size:1.1875rem; }
.product__body > p{ margin-top:10px; font-size:.9375rem; letter-spacing:-.016em; color:var(--gray-600); }
.product__specs{ margin-top:20px; display:grid; gap:9px; }
.product__specs > div{ display:flex; justify-content:space-between; gap:16px; font-size:.875rem; }
.product__specs dt{ color:var(--gray-500); letter-spacing:-.012em; }
.product__specs dd{ margin:0; text-align:right; color:var(--ink); letter-spacing:-.012em; }
.product__foot{ margin-top:24px; padding-top:0; display:flex; }
.product__foot .btn{ width:100%; }

/* Apple segmented control */
.segmented-wrap{ display:flex; justify-content:center; margin-bottom:clamp(28px,3.4vw,44px); }
.segmented{
  display:inline-flex; flex-wrap:wrap; gap:2px; justify-content:center;
  padding:3px; border-radius:var(--pill); background:var(--gray-100);
}
.segmented button{
  border:0; background:transparent; cursor:pointer;
  padding:9px 20px; border-radius:var(--pill);
  font-size:14px; letter-spacing:-.014em; color:var(--ink);
  transition:background .2s var(--ease), box-shadow .2s var(--ease);
}
.segmented button:hover{ background:rgba(0,0,0,.04); }
.segmented button.is-active{
  background:var(--white); font-weight:600;
  box-shadow:0 1px 4px rgba(0,0,0,.12);
}

/* ---------------------------------------------------------------- faq --- */
.faq{ border-top:1px solid var(--gray-300); }
.faq details{ border-bottom:1px solid var(--gray-300); }
.faq summary{
  display:flex; align-items:center; justify-content:space-between; gap:24px;
  padding:22px 0; cursor:pointer; list-style:none;
  font-size:1.0625rem; font-weight:500; letter-spacing:-.018em;
}
.faq summary::-webkit-details-marker{ display:none; }
.faq summary::after{
  content:""; flex:0 0 auto;
  width:9px; height:9px; margin-right:6px;
  border-right:1.5px solid var(--gray-500);
  border-bottom:1.5px solid var(--gray-500);
  transform:rotate(45deg) translateY(-2px);
  transition:transform .3s var(--ease);
}
.faq details[open] summary::after{ transform:rotate(225deg) translateY(-2px); }
.faq__answer{ padding:0 0 26px; max-width:72ch; }
.faq__answer p{ font-size:1rem; letter-spacing:-.018em; color:var(--gray-600); }
.on-dark .faq{ border-top-color:#424245; }
.on-dark .faq details{ border-bottom-color:#424245; }
.on-dark .faq__answer p{ color:var(--on-dark-soft); }
.on-dark .faq summary::after{
  border-color:var(--on-dark-soft);
}

/* ----------------------------------------------------------- checklist --- */
.checklist{ display:grid; gap:18px; margin-top:36px; }
.checklist li{
  position:relative; padding-left:30px;
  font-size:1rem; letter-spacing:-.018em; color:var(--gray-600);
}
.checklist li strong{ color:var(--ink); font-weight:600; }
.checklist li::before{
  content:""; position:absolute; left:0; top:.42em;
  width:14px; height:8px;
  border-left:1.8px solid var(--blue);
  border-bottom:1.8px solid var(--blue);
  transform:rotate(-45deg);
}
.on-dark .checklist li{ color:var(--on-dark-soft); }
.on-dark .checklist li strong{ color:var(--on-dark); }
.on-dark .checklist li::before{ border-color:var(--link-dark); }

/* --------------------------------------------------------------- cta --- */
.cta{ text-align:center; }
.cta .section-title{ max-width:20ch; margin-inline:auto; }
.cta .lede{ max-width:52ch; margin:22px auto 0; }
.cta .btn-row{ margin-top:32px; justify-content:center; }

/* ----------------------------------------------------------- contact --- */
.contact-grid{
  display:grid; grid-template-columns:1fr 1fr;
  gap:clamp(32px,4.6vw,64px); align-items:start;
}
.info-list{ display:grid; gap:0; margin:0; }
.info{
  display:grid; grid-template-columns:auto 1fr; gap:16px;
  padding:22px 0; border-bottom:1px solid var(--gray-200);
}
.info:first-child{ border-top:1px solid var(--gray-200); }
.info__icon{
  width:36px; height:36px; border-radius:50%;
  display:grid; place-items:center;
  background:var(--gray-100); color:var(--ink);
}
.info__icon svg{ width:17px; height:17px; }
.info dt{
  font-size:.8125rem; font-weight:600; letter-spacing:-.008em;
  color:var(--gray-500); margin-bottom:4px;
}
.info dd{ margin:0; font-size:1rem; letter-spacing:-.018em; word-break:break-word; }
.info dd a{ color:var(--link); }
.info dd a:hover{ text-decoration:underline; }

.form-card{
  padding:clamp(26px,3vw,40px);
  border-radius:var(--radius-lg);
  background:var(--gray-100);
}
.field{ margin-bottom:20px; }
.field label{
  display:block; margin-bottom:8px;
  font-size:.8125rem; font-weight:600; letter-spacing:-.008em;
  color:var(--gray-600);
}
.field input,.field select,.field textarea{
  width:100%; padding:14px 16px;
  border:1px solid var(--gray-300); border-radius:12px;
  background:var(--white); color:var(--ink);
  font-size:1rem; letter-spacing:-.018em;
  transition:border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field textarea{ min-height:136px; resize:vertical; }
.field input::placeholder,.field textarea::placeholder{ color:var(--gray-500); }
.field input:focus,.field select:focus,.field textarea:focus{
  outline:0; border-color:var(--blue);
  box-shadow:0 0 0 3px rgba(0,113,227,.18);
}
.field--row{ display:grid; grid-template-columns:1fr 1fr; gap:20px; }
.form-note{ margin-top:18px; font-size:.8125rem; line-height:1.5; color:var(--gray-500); }
.form-status{
  display:none; margin-top:18px; padding:16px 18px;
  border-radius:12px; background:var(--white);
  border:1px solid var(--gray-300);
  font-size:.9375rem; letter-spacing:-.016em;
}
.form-status.is-visible{ display:block; }

.map-frame{
  border-radius:var(--radius);
  background:var(--gray-100);
  min-height:340px; display:grid; place-items:center;
  text-align:center; padding:48px 24px;
}
.map-frame__ph{
  color:var(--gray-500); font-size:.75rem; font-weight:500;
  letter-spacing:.04em; text-transform:uppercase; max-width:32ch;
}

/* --------------------------------------------------------- page hero --- */
.page-hero{
  padding-top:calc(48px + clamp(48px,7vw,88px));
  padding-bottom:clamp(28px,4vw,48px);
}
.page-hero .hero-title{ font-size:clamp(2.2rem,5.4vw,4.2rem); }
.page-hero .lede{ margin-top:22px; max-width:52ch; }
.breadcrumb{
  display:flex; gap:8px; align-items:center;
  font-size:.8125rem; color:var(--gray-500); margin-bottom:22px;
}
.breadcrumb a:hover{ color:var(--ink); }

/* ------------------------------------------------------------- footer --- */
.site-footer{
  background:var(--gray-100);
  padding-block:clamp(40px,4.6vw,56px) 28px;
  font-size:.75rem; line-height:1.5; color:var(--gray-600);
}
.site-footer a{ color:var(--gray-600); }
.site-footer a:hover{ color:var(--ink); text-decoration:underline; }
.footer-note{
  padding-bottom:22px;
  border-bottom:1px solid var(--gray-300);
  font-size:.75rem; color:var(--gray-600);
  margin-bottom:26px;
}
.footer-grid{
  display:grid; grid-template-columns:repeat(4,1fr);
  gap:clamp(20px,3vw,40px);
  padding-bottom:26px; border-bottom:1px solid var(--gray-300);
}
.footer-grid h4{
  font-size:.75rem; font-weight:600; letter-spacing:-.008em;
  color:var(--ink); margin-bottom:12px;
}
.footer-links{ display:grid; gap:9px; }
.footer-bottom{
  padding-top:20px;
  display:flex; flex-wrap:wrap; gap:10px 22px;
  justify-content:space-between; align-items:center;
}
.footer-legal{ display:flex; flex-wrap:wrap; gap:0; }
.footer-legal a{ padding-inline:12px; border-left:1px solid var(--gray-300); }
.footer-legal a:first-child{ padding-left:0; border-left:0; }

/* --------------------------------------------------------- utilities --- */
.reveal{ opacity:1; transform:none; }
html.js .reveal{ opacity:0; transform:translateY(20px); }
html.js .reveal.is-in{
  opacity:1; transform:none;
  transition:opacity .8s var(--ease), transform .8s var(--ease);
}
.skip-link{
  position:absolute; left:-9999px; top:0; z-index:200;
  padding:12px 22px; background:var(--blue); color:#fff; font-weight:600;
}
.skip-link:focus{ left:12px; top:12px; }
.sr-only{
  position:absolute; width:1px; height:1px; padding:0; margin:-1px;
  overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0;
}
.stack-sm > * + *{ margin-top:16px; }
.stack > * + *{ margin-top:28px; }
.mt-lg{ margin-top:clamp(32px,4vw,56px); }

/* -------------------------------------------------------- responsive --- */
@media (max-width:1080px){
  .grid--4{ grid-template-columns:repeat(2,1fr); }
  .steps{ grid-template-columns:repeat(2,1fr); }
}
@media (max-width:900px){
  .split{ grid-template-columns:1fr; }
  .split--reverse .split__media{ order:0; }
  .contact-grid{ grid-template-columns:1fr; }
  .footer-grid{ grid-template-columns:repeat(2,1fr); }
}
@media (max-width:820px){
  .grid--3{ grid-template-columns:repeat(2,1fr); }
  .tiles{ grid-template-columns:1fr; }
  .stats{ grid-template-columns:1fr; gap:34px; }
  .hero__media .media--21x9{ aspect-ratio:16/9; }
}
@media (max-width:640px){
  body{ font-size:16px; }
  .grid--2,.grid--3,.grid--4,.steps{ grid-template-columns:1fr; }
  .field--row{ grid-template-columns:1fr; }
  .btn-row{ flex-direction:column; align-items:stretch; }
  .btn-row .chevron{ justify-content:center; }
  .btn{ width:100%; }
  .hero__actions .btn{ width:100%; }
  .hero__media .media--21x9{ aspect-ratio:4/3; }
  .tile{ min-height:auto; padding-bottom:0; }
  .tile__media{ min-height:200px; }
  .footer-grid{ grid-template-columns:1fr; }
  .footer-bottom{ flex-direction:column; align-items:flex-start; }
  .segmented{ width:100%; }
  .segmented button{ flex:1 1 auto; }
  .footer-legal a:first-child{ padding-left:0; }
  .footer-legal{ gap:0; }
}

@media (prefers-reduced-motion:reduce){
  html{ scroll-behavior:auto; }
  *{ animation-duration:.001ms !important; transition-duration:.001ms !important; }
  html.js .reveal{ opacity:1; transform:none; }
}
