/* Phirti marketing site — Duty on the move. */
:root {
  --navy: #041428;
  --navy-2: #0b2744;
  --ink: #0e1b2c;
  --muted: #5b6b80;
  --line: rgba(14, 44, 78, 0.12);
  --paper: #f4f8fc;
  --white: #ffffff;
  --sky: #2c9aff;
  --sky-2: #58c4ff;
  --teal: #0a7c7c;
  --green: #1f9d55;
  --gold: #c9a227;
  --danger: #e11d48;
  --radius: 22px;
  --shadow: 0 24px 60px rgba(4, 20, 40, 0.16);
  --max: 1160px;
  --header-h: 76px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  line-height: 1.55;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  width: auto;
  height: auto;
  margin: 0;
  clip: auto;
  clip-path: none;
  overflow: visible;
  left: 12px;
  top: 12px;
  z-index: 100;
  padding: 8px 12px;
  border-radius: 8px;
  background: var(--sky);
  color: #fff;
}

/* Masthead */
.masthead {
  background: var(--navy);
  color: #fff;
  text-align: center;
  padding: 26px 20px 22px;
}

.masthead-line {
  margin: 0;
  font-size: clamp(1.85rem, 4.6vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.12;
}

.masthead-line em {
  font-style: italic;
}

.masthead-line em:last-child {
  color: var(--sky-2);
  font-weight: 700;
  margin-left: 0.22em;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header-h);
  display: flex;
  align-items: center;
  backdrop-filter: blur(16px);
  background: rgba(244, 248, 252, 0.82);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, background 0.2s;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(255, 255, 255, 0.9);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 8px 18px rgba(4, 20, 40, 0.25);
}

.brand span {
  font-size: 1.2rem;
}

.brand em {
  font-style: normal;
  color: var(--sky);
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted);
}

.nav a:hover,
.nav a.is-active {
  color: var(--navy);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

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

.btn-primary {
  background: linear-gradient(180deg, var(--sky-2), var(--sky));
  color: #fff;
  box-shadow: 0 12px 24px rgba(44, 154, 255, 0.35);
}

.btn-dark {
  background: var(--navy);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--line);
}

.btn-whatsapp {
  background: #25d366;
  color: #062;
}

.wa-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 6px 16px 6px 10px;
  border-radius: 999px;
  background: #25d366;
  color: #06351c;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(37, 211, 102, 0.28);
}

.wa-cta:hover {
  transform: translateY(-1px);
  background: #20bd5a;
}

.wa-cta__icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.wa-cta__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.15;
}

.wa-cta small {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  opacity: 0.82;
}

