/* DLA DFY landing page. Brand tokens pulled from alexrfunk.com */
:root {
  --navy: #0E111D;
  --navy-2: #151a2b;
  --accent: #119CEB;
  --accent-deep: #0b7fc2;
  --paper: #F9F8F4;
  --white: #ffffff;
  --ink: #0E111D;
  --muted: #5b6272;
  --line: #e4e2da;
  --line-dark: rgba(255, 255, 255, .12);
  --radius: 18px;
  --pill: 300px;
  --shadow: 0 24px 60px -24px rgba(14, 17, 29, .45);
  --font: "Jost", "Futura", "Century Gothic", "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
section[id] { scroll-margin-top: 68px; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
body.modal-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3 { margin: 0; line-height: 1.12; letter-spacing: -.01em; }
h1 { font-weight: 300; font-size: clamp(2.6rem, 5.6vw, 4.4rem); }
h2 { font-weight: 400; font-size: clamp(1.9rem, 3.6vw, 2.8rem); }
h3 { font-weight: 500; font-size: 1.2rem; }
p { margin: 0; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }

.wrap { width: min(1140px, 100% - 48px); margin-inline: auto; }
.narrow { max-width: 760px; margin-inline: auto; text-align: center; }
.accent { color: var(--accent); }
.lead { font-size: 1.15rem; color: var(--muted); margin-top: 18px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 15px 30px;
  border-radius: var(--pill);
  font: 500 1rem/1 var(--font);
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--accent); color: var(--white); }
.btn--primary:hover { background: var(--accent-deep); }
.btn--ghost { color: var(--white); border-color: rgba(255,255,255,.35); }
.btn--ghost:hover { border-color: var(--white); }
.btn--sm { padding: 10px 22px; font-size: .92rem; }
.btn--block { width: 100%; }
.btn[disabled] { opacity: .6; cursor: progress; transform: none; }

/* Nav */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(14, 17, 29, .92);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line-dark);
}
.nav__inner { display: flex; align-items: center; gap: 28px; height: 68px; }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: var(--white); margin-right: auto; }
.brand__name { font-weight: 500; letter-spacing: .14em; text-transform: uppercase; font-size: .9rem; }
.brand__tag { font-size: .9rem; font-weight: 600; letter-spacing: .14em; color: var(--accent); }
.brand__tag--pill { font-size: .7rem; letter-spacing: .12em; padding: 3px 9px; border-radius: var(--pill); background: var(--accent); color: var(--white); }
.nav__links { display: flex; gap: 26px; }
.nav__links a { color: rgba(255,255,255,.75); text-decoration: none; font-size: .95rem; }
.nav__links a:hover { color: var(--white); }

