:root{
  --bg:#f7f9fc;
  --bg-2:#ffffff;
  --bg-3:#f1f6fb;
  --line:#dbe4ee;
  --line-strong:#c3d3e4;
  --text:#10203a;
  --muted:#5b6d8b;
  --blue:#1782F2;
  --blue-2:#126FD6;
  --blue-soft:#eff6ff;
  --shadow:0 28px 72px rgba(16,32,58,.09);
  --radius:26px;
  --radius-sm:18px;
  --container:1120px;
}

*{box-sizing:border-box}

html{scroll-behavior:smooth}

body{
  margin:0;
  font-family:-apple-system,BlinkMacSystemFont,"SF Pro Display","SF Pro Text","Segoe UI",Roboto,Helvetica,Arial,sans-serif;
  color:var(--text);
  background:
    radial-gradient(circle at top left, rgba(23,130,242,.08), transparent 34%),
    radial-gradient(circle at top right, rgba(23,130,242,.04), transparent 26%),
    linear-gradient(180deg, #fcfdff 0%, #f6f9fd 55%, #f1f5fa 100%);
  line-height:1.6;
}

img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}

.container{width:min(calc(100% - 32px), var(--container)); margin:0 auto}

.site-header{
  position:sticky;
  top:0;
  z-index:40;
  backdrop-filter:blur(18px);
  background:rgba(255,255,255,.88);
  border-bottom:1px solid rgba(16,32,58,.08);
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  min-height:78px;
}

.brand{
  display:inline-flex;
  align-items:center;
  gap:14px;
  font-weight:700;
}

.brand-mark{
  display:block;
  width:58px;
  height:58px;
  border-radius:18px;
  border:1px solid rgba(23,130,242,.14);
  background:
    url("./assets/minyma-mark.svg") center/90% auto no-repeat,
    linear-gradient(180deg, rgba(255,255,255,.99), rgba(239,246,255,.92));
  color:transparent;
  font-size:0;
  box-shadow:0 16px 34px rgba(16,32,58,.08);
}

.brand-name{font-size:1.14rem;letter-spacing:-.028em}

.site-header .brand{
  gap:0;
}

.site-header .brand-mark{
  width:296px;
  height:78px;
  border:0;
  border-radius:0;
  background:url("./assets/minyma-logo-wordmark.png") center/contain no-repeat;
  box-shadow:none;
  flex-shrink:0;
}

.site-header .brand-name{
  display:none;
}

.nav-links{
  display:flex;
  align-items:center;
  gap:4px;
  flex-wrap:wrap;
}

.nav-links a{
  padding:11px 14px;
  border-radius:12px;
  color:var(--muted);
  font-weight:600;
  font-size:.95rem;
}

.nav-links a:hover,
.nav-links a.active{
  background:var(--blue-soft);
  color:var(--text);
}

.nav-actions{
  display:flex;
  align-items:center;
  gap:10px;
  flex-shrink:0;
}

.button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:13px 18px;
  border-radius:999px;
  font-weight:700;
  border:1px solid transparent;
  transition:transform .15s ease, box-shadow .15s ease, border-color .15s ease, background .15s ease, opacity .15s ease;
  min-height:48px;
}

.button:hover{transform:translateY(-1px)}

.button.primary{
  background:var(--blue);
  color:#fff;
  box-shadow:0 14px 32px rgba(23,130,242,.18);
}

.site-header .nav-actions .button{
  min-width:0;
  min-height:44px;
  padding:11px 18px;
  font-size:.94rem;
  white-space:nowrap;
}

.button.primary:hover{background:var(--blue-2)}

.button.secondary{
  background:#fff;
  border-color:var(--line);
  color:var(--text);
}

.button.compact{
  min-height:48px;
  padding:13px 18px;
  border-radius:999px;
  font-size:1rem;
}

.button.secondary:hover{border-color:var(--line-strong)}

.button.is-disabled,
.social-link.is-disabled{
  opacity:.55;
  pointer-events:none;
}