.wa-cta strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 48px 0 72px;
  background:
    radial-gradient(900px 420px at 80% -10%, rgba(44, 154, 255, 0.28), transparent 60%),
    linear-gradient(180deg, #e8f3ff 0%, var(--paper) 70%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(44, 154, 255, 0.12);
  color: #1567b8;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  letter-spacing: -0.04em;
  line-height: 1.12;
  margin: 0 0 12px;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

h3 {
  font-size: 1.25rem;
}

.lead {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 56ch;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 16px 0 18px;
}

.store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.store-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 8px 18px 8px 14px;
  border-radius: 14px;
  background: #0b1220;
  color: #fff;
  min-width: 188px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.store-badge:hover {
  background: #000;
}

.store-badge__mark {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.store-badge small {
  display: block;
  opacity: 0.72;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.store-badge strong {
  display: block;
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 32px;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-height: 124px;
  padding: 16px 16px 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(247, 251, 255, 0.88));
  border: 1px solid rgba(201, 162, 39, 0.28);
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(4, 20, 40, 0.06);
  text-decoration: none;
  color: inherit;
}

.stat:hover {
  transform: translateY(-2px);
  border-color: rgba(201, 162, 39, 0.55);
}

.stat__kicker {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8a6d12;
}

.stat b {
  display: block;
  font-size: 1.18rem;
  letter-spacing: -0.03em;
}

.stat__copy {
  color: var(--muted);
  font-size: 0.86rem;
}

.stat__prices {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stat__prices b {
  font-size: 1.12rem;
}

.stat__prices small {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0;
  opacity: 0.7;
}

.stat.is-premium {
  background: linear-gradient(165deg, #16345a 0%, #041428 70%);
  color: #fff;
  border-color: rgba(201, 162, 39, 0.5);
  box-shadow: 0 16px 36px rgba(4, 20, 40, 0.22);
}

.stat.is-premium .stat__kicker {
  color: #f3d37a;
}

.stat.is-premium .stat__copy {
  color: rgba(255, 255, 255, 0.72);
}

.stat.is-premium .stat__prices small {
  color: rgba(255, 255, 255, 0.7);
}

/* Device stage */
.device-stage {
  position: relative;
  min-height: 540px;
}

.laptop {
  width: 100%;
  background: #0d1c2e;
  border-radius: 18px;
  padding: 12px 12px 18px;
  box-shadow: var(--shadow);
}

.laptop-bar {
  height: 14px;
  display: flex;
  gap: 6px;
  align-items: center;
  margin-bottom: 8px;
}

.laptop-bar i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3d5570;
}

.laptop-screen {
  background: #eef5fb;
  border-radius: 10px;
  min-height: 280px;
  overflow: hidden;
  position: relative;
}

.phone {
  position: absolute;
  right: 8%;
  bottom: -28px;
  width: 210px;
  background: #08111c;
  border-radius: 32px;
  padding: 10px;
  box-shadow: 0 30px 50px rgba(4, 20, 40, 0.4);
  transform: rotate(-8deg);
}

.phone-notch {
  width: 72px;
  height: 8px;
  background: #1b2b3e;
  border-radius: 8px;
  margin: 4px auto 8px;
}

.phone-screen {
  background: #f7fbff;
  border-radius: 22px;
  min-height: 360px;
  overflow: hidden;
  position: relative;
}

/* Screenshot slots */
.shot-slot {
  position: relative;
  margin: 0;
  height: 100%;
  min-height: 0;
}

.shot-slot__frame {
  position: relative;
  height: 100%;
  min-height: inherit;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(44, 154, 255, 0.08), transparent 40%),
    repeating-linear-gradient(
      -18deg,
      rgba(11, 39, 68, 0.04) 0 10px,
      transparent 10px 20px
    );
}

.shot-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.shot-slot.is-empty img {
  display: none;
}

.shot-slot__placeholder {
  position: absolute;
  inset: 0;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  color: var(--navy-2);
}

.shot-slot.is-empty .shot-slot__placeholder {
  display: flex;
}

.shot-slot__id {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: #fff;
  font-weight: 800;
  margin-bottom: 10px;
}

.shot-slot__placeholder code {
  display: inline-block;
  margin-top: 8px;
  padding: 4px 8px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.8);
  font-size: 0.75rem;
}

.shot-note {
  margin-top: 8px;
  font-size: 0.82rem;
  color: var(--muted);
}

/* Sections */
.section {
  padding: 84px 0;
}

.section-head {
  max-width: 720px;
  margin-bottom: 36px;
}

.kicker {
  color: var(--sky);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin-bottom: 8px;
}

.grid-3,
.grid-4,
.grid-2 {
  display: grid;
  gap: 18px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: 0 10px 30px rgba(4, 20, 40, 0.04);
}

.card h3 {
  margin-top: 10px;
}

.icon-pill {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: #e8f4ff;
  color: #1567b8;
  font-size: 1.3rem;
}

.icon-pill.teal {
  background: #e6f6f4;
  color: var(--teal);
}

.icon-pill.gold {
  background: #fff6d8;
  color: #8a6d12;
}

.icon-pill.green {
  background: #e8f8ee;
  color: var(--green);
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin: 56px 0;
}

.feature-row.reverse {
  direction: rtl;
}

.feature-row.reverse > * {
  direction: ltr;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}

.checklist li {
  position: relative;
  padding-left: 28px;
  margin: 10px 0;
  color: var(--muted);
}

.checklist li::before {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 4px;
  background: var(--sky) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath fill='white' d='M4.7 9.2 1.8 6.3l1.1-1.1 1.8 1.8 4.4-4.4 1.1 1.1z'/%3E%3C/svg%3E") center / 10px no-repeat;
}

.mock-frame {
  position: relative;
  height: 340px;
  min-height: 0;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 8px solid #fff;
  background: #dceaf6;
}

.mock-frame.phone-lg {
  max-width: 260px;
  width: 100%;
  height: 520px;
  margin-inline: auto;
  border-radius: 36px;
}

/* Platforms */
.platforms {
  background: var(--navy);
  color: #fff;
}

.platforms .kicker {
  color: var(--sky-2);
}

.platforms p,
.platforms .lead {
  color: rgba(255, 255, 255, 0.74);
}

/* Pricing */
.price-grid {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: 20px;
  align-items: stretch;
}

.price-card {
  background: #fff;
  border-radius: 28px;
  padding: 28px;
  border: 1px solid var(--line);
}

.price-card.featured {
  background: linear-gradient(180deg, #0b2744, #041428);
  color: #fff;
  box-shadow: var(--shadow);
}

.price {
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  margin: 6px 0 0;
}

.price span {
  font-size: 1rem;
  font-weight: 600;
  opacity: 0.7;
}

.price-note {
  margin: 10px 0 0;
  font-size: 0.92rem;
  font-weight: 700;
}

.price-card.featured .price {
  color: #fff;
}

.price-card.featured .price-note {
  color: #f3d37a;
}

.badge {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(44, 154, 255, 0.16);
  color: #1567b8;
  font-size: 0.78rem;
  font-weight: 800;
}

.featured .badge {
  background: rgba(201, 162, 39, 0.2);
  color: #f3d37a;
}

.compare {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
}

.compare th,
.compare td {
  text-align: left;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
}

.compare th {
  background: #eef5fb;
}

/* FAQ */
.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 18px;
  margin: 10px 0;
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
}

.faq p {
  color: var(--muted);
  margin: 10px 0 4px;
}

/* Roles */
.role-card .who {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Footer */
.site-footer {
  background: #03101f;
  color: rgba(255, 255, 255, 0.78);
  padding: 48px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 28px;
}

.site-footer a:hover {
  color: #fff;
}

.footer-brand {
  display: flex;
  gap: 12px;
  align-items: center;
  color: #fff;
  font-weight: 800;
  margin-bottom: 12px;
}

.footer-brand img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
}

.legal {
  margin-top: 32px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.85rem;
}

.a3 {
  display: flex;
  align-items: center;
  gap: 8px;
}

.a3 img {
  height: 28px;
  width: auto;
  background: #000;
  border-radius: 6px;
}

.role-card .who {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 6px;
}

.page-hero h1,
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.price-card.featured .checklist li,
.price-card.featured p {
  color: rgba(255, 255, 255, 0.82);
}

.price-card.featured .checklist li::before {
  background-color: var(--sky);
}

.shot-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.shot-card h3 {
  margin: 12px 0 4px;
  font-size: 1.05rem;
}

.shot-card p {
  color: var(--muted);
  margin: 0;
}

.compare {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}

.compare th,
.compare td {
  text-align: left;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
}

.compare th {
  background: #eef5fb;
}

.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 18px;
  margin: 10px 0;
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
}