.burger { display: none; width: 42px; height: 42px; border: 0; border-radius: 10px; background: transparent; cursor: pointer; position: relative; flex: none; }
.burger span { position: absolute; left: 10px; right: 10px; height: 2px; border-radius: 2px; background: var(--white); transition: transform .2s ease, opacity .2s ease; }
.burger span:nth-child(1) { top: 13px; }
.burger span:nth-child(2) { top: 20px; }
.burger span:nth-child(3) { top: 27px; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu { border-top: 1px solid var(--line-dark); padding: 8px 18px 20px; display: grid; }
.mobile-menu[hidden], .form--done[hidden], #apply-view[hidden] { display: none; }
.mobile-menu a { color: var(--white); text-decoration: none; font-size: 1.1rem; padding: 14px 4px; border-bottom: 1px solid var(--line-dark); }
.mobile-menu .btn { margin-top: 16px; }

/* Hero */
.hero {
  position: relative;
  background:
    radial-gradient(900px 500px at 85% 10%, rgba(17,156,235,.22), transparent 60%),
    radial-gradient(700px 400px at 0% 100%, rgba(17,156,235,.10), transparent 60%),
    var(--navy);
  color: var(--white);
  padding: 88px 0 64px;
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, #000 30%, transparent 90%);
  pointer-events: none;
}
.hero__grid { position: relative; display: grid; grid-template-columns: 1.25fr .85fr; gap: 64px; align-items: center; }
.hero__sub { font-size: 1.18rem; color: rgba(255,255,255,.78); margin-top: 24px; max-width: 580px; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

/* Deal packet card */
.packet {
  background: var(--white); color: var(--ink);
  border-radius: 22px; padding: 20px;
  box-shadow: 0 40px 80px -30px rgba(0,0,0,.6), 0 0 0 1px rgba(255,255,255,.06);
  transform: rotate(1.2deg);
}
.packet__head { margin-bottom: 14px; }
.packet__label { font-weight: 600; letter-spacing: .12em; text-transform: uppercase; font-size: .75rem; }
.packet__img { border-radius: 12px; overflow: hidden; aspect-ratio: 32 / 15; }
.packet__img svg { width: 100%; height: 100%; display: block; }
.packet__list { list-style: none; margin: 16px 0 0; padding: 0; }
.packet__list li { display: flex; align-items: center; gap: 12px; padding: 9px 0; border-bottom: 1px solid var(--line); font-size: .98rem; }
.packet__list li:last-child { border-bottom: 0; }
.check {
  flex: none; width: 20px; height: 20px; border-radius: 50%;
  background: var(--accent) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M5.5 10.5l3 3 6-7' fill='none' stroke='white' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 20px no-repeat;
}

/* Promise: three boxes, left to right at every width */
.promise {
  position: relative;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(8px, 2vw, 20px);
  margin: 72px 0 0;
}
.promise__item {
  border: 1px solid var(--line-dark); border-radius: var(--radius);
  background: rgba(255,255,255,.04);
  padding: clamp(14px, 2.6vw, 28px);
  display: flex; flex-direction: column; justify-content: center;
}
.promise dt { font-size: clamp(1.15rem, 3.4vw, 2.2rem); font-weight: 300; color: var(--white); line-height: 1.1; }
.promise dd { margin: 6px 0 0; color: rgba(255,255,255,.65); font-size: clamp(.78rem, 1.6vw, .98rem); line-height: 1.4; }

/* Sections */
.section { padding: 104px 0; }
.section--tint { background: var(--paper); }

/* Grind list */
.grind {
  list-style: none; padding: 0; margin: 56px 0 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.grind li {
  display: flex; gap: 16px; align-items: baseline;
  padding: 24px; border: 1px solid var(--line); border-radius: var(--radius);
  font-size: 1.05rem;
}
.grind li span { color: var(--accent); font-weight: 600; font-size: .85rem; letter-spacing: .08em; }
.grind__close { text-align: center; margin-top: 44px; font-size: 1.25rem; color: var(--muted); }
.grind__close strong { color: var(--ink); font-weight: 500; }

/* Fit */
.fit { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 56px; }
.fit__col { background: var(--white); border-radius: var(--radius); padding: 36px; border: 1px solid var(--line); }
.fit__col h3 { margin-bottom: 20px; }
.fit__col ul { list-style: none; margin: 0; padding: 0; }
.fit__col li { position: relative; padding: 11px 0 11px 34px; border-top: 1px solid var(--line); }
.fit__col li::before {
  content: ""; position: absolute; left: 0; top: 14px; width: 20px; height: 20px; border-radius: 50%;
}
.fit__col--yes li::before {
  background: var(--accent) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M5.5 10.5l3 3 6-7' fill='none' stroke='white' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 20px no-repeat;
}
.fit__col--no { background: transparent; }
.fit__col--no li { color: var(--muted); }
.fit__col--no li::before {
  background: #d9d6cc url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M7 7l6 6M13 7l-6 6' fill='none' stroke='white' stroke-width='2.2' stroke-linecap='round'/%3E%3C/svg%3E") center / 20px no-repeat;
}

/* VSL */
.vsl {
  margin: 56px auto 0; max-width: 920px;
  aspect-ratio: 16 / 9; border-radius: 22px; overflow: hidden;
  background:
    radial-gradient(600px 300px at 70% 20%, rgba(17,156,235,.35), transparent 60%),
    var(--navy);
  box-shadow: var(--shadow);
}
.vsl iframe, .vsl video { width: 100%; height: 100%; border: 0; display: block; background: var(--navy); object-fit: contain; }
.vsl__cta { display: flex; justify-content: center; margin-top: 28px; }
.vsl__cta .btn { min-width: 220px; }
.vsl__placeholder { height: 100%; display: grid; place-content: center; justify-items: center; text-align: center; color: var(--white); padding: 24px; }
.vsl__play {
  width: 84px; height: 84px; border-radius: 50%; margin-bottom: 20px;
  background: var(--accent);
  box-shadow: 0 0 0 12px rgba(17,156,235,.18);
  position: relative;
}
.vsl__play::after {
  content: ""; position: absolute; left: 34px; top: 27px;
  border-left: 22px solid var(--white); border-top: 15px solid transparent; border-bottom: 15px solid transparent;
}
.vsl__title { font-size: 1.4rem; font-weight: 400; }
.vsl__meta { color: rgba(255,255,255,.6); margin-top: 6px; }

/* Steps */
.steps { list-style: none; padding: 0; margin: 64px auto 0; max-width: 920px; }
.step { display: grid; grid-template-columns: 76px 1fr; gap: 20px; padding: 30px 0; border-top: 1px solid var(--line); align-items: baseline; }
.step:last-child { border-bottom: 1px solid var(--line); }
.step__n { font-size: 1.9rem; font-weight: 300; color: var(--accent); line-height: 1; }
.step h3 { font-size: 1.3rem; }
.step p { color: var(--muted); margin-top: 8px; }

/* Split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 56px; }
.split__col { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 36px; }
.split__col--we { background: var(--navy); color: var(--white); border-color: var(--navy); }
.split__col h3 { margin-bottom: 18px; font-size: 1.4rem; font-weight: 400; }
.split__col ul { margin: 0; padding: 0; list-style: none; }
.split__col li { padding: 11px 0; border-top: 1px solid var(--line); }
.split__col--we li { border-color: var(--line-dark); color: rgba(255,255,255,.85); }

/* Band */
.band { background: var(--navy); color: var(--white); padding: 88px 0; }
.band__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.band p { color: rgba(255,255,255,.75); font-size: 1.12rem; }

/* Timeline */
.timeline { list-style: none; padding: 0; margin: 56px 0 0; display: grid; grid-template-columns: repeat(5, 1fr); position: relative; }
.timeline::before { content: ""; position: absolute; left: 0; right: 0; top: 9px; height: 2px; background: linear-gradient(90deg, var(--accent), #bfe3f8); }
.timeline li { position: relative; padding: 38px 18px 0 0; }
.timeline li::before { content: ""; position: absolute; top: 0; left: 0; width: 20px; height: 20px; border-radius: 50%; background: var(--white); border: 3px solid var(--accent); }
.timeline__when { display: block; font-weight: 500; font-size: 1.1rem; }
.timeline__what { display: block; color: var(--muted); margin-top: 4px; font-size: .98rem; }

/* Team */
.people { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 56px; }
.person { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 36px; display: flex; flex-direction: column; }
.person__img { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; margin-bottom: 22px; background: var(--line); }
.person__img--fallback { position: relative; overflow: hidden; background: var(--navy); display: grid; place-items: center; }
.person__img--fallback::before { content: attr(data-initials); color: var(--white); font-size: 2.2rem; font-weight: 300; letter-spacing: .04em; }
/* Cutout headshot on a soft blue circle (matches Alex's). Sized so the crop runs hair to chest with headroom. */
.person__img--fallback:has(img) { background: #d4ebfa; }
.person__img--fallback:has(img)::before { content: none; }
.person__img--fallback img { position: absolute; top: 7%; left: 50%; width: 132%; max-width: none; height: auto; transform: translateX(-50%); }
.person h3 { font-size: 1.7rem; font-weight: 400; }
.person__role { color: var(--accent); font-weight: 500; margin-top: 4px; }
.person__bio { color: var(--muted); margin-top: 14px; }
.stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: auto 0 0; padding-top: 28px; }
.stats div { border-top: 2px solid var(--accent); padding-top: 12px; }
.stats dt { font-size: 2rem; font-weight: 300; line-height: 1.1; }
.stats dd { margin: 4px 0 0; color: var(--muted); font-size: .92rem; }

/* Case studies */
.cases { max-width: 960px; margin-top: 56px; display: grid; gap: 20px; }
.case { border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(22px, 3.4vw, 36px); background: var(--white); }
.case__head { display: flex; gap: 18px; align-items: baseline; }
.case__n { font-size: 1.6rem; font-weight: 300; color: var(--accent); line-height: 1; }
.case__head h3 { font-size: 1.45rem; font-weight: 500; }
.case__meta { color: var(--muted); font-size: .95rem; margin-top: 4px; }
.case__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(10px, 2vw, 24px); margin: 24px 0 0; padding: 20px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.case__stats dt { font-size: clamp(.66rem, 1.3vw, .76rem); font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.case__stats dd { margin: 6px 0 0; font-size: clamp(1.3rem, 3.6vw, 2.2rem); font-weight: 500; line-height: 1.1; font-variant-numeric: tabular-nums; }
.case__stats dd small { display: block; font-size: clamp(.72rem, 1.4vw, .85rem); font-weight: 400; color: var(--muted); margin-top: 6px; }
.case__stats:last-child { border-bottom: 0; padding-bottom: 0; }
.case__stats .coc dd { color: var(--accent); }
.case__stats small.tag { color: var(--accent); font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.case__body { margin-top: 18px; color: var(--muted); }
.case__next { margin-top: 22px; padding: 20px; border-radius: 14px; background: var(--paper); }
.case__next-title { font-weight: 600; font-size: .85rem; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); }
.case__next-title span { display: block; margin-top: 2px; font-weight: 400; letter-spacing: 0; text-transform: none; color: var(--muted); font-size: .92rem; }
.table-scroll { overflow-x: auto; margin-top: 12px; }
.case__next table { width: 100%; min-width: 480px; border-collapse: collapse; font-variant-numeric: tabular-nums; }
.case__next th { text-align: left; font-size: .8rem; font-weight: 500; color: var(--muted); padding: 6px 12px 6px 0; }
.case__next td { padding: 8px 12px 8px 0; font-weight: 500; border-top: 1px solid var(--line); }
.case__next td.coc { color: var(--accent); }
.case__fine { color: var(--muted); font-size: .78rem; line-height: 1.6; margin-top: 8px; }

/* FAQ */
.faq { margin-top: 44px; text-align: left; }
.faq details { border-top: 1px solid var(--line); }
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer;
  padding: 22px 40px 22px 0; position: relative;
  font-size: 1.12rem; font-weight: 500;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 6px; top: 50%; width: 12px; height: 12px;
  border-right: 2px solid var(--accent); border-bottom: 2px solid var(--accent);
  transform: translateY(-70%) rotate(45deg); transition: transform .2s ease;
}
.faq details[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.faq details p { padding: 0 40px 24px 0; color: var(--muted); }

/* Apply modal */
.modal {
  width: min(640px, 100% - 32px); max-height: calc(100dvh - 48px);
  padding: 0; border: 0; border-radius: 24px;
  background: var(--white); color: var(--ink);
  box-shadow: 0 40px 100px -20px rgba(0,0,0,.6);
  overflow: auto; overscroll-behavior: contain;
}
.modal::backdrop { background: rgba(14, 17, 29, .72); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }
.modal[open] { animation: modal-in .22s ease; }
@keyframes modal-in { from { opacity: 0; transform: translateY(12px) scale(.98); } to { opacity: 1; transform: none; } }
.modal__inner { position: relative; padding: 36px; }
.modal__close {
  position: absolute; top: 16px; right: 16px; width: 40px; height: 40px;
  border: 0; border-radius: 50%; background: var(--paper); color: var(--ink);
  font-size: 1.6rem; line-height: 1; cursor: pointer;
}
.modal__close:hover { background: var(--line); }
.modal h2 { font-size: clamp(1.8rem, 4vw, 2.3rem); }

.apply__next { list-style: none; padding: 0; margin: 14px 0 26px; display: flex; flex-wrap: wrap; gap: 8px 20px; }
.apply__next li { display: flex; align-items: center; gap: 8px; color: var(--muted); font-size: .92rem; }
.apply__next span {
  width: 24px; height: 24px; border-radius: 50%; display: grid; place-items: center;
  border: 1.5px solid var(--accent); color: var(--accent); font-weight: 600; font-size: .78rem;
}

.form { display: grid; gap: 18px; }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form label { display: grid; gap: 6px; font-size: .92rem; font-weight: 500; }
.form .opt, .form legend span { color: var(--muted); font-weight: 400; }
.form input[type=text], .form input[type=email], .form input[type=tel], .form select, .form textarea {
  font: 400 1rem var(--font); color: var(--ink);
  padding: 13px 14px; border-radius: 12px;
  border: 1.5px solid var(--line); background: var(--paper);
  width: 100%;
  transition: border-color .15s ease, background .15s ease;
}
.form select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%235b6272' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-size: 12px; padding-right: 36px; }
.form input:focus, .form select:focus, .form textarea:focus { outline: none; border-color: var(--accent); background: var(--white); }
.form .invalid { border-color: #d64545 !important; background: #fff6f6 !important; }
.form textarea { resize: vertical; }
.form fieldset { border: 0; padding: 0; margin: 0; }
.form legend { font-size: .92rem; font-weight: 500; margin-bottom: 8px; padding: 0; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { position: relative; display: inline-flex !important; cursor: pointer; }
.chip input { position: absolute; opacity: 0; pointer-events: none; }
.chip span { padding: 9px 16px; border-radius: var(--pill); border: 1.5px solid var(--line); background: var(--paper); font-weight: 400; transition: all .15s ease; }
.chip input:checked + span { background: var(--accent); border-color: var(--accent); color: var(--white); }
.chip input:focus-visible + span { outline: 3px solid var(--accent); outline-offset: 2px; }
.form__error { color: #b42323; background: #fff1f1; border-radius: 10px; padding: 12px 14px; font-size: .95rem; }
.form__fine { font-size: .8rem; color: var(--muted); text-align: center; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; }

.form--done { text-align: center; padding: 24px 0 8px; display: grid; gap: 14px; justify-items: center; }
.form--done p { color: var(--muted); max-width: 440px; }
.form--done .btn { margin-top: 8px; max-width: 360px; }
.done__check {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--accent) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M5.5 10.5l3 3 6-7' fill='none' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 40px no-repeat;
  box-shadow: 0 0 0 10px rgba(17,156,235,.15);
  margin-bottom: 8px;
}

/* Footer */
.footer { background: #0a0c15; color: rgba(255,255,255,.6); padding: 48px 0; font-size: .9rem; }
.footer__inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 40px; align-items: start; }
.brand--foot { margin-bottom: 10px; }
.footer a { color: rgba(255,255,255,.8); }
.footer__legal { font-size: .82rem; line-height: 1.6; }

/* Reveal */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn:hover { transform: none; }
  .modal[open] { animation: none; }
}

/* Responsive */
@media (max-width: 980px) {
  .hero__grid, .band__inner { grid-template-columns: 1fr; gap: 48px; }
  .packet { transform: none; max-width: 440px; }
  .grind { grid-template-columns: 1fr 1fr; }
  .timeline { grid-template-columns: 1fr; }
  .timeline::before { left: 9px; right: auto; top: 0; bottom: 0; width: 2px; height: auto; background: linear-gradient(180deg, var(--accent), #bfe3f8); }
  .timeline li { padding: 0 0 28px 40px; }
}
@media (max-width: 820px) {
  .nav__links { display: none; }
  .burger { display: block; }
  .nav__inner { gap: 12px; }
}
@media (min-width: 821px) {
  .mobile-menu { display: none !important; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .wrap { width: min(1140px, 100% - 36px); }
  .brand__name { font-size: .78rem; letter-spacing: .1em; }
  .brand__tag { font-size: .78rem; }
  .hero { padding: 64px 0 48px; }
  .packet { display: none; }
  .section { padding: 76px 0; }
  .promise { margin-top: 48px; }
  .grind, .fit, .split, .people { grid-template-columns: 1fr; }
  .fit__col, .split__col, .person { padding: 26px; }
  .modal__inner { padding: 28px 22px; }
  .form .row { grid-template-columns: 1fr; }
  .step { grid-template-columns: 1fr; gap: 8px; }
  .footer__inner { grid-template-columns: 1fr; }
}
@media (max-width: 420px) {
  .nav__apply { display: none; }
}