.menu-button{
  display:none;
  width:44px;
  height:44px;
  border-radius:14px;
  border:1px solid var(--line);
  background:#fff;
  font-size:1.15rem;
  flex-shrink:0;
}

main{padding-bottom:44px}

.hero{padding:34px 0 24px}

.hero-shell,
.page-shell,
.band,
.cta-panel,
.feature-placeholder,
.legal-card,
.download-card{
  background:rgba(255,255,255,.84);
  border:1px solid rgba(23,130,242,.12);
  border-radius:32px;
  box-shadow:var(--shadow);
  position:relative;
}

.hero-shell,
.page-shell{padding:30px}

.band,
.cta-panel,
.feature-placeholder,
.legal-card,
.download-card{padding:30px}

.hero-grid,
.split-grid,
.copy-grid,
.two-up,
.download-grid{
  display:grid;
  gap:24px;
}

.hero-grid{grid-template-columns:1.08fr .92fr;align-items:center}

.eyebrow,
.section-label{
  display:inline-flex;
  align-items:center;
  gap:10px;
  color:var(--blue);
  font-weight:800;
  letter-spacing:.02em;
  font-size:.84rem;
  text-transform:uppercase;
  margin:0 0 10px;
}

.eyebrow-dot{
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--blue);
}

h1,h2,h3{
  margin:0;
  letter-spacing:-.035em;
  line-height:1.07;
}

h1{
  font-size:clamp(2.5rem, 5vw, 4.4rem);
  max-width:11ch;
  margin-top:14px;
}

h2{
  font-size:clamp(2rem, 4vw, 3rem);
  max-width:14ch;
  margin-top:12px;
}

.eyebrow + h1,
.section-label + h1,
.section-label + h2{
  margin-top:0;
}

h3{font-size:1.35rem}

p{margin:0 0 14px}

.hero-copy,
.section-copy,
.lead,
.prose p,
.faq-intro{
  color:var(--muted);
  max-width:64ch;
  font-size:1.06rem;
  line-height:1.58;
}

.hero-tagline{
  font-size:1.18rem;
  color:var(--text);
  font-weight:650;
  margin-top:14px;
}

.hero-note,
.tiny{
  color:var(--muted);
  font-size:.95rem;
}

.hero-actions,
.cta-actions,
.page-actions,
.download-action{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:24px;
}

.page-actions{
  margin-top:14px;
}

.page-hero .lead,
.page-hero .section-copy,
.page-hero .faq-intro{
  margin-bottom:0;
}

.page-hero .list-clean{
  margin-top:2px;
}

.page-actions .button{
  min-height:48px;
  padding:13px 18px;
}

.micro-stack{
  display:grid;
  gap:12px;
  margin-top:16px;
}

.micro-row{
  padding-top:12px;
  border-top:1px solid var(--line);
}

.micro-row strong{
  display:block;
  font-size:.92rem;
  margin-bottom:4px;
}

.micro-row a{
  color:var(--text);
  text-decoration:none;
}

.micro-row a:hover{
  color:var(--blue);
}

.micro-row .doc-pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:8px 14px;
  border-radius:999px;
  background:var(--blue);
  color:#fff;
  text-decoration:none;
  font-weight:700;
  box-shadow:0 10px 24px rgba(23,130,242,.16);
  transition:transform .15s ease, box-shadow .15s ease, background .15s ease;
  margin-bottom:8px;
}

.micro-row .doc-pill:hover{
  background:var(--blue-2);
  color:#fff;
  transform:translateY(-1px);
}

.micro-row span{
  display:block;
  color:var(--muted);
  font-size:.95rem;
}

.device-buttons .button{min-width:180px}

.app-store-badge{
  display:inline-grid;
  gap:2px;
  min-width:210px;
  padding:12px 18px 13px;
  border-radius:18px;
  background:#0f172a;
  color:#fff;
  box-shadow:0 16px 34px rgba(16,32,58,.2);
}

.app-store-badge:hover{
  transform:translateY(-1px);
}