.faq p {
  color: var(--muted);
  margin: 10px 0 4px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
}

.whatsapp-card {
  background: linear-gradient(160deg, #25d366, #128c47);
  color: #fff;
  border: 0;
}

.whatsapp-card p {
  color: rgba(255, 255, 255, 0.92);
}

.cta-band {
  background:
    radial-gradient(600px 200px at 90% 0%, rgba(44, 154, 255, 0.35), transparent),
    var(--navy);
  color: #fff;
  border-radius: 32px;
  padding: 42px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.75);
}

.shot-note {
  margin-top: 8px;
  font-size: 0.82rem;
  color: var(--muted);
}

.shot-note code {
  font-size: 0.78rem;
}

.feature-row.reverse {
  direction: rtl;
}

.feature-row.reverse > * {
  direction: ltr;
}

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

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.icon-pill.gold {
  background: #fff6d8;
  color: #8a6d12;
}

.icon-pill.green {
  background: #e8f8ee;
  color: var(--green);
}

.nav.is-open {
  display: flex;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(255, 255, 255, 0.92);
}

/* Page hero */
.page-hero {
  padding: 56px 0 24px;
  background: linear-gradient(180deg, #dceeff, var(--paper));
}

.crumbs {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 12px;
}

/* Steps */
.steps {
  counter-reset: step;
  display: grid;
  gap: 16px;
}

.step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 16px;
  align-items: start;
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  border: 1px solid var(--line);
}

.step::before {
  counter-increment: step;
  content: counter(step);
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--navy);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.2rem;
}

/* Shot gallery */
.shot-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.shot-card .mock-frame {
  height: 200px;
  border-width: 4px;
}

.shot-card .mock-frame.phone-lg {
  max-width: 180px;
  height: 360px;
}

.shot-card h3 {
  margin: 12px 0 4px;
  font-size: 1.05rem;
}

/* CTA band */
.cta-band {
  background:
    radial-gradient(600px 200px at 90% 0%, rgba(44, 154, 255, 0.35), transparent),
    var(--navy);
  color: #fff;
  border-radius: 32px;
  padding: 42px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.75);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
}

.whatsapp-card {
  background: linear-gradient(160deg, #25d366, #128c47);
  color: #fff;
  border: 0;
}

.whatsapp-card p {
  color: rgba(255, 255, 255, 0.9);
}

/* Map decoration */
.map-dots {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 20% 30%, #2c9aff 0 5px, transparent 6px),
    radial-gradient(circle at 62% 22%, #58c4ff 0 4px, transparent 5px),
    radial-gradient(circle at 78% 58%, #2c9aff 0 6px, transparent 7px),
    radial-gradient(circle at 38% 72%, #0a7c7c 0 5px, transparent 6px);
  opacity: 0.7;
}

@media (max-width: 1100px) {
  .wa-cta small {
    display: none;
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .feature-row,
  .feature-row.reverse,
  .price-grid,
  .footer-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .grid-3,
  .grid-4,
  .shot-gallery,
  .hero-stats {
    grid-template-columns: 1fr 1fr;
  }

  .phone {
    position: relative;
    right: auto;
    bottom: auto;
    margin: 18px auto 0;
    transform: none;
  }

  .nav {
    display: none;
  }

  .wa-cta small {
    display: none;
  }

  .wa-cta {
    min-height: 44px;
    padding: 6px 12px 6px 8px;
  }

  .wa-cta strong {
    font-size: 0.82rem;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .nav.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: #fff;
    padding: 18px;
    border-bottom: 1px solid var(--line);
  }

  .cta-band {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .grid-3,
  .grid-4,
  .grid-2,
  .shot-gallery,
  .hero-stats {
    grid-template-columns: 1fr;
  }

  .container,
  .header-inner {
    width: min(var(--max), calc(100% - 24px));
  }

  .mock-frame {
    height: 220px;
  }

  .mock-frame.phone-lg,
  .shot-card .mock-frame.phone-lg {
    max-width: 220px;
    height: 440px;
  }
}