.app-store-badge .badge-overline{
  font-size:.72rem;
  letter-spacing:.04em;
  text-transform:uppercase;
  opacity:.82;
}

.app-store-badge .badge-title{
  font-size:1.2rem;
  font-weight:800;
  letter-spacing:-.03em;
  line-height:1.05;
}

.app-store-badge.official-badge{
  display:inline-flex;
  align-items:center;
  min-width:0;
  width:auto;
  max-width:100%;
  padding:0;
  border-radius:0;
  background:transparent;
  box-shadow:none;
  line-height:0;
}

.app-store-badge.official-badge img{
  display:block;
  width:168px;
  max-width:100%;
  height:56px;
}

.app-store-badge.official-badge .official-badge-art{
  display:block;
  width:168px;
  max-width:100%;
  height:auto;
  overflow:visible;
}

.hero-banners{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:14px;
  margin-top:26px;
}

.banner,
.feature-card,
.legal-link-card,
.note-card,
.faq-card,
.screenshot-card,
.tech-card,
.stat,
details{
  background:#fff;
  border:1px solid var(--line);
  border-radius:22px;
}

.feature-card,
.legal-link-card,
.note-card,
.screenshot-card,
.tech-card{
  display:flex;
  flex-direction:column;
  height:100%;
}

.banner{padding:18px}

.banner strong,
.kicker{
  display:block;
  font-size:.86rem;
  text-transform:uppercase;
  letter-spacing:.06em;
  color:var(--blue);
  margin-bottom:8px;
  font-weight:800;
}

.banner span{color:var(--muted);font-size:.97rem}

.hero-visual{position:relative}

.phone-wrap{
  position:relative;
  display:grid;
  place-items:center;
  min-height:540px;
}

.glow{
  position:absolute;
  width:360px;
  height:360px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(23,130,242,.16), rgba(23,130,242,.01) 62%, transparent 68%);
  filter:blur(8px);
}

.hero-shot-wrap{
  place-items:center;
}

.hero-shot{
  position:relative;
  width:min(100%, 370px);
  border-radius:36px;
  overflow:hidden;
  padding:10px;
  background:linear-gradient(180deg, #f6f9fd, #ffffff);
  box-shadow:0 34px 80px rgba(16,32,58,.22);
  border:1px solid rgba(23,130,242,.14);
}

.hero-shot img{
  width:100%;
  height:auto;
  display:block;
  border-radius:28px;
}

.phone{
  position:relative;
  width:min(100%, 370px);
  aspect-ratio:9/19.5;
  padding:11px;
  border-radius:44px;
  background:#0d172a;
  box-shadow:0 34px 80px rgba(16,32,58,.22);
}

.phone::before{
  content:"";
  position:absolute;
  top:13px;
  left:50%;
  transform:translateX(-50%);
  width:36%;
  height:28px;
  background:#0a1020;
  border-radius:0 0 18px 18px;
  z-index:2;
}

.screen{
  height:100%;
  border-radius:34px;
  overflow:hidden;
  background:linear-gradient(180deg, #f3f7fc 0%, #ffffff 100%);
}

.screen-inner{
  padding:22px;
  display:flex;
  flex-direction:column;
  gap:18px;
  height:100%;
}

.status{
  display:flex;
  justify-content:space-between;
  color:#41567a;
  font-size:.8rem;
  font-weight:700;
}

.screen-chip{
  align-self:flex-start;
  padding:8px 12px;
  border-radius:999px;
  background:var(--blue-soft);
  color:var(--blue);
  font-size:.82rem;
  font-weight:700;
}

.mini-stack{display:grid;gap:12px}

.mini-row{
  display:grid;
  grid-template-columns:auto 1fr;
  gap:12px;
  padding:14px;
  border-radius:18px;
  background:rgba(255,255,255,.92);
  border:1px solid var(--line);
}

.mini-icon{
  width:40px;
  height:40px;
  display:grid;
  place-items:center;
  border-radius:14px;
  background:var(--blue-soft);
  font-size:1rem;
}

.mini-row strong{display:block;margin-bottom:4px}

.mini-row span,
.screen-footer{color:var(--muted);font-size:.92rem}

.screen-footer{
  margin-top:auto;
  display:flex;
  justify-content:space-between;
  border-top:1px solid var(--line);
  padding-top:14px;
}

section{padding:18px 0}

.shot-grid,
.feature-grid,
.card-grid,
.legal-links-grid,
.stats-grid,
.tech-grid{
  display:grid;
  gap:18px;
}

.shot-grid{grid-template-columns:repeat(3, 1fr);margin-top:24px}
.shot-grid.shot-grid-four{grid-template-columns:repeat(4, 1fr)}

.screenshot-card,
.feature-card,
.legal-link-card,
.note-card,
.faq-card,
.tech-card,
.stat{padding:22px}

.screenshot-frame{
  background:transparent;
  border:0;
  border-radius:0;
  padding:0;
  display:block;
  margin-bottom:16px;
}

.screenshot-frame img{
  width:100%;
  height:auto;
  object-fit:contain;
  object-position:center top;
  border-radius:16px;
  border:1px solid rgba(23,130,242,.14);
  display:block;
}

.copy-grid{grid-template-columns:1.05fr .95fr;align-items:start}
.note-card ul,.feature-card ul,.prose ul,.list-clean{margin:12px 0 0 0;padding-left:19px;color:var(--muted)}
.note-card li,.feature-card li,.prose li,.list-clean li{margin-bottom:8px}
.kicker{margin-bottom:10px}
.legal-links-grid{grid-template-columns:repeat(2, 1fr);margin-top:24px}
.legal-link-card p,.note-card p,.feature-card p,.tech-card p,.stat span{color:var(--muted)}
.feature-grid{grid-template-columns:repeat(3, 1fr)}
.feature-grid.grid-2{grid-template-columns:repeat(2, 1fr)}
.feature-card h3{margin-bottom:10px}
.feature-card ul{margin-top:12px}
.feature-card.span-two{grid-column:span 2}
.page-shell{padding:30px}
.page-hero{
  display:grid;
  gap:12px;
  align-content:start;
  align-self:start;
}
.page-hero h1{max-width:13ch}
.band h2,
.page-shell h1,
.page-shell h2,
.download-card h1,
.download-card h2,
.legal-card h1{
  margin-bottom:2px;
}
.page-escape{
  position:absolute;
  top:24px;
  right:24px;
  z-index:3;
}

.page-close{
  display:inline-grid;
  place-items:center;
  width:44px;
  height:44px;
  border-radius:14px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.9);
  color:var(--muted);
  font-size:1.3rem;
  line-height:1;
  box-shadow:0 10px 24px rgba(16,32,58,.08);
  transition:transform .15s ease, border-color .15s ease, color .15s ease;
}

.page-close:hover{
  transform:translateY(-1px);
  border-color:var(--line-strong);
  color:var(--text);
}

.split-grid{
  grid-template-columns:minmax(0, 1.02fr) minmax(330px, .98fr);
  align-items:start;
  gap:22px;
}
.feature-placeholder{margin-top:10px}
.visual-placeholder{
  border:1px solid var(--line);
  border-radius:24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(241,246,251,.94)),
    radial-gradient(circle at top left, rgba(23,130,242,.08), transparent 34%);
  padding:18px;
  box-shadow:0 14px 32px rgba(16,32,58,.08);
  overflow:hidden;
}

.visual-placeholder.compact{
  min-height:240px;
}

.visual-placeholder.tall{
  min-height:280px;
}

.visual-logo-stage{
  display:grid;
  place-items:center;
  align-content:center;
  gap:18px;
  padding:24px;
}

.visual-brand-mark{
  width:132px;
  height:132px;
  border-radius:32px;
  background:
    url("./assets/minyma-mark.svg") center/88% auto no-repeat,
    linear-gradient(180deg, rgba(255,255,255,.99), rgba(239,246,255,.93));
}

.visual-logo-lines{
  width:min(220px, 100%);
}

.visual-logo-lines span:nth-child(1){width:84%}
.visual-logo-lines span:nth-child(2){width:62%}
.visual-logo-lines span:nth-child(3){width:76%}

.visual-placeholder-header{
  display:flex;
  gap:8px;
  margin-bottom:14px;
}

.visual-placeholder-header span{
  width:9px;
  height:9px;
  border-radius:50%;
  background:rgba(23,130,242,.18);
}

.visual-placeholder-main{
  display:grid;
  gap:12px;
}

.visual-placeholder-screen{
  min-height:128px;
  border-radius:18px;
  border:1px solid rgba(23,130,242,.14);
  background:linear-gradient(180deg, #fbfdff 0%, #eff6ff 100%);
}

.visual-placeholder-row{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:12px;
}

.visual-placeholder-tile{
  min-height:86px;
  border-radius:16px;
  border:1px solid rgba(23,130,242,.12);
  background:rgba(255,255,255,.92);
}

.visual-placeholder-lines{
  display:grid;
  gap:8px;
}

.visual-placeholder-lines span{
  display:block;
  height:10px;
  border-radius:999px;
  background:rgba(91,109,139,.12);
}

.visual-placeholder-lines span:nth-child(1){width:68%}
.visual-placeholder-lines span:nth-child(2){width:88%}
.visual-placeholder-lines span:nth-child(3){width:56%}

.band-head{
  display:grid;
  grid-template-columns:minmax(0, 1.04fr) minmax(300px, .96fr);
  gap:22px;
  align-items:start;
  margin-bottom:20px;
}

.band-copy{
  display:grid;
  gap:12px;
}

.device-download-layout{
  display:grid;
  grid-template-columns:minmax(0, 1.02fr) minmax(320px, .98fr);
  gap:22px;
  align-items:start;
}

.download-copy{
  display:grid;
  gap:14px;
}

.download-copy .download-action{
  margin-top:6px;
}

.download-copy .button{min-width:180px}

.stack.stack-tight{
  gap:16px;
}
.two-up{grid-template-columns:repeat(2, 1fr)}
.card-grid.grid-3{grid-template-columns:repeat(3, 1fr)}
.card-grid.grid-2{grid-template-columns:repeat(2, 1fr)}
.faq-wrap{display:grid;gap:18px;margin-top:18px}
.faq-group{
  background:#fff;
  border:1px solid var(--line);
  border-radius:24px;
  padding:18px;
}
.faq-group h2{font-size:1.65rem;max-width:none;margin-top:2px;margin-bottom:10px}

details{
  padding:16px 18px;
  background:#fbfdff;
}

details + details{margin-top:12px}

summary{
  cursor:pointer;
  list-style:none;
  font-weight:700;
  padding-right:24px;
  position:relative;
}

summary::-webkit-details-marker{display:none}

summary::after{
  content:"+";
  position:absolute;
  right:0;
  top:0;
  color:var(--blue);
  font-size:1.15rem;
}

details[open] summary::after{content:"–"}
details p,details ul{margin-top:12px;color:var(--muted)}
details ul{padding-left:18px}

.legal-card{max-width:880px;margin:0 auto}
.prose h2{font-size:1.65rem;max-width:none;margin:28px 0 12px}
.prose h3{font-size:1.14rem;margin:18px 0 8px}
.prose .meta{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  align-items:center;
  margin-bottom:18px;
  color:var(--muted);
  font-size:.96rem;
}

.tag{
  display:inline-flex;
  align-items:center;
  padding:7px 11px;
  border-radius:999px;
  background:var(--blue-soft);
  color:var(--blue);
  font-weight:700;
  font-size:.82rem;
}

.tech-grid{grid-template-columns:repeat(2, 1fr);margin-top:18px}

.callout{
  margin-top:18px;
  padding:18px;
  border:1px dashed var(--line-strong);
  border-radius:20px;
  background:#fbfdff;
}

.stat strong{display:block;font-size:1.45rem;letter-spacing:-.04em;margin-bottom:6px}
.download-grid{grid-template-columns:1.05fr .95fr;gap:18px}
.stack{display:grid;gap:14px}

.footer{padding:26px 0 38px}

.footer-shell{
  background:rgba(255,255,255,.84);
  border:1px solid rgba(23,130,242,.12);
  border-radius:30px;
  box-shadow:var(--shadow);
  padding:28px;
}

.footer-top{
  display:grid;
  grid-template-columns:1fr;
  align-items:flex-start;
  gap:24px;
}

.footer-legal-copy{
  order:2;
  max-width:none;
  display:flex;
  flex-direction:column;
  gap:10px;
  padding-top:18px;
  border-top:1px solid var(--line);
}

.footer-legal-copy p{
  color:var(--muted);
  margin:0;
}

.footer-legal-copy p span{
  display:block;
}

.footer-legal-copy p span + span{
  margin-top:2px;
}

.footer-cta{
  margin-top:0;
  min-height:42px;
  padding:10px 16px;
}

.footer-links{display:grid;gap:18px}
.footer-links-four{
  order:1;
  grid-template-columns:repeat(4, minmax(110px, 1fr));
  width:100%;
  column-gap:28px;
}

.footer-column h3{
  font-size:.82rem;
  margin-bottom:12px;
  text-transform:uppercase;
  letter-spacing:.08em;
  color:var(--text);
}
.footer-column a{display:block;color:var(--muted);margin:8px 0;line-height:1.45}
.footer-column a:hover{color:var(--text)}
.footer-column span{display:block;color:var(--muted);margin:7px 0}

.footer-column a.social-link{
  display:inline-grid;
  margin:0;
  color:var(--muted);
}

.footer-column a.button{
  display:inline-flex;
  margin:0;
}

.footer-column a.button.primary{color:#fff}
.footer-column a.button.secondary{color:var(--text)}

.social-links{
  display:flex;
  flex-direction:row;
  flex-wrap:wrap;
  align-items:flex-start;
  gap:10px;
  margin-top:0;
}

.footer-social{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:10px;
}

.social-link{
  display:inline-grid;
  place-items:center;
  width:38px;
  height:38px;
  border:1px solid var(--line);
  border-radius:12px;
  background:#fff;
  color:var(--muted);
}

.social-link span{display:none}

.social-link svg{width:18px;height:18px;stroke:currentColor;fill:none;stroke-width:1.7}
.social-link[aria-label="X"] svg{stroke:none;fill:currentColor}
.social-link:hover{
  color:var(--text);
  border-color:var(--line-strong);
}

.device-choice-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:14px;
}

.device-choice-card{
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  gap:14px;
}

.device-choice-card .button{
  align-self:flex-start;
  min-width:0;
}

.note-card .page-actions,
.feature-card .page-actions,
.tech-card .page-actions{
  margin-top:auto;
  padding-top:18px;
}

.footer-bottom{display:none}

.code-block{
  font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,monospace;
  background:#0d172a;
  color:#dce8ff;
  border-radius:18px;
  padding:18px;
  overflow:auto;
  line-height:1.5;
}

.architecture-summary{
  background:#0d172a;
  color:#dce8ff;
  border-radius:18px;
  padding:18px;
  display:grid;
  gap:10px;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.03);
}

.architecture-row{
  display:grid;
  grid-template-columns:minmax(108px, 132px) minmax(0, 1fr);
  gap:16px;
  align-items:start;
}

.architecture-row + .architecture-row{
  padding-top:10px;
  border-top:1px solid rgba(220,232,255,.08);
}

.architecture-row strong,
.architecture-row span{
  font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,monospace;
  font-size:.98rem;
  line-height:1.45;
}

.architecture-row strong{
  color:#fff;
  font-weight:700;
}

.architecture-row span{
  color:#dce8ff;
}

.architecture-row span::before{
  content:"\2192  ";
  color:#8fb8ff;
}

.architecture-mobile{
  display:none;
}

.accent{color:var(--blue)}
.muted{color:var(--muted)}
.center{text-align:center}
.mt-12{margin-top:12px}
.mt-18{margin-top:18px}
.mt-24{margin-top:24px}

[data-reveal]{
  opacity:0;
  transform:translateY(16px);
  transition:opacity .35s ease, transform .35s ease;
}

[data-reveal].is-visible{
  opacity:1;
  transform:none;
}

@media (max-width: 1020px){
  .hero-grid,.copy-grid,.split-grid,.two-up,.download-grid,.tech-grid{
    grid-template-columns:1fr;
  }
  .band-head,
  .device-download-layout{
    grid-template-columns:1fr;
  }
  .feature-grid{grid-template-columns:repeat(2, 1fr)}
  .feature-grid.grid-2{grid-template-columns:repeat(2, 1fr)}
  .hero-banners,.card-grid.grid-3,.shot-grid.shot-grid-four,.footer-links-four{grid-template-columns:repeat(2, 1fr)}
  .shot-grid{grid-template-columns:repeat(2, 1fr)}
  .footer-top{grid-template-columns:1fr}
  .phone-wrap{min-height:460px}
}

@media (max-width: 880px){
  .menu-button{display:inline-grid;place-items:center}
  .nav{
    min-height:72px;
    position:relative;
    gap:8px;
  }
  .nav-links{
    display:none;
    position:absolute;
    left:0;
    right:0;
    top:calc(100% + 10px);
    background:rgba(255,255,255,.98);
    border:1px solid var(--line);
    border-radius:22px;
    box-shadow:var(--shadow);
    padding:10px;
    flex-direction:column;
    align-items:stretch;
  }
  .nav-links.open{display:flex}
  .nav-links a{padding:13px 14px}
  .nav-actions{
    gap:8px;
  }
  .nav-actions .button{
    width:auto;
    min-width:0;
    min-height:42px;
    padding:10px 14px;
    font-size:.9rem;
  }
  .hero-shell,.page-shell,.band,.cta-panel,.feature-placeholder,.footer-shell,.legal-card,.download-card{
    padding:22px;
  }
  .brand-mark{
    width:54px;
    height:54px;
  }
  .site-header .brand-mark{
    width:min(184px, 46vw);
    height:auto;
    aspect-ratio:216 / 57;
  }
  h1{max-width:none}
  h2{max-width:none}
  .footer-legal-copy{
    max-width:none;
  }
  .page-escape{
    top:22px;
    right:22px;
  }
}

@media (max-width: 620px){
  .shot-grid,.shot-grid.shot-grid-four,.feature-grid,.feature-grid.grid-2,.hero-banners,.card-grid.grid-3,.card-grid.grid-2,.legal-links-grid,.device-choice-grid{
    grid-template-columns:1fr;
  }
  .site-header .container{
    width:min(calc(100% - 18px), var(--container));
  }
  .footer-links-four{
    grid-template-columns:repeat(2, minmax(0, 1fr));
    row-gap:20px;
  }
  .feature-card.span-two{grid-column:auto}
  .button{width:100%}
  .app-store-badge{width:100%}
  .device-buttons .button,.download-action .button,.hero-actions .button,.page-actions .button,.cta-actions .button{
    width:100%;
  }
  .nav-actions .button,
  .footer-column a.button{
    width:auto;
  }
  .nav-actions .button{
    min-width:0;
    min-height:40px;
    padding:9px 12px;
    font-size:.86rem;
  }
  .menu-button{
    width:40px;
    height:40px;
    border-radius:12px;
  }
  .site-header .brand-mark{
    width:min(166px, 44vw);
  }
  .footer-social{
    grid-column:auto;
    padding-top:0;
    border-top:0;
  }
  .architecture-desktop{
    display:none;
  }
  .architecture-mobile{
    display:grid;
  }
  .architecture-row{
    grid-template-columns:1fr;
    gap:4px;
  }
  .architecture-row span::before{
    content:"";
  }
  .architecture-row strong,
  .architecture-row span{
    font-size:.92rem;
  }
}
