/* MeetDogs landing — static edition */
:root {
  --navy: #08284f;
  --navy-2: #0e365f;
  --blue: #0879eb;
  --blue-2: #1fa8ed;
  --cyan: #6ad8ff;
  --sky: #ecf9ff;
  --sky-2: #dff4ff;
  --green: #3c9b5b;
  --green-2: #65bd68;
  --mint: #eefaf0;
  --white: #ffffff;
  --text: #0a2a50;
  --muted: #5e748b;
  --line: rgba(8, 40, 79, .12);
  --shadow: 0 24px 70px rgba(14, 54, 95, .12);
  --shadow-soft: 0 14px 40px rgba(14, 54, 95, .10);
  --radius-lg: 34px;
  --radius-md: 24px;
  --radius-sm: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button { cursor: pointer; }
:focus-visible { outline: 3px solid rgba(8, 121, 235, .35); outline-offset: 3px; }

.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.section { padding: 104px 0; }
.skip-link {
  position: fixed; left: 16px; top: -60px; z-index: 999;
  background: var(--navy); color: #fff; padding: 12px 16px; border-radius: 10px;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(8,40,79,.08);
}
.header-inner { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-weight: 850; letter-spacing: -.02em; }
.brand img { width: 52px; height: 52px; object-fit: cover; border-radius: 50%; box-shadow: 0 8px 24px rgba(8,40,79,.12); }
.brand span { font-size: 1.08rem; }
.main-nav { display: flex; align-items: center; gap: 30px; color: #36516c; font-size: .94rem; font-weight: 650; }
.main-nav > a:not(.button):hover { color: var(--blue); }

.button {
  min-height: 52px;
  padding: 0 22px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  font-weight: 800;
  letter-spacing: -.01em;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary {
  color: #fff;
  background: linear-gradient(135deg, #0879eb, #1ba6ef);
  box-shadow: 0 12px 30px rgba(8,121,235,.26);
}
.button-primary:hover { box-shadow: 0 16px 34px rgba(8,121,235,.32); }
.button-secondary { color: var(--blue); background: rgba(255,255,255,.78); border-color: rgba(8,121,235,.35); }
.button-light { background: white; color: var(--blue); box-shadow: 0 12px 28px rgba(0,0,0,.10); }
.button-small { min-height: 42px; padding: 0 16px; border-radius: 12px; font-size: .90rem; }
.button-full { width: 100%; }
.mobile-nav-toggle { display: none; border: 0; background: transparent; width: 42px; height: 42px; padding: 8px; }
.mobile-nav-toggle span { display: block; height: 2px; background: var(--navy); margin: 5px 0; border-radius: 99px; }

.hero {
  position: relative;
  overflow: hidden;
  min-height: 720px;
  background:
    radial-gradient(circle at 8% 18%, rgba(106,216,255,.28), transparent 29%),
    radial-gradient(circle at 92% 14%, rgba(8,121,235,.16), transparent 27%),
    linear-gradient(180deg, #f9fdff 0%, #edf9ff 56%, #ffffff 100%);
}
.hero::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 170px;
  background:
    radial-gradient(ellipse at 12% 100%, #a9da74 0 22%, transparent 22.5%),
    radial-gradient(ellipse at 35% 105%, #83c665 0 24%, transparent 24.5%),
    radial-gradient(ellipse at 62% 104%, #9fd373 0 25%, transparent 25.5%),
    radial-gradient(ellipse at 88% 102%, #73b95c 0 24%, transparent 24.5%);
  opacity: .58;
  pointer-events: none;
}
.hero-grid { min-height: 720px; display: grid; grid-template-columns: 1fr .92fr; align-items: center; gap: 64px; padding-top: 74px; padding-bottom: 100px; position: relative; z-index: 2; }
.hero-copy { max-width: 610px; }
.eyebrow, .pill {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(8,121,235,.09);
  color: var(--blue);
  font-size: .78rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.eyebrow-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 5px rgba(8,121,235,.12); }
.hero h1 {
  margin: 22px 0 20px;
  font-size: clamp(3.2rem, 6vw, 5.65rem);
  line-height: .98;
  letter-spacing: -.055em;
  color: var(--navy);
}
.hero h1 span { color: var(--blue); }
.hero-lead { font-size: 1.17rem; color: #4c657d; max-width: 610px; margin: 0; }
.hero-actions { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; }
.payoff { margin-top: 26px; display: flex; align-items: center; gap: 13px; color: #516b84; }
.payoff p { margin: 0; }
.payoff strong { color: var(--blue); }
.payoff-paw { font-size: 1.55rem; }

.product-visual { min-height: 630px; position: relative; display: grid; place-items: center; }
.phone {
  width: min(360px, 76vw);
  padding: 12px;
  border-radius: 48px;
  background: linear-gradient(145deg, #20252a, #050709);
  box-shadow: 0 36px 80px rgba(3,31,57,.26), inset 0 0 0 2px rgba(255,255,255,.6);
  transform: rotate(1.3deg);
  position: relative;
  z-index: 4;
}
.phone-speaker { position: absolute; width: 106px; height: 24px; border-radius: 18px; background: #050709; left: 50%; transform: translateX(-50%); top: 18px; z-index: 6; }
.phone-screen { overflow: hidden; border-radius: 38px; background: #f9fbfd; min-height: 610px; }
.app-topbar { display: flex; justify-content: space-between; align-items: center; padding: 52px 20px 16px; background: white; }
.app-topbar div { display: grid; gap: 2px; }
.app-topbar small { color: #7b8d9f; font-size: .66rem; }
.app-topbar strong { font-size: 1rem; }
.bell { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%; background: #edf5fb; }
.mode-switch { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding: 12px 14px; background: white; border-top: 1px solid #eef3f7; }
.mode-chip { min-height: 78px; padding: 12px; border-radius: 15px; display: flex; align-items: flex-start; gap: 8px; color: white; }
.mode-chip > span { font-size: 1.2rem; }
.mode-chip div { display: grid; gap: 4px; }
.mode-chip strong { font-size: .74rem; letter-spacing: .03em; }
.mode-chip small { font-size: .55rem; opacity: .88; line-height: 1.25; }
.mode-chip-social { background: linear-gradient(135deg, #0782ef, #0b6ed8); }
.mode-chip-relax { background: linear-gradient(135deg, #52af64, #3a9556); }

.map {
  position: relative;
  height: 380px;
  overflow: hidden;
  background:
    linear-gradient(27deg, transparent 44%, rgba(255,255,255,.92) 45% 49%, transparent 50%),
    linear-gradient(-28deg, transparent 45%, rgba(255,255,255,.92) 46% 50%, transparent 51%),
    linear-gradient(88deg, transparent 46%, rgba(255,255,255,.92) 47% 50%, transparent 51%),
    #e7f1dd;
}
.map::before, .mini-map::before {
  content:""; position:absolute; inset:0;
  background:
    radial-gradient(ellipse at 18% 20%, rgba(106,184,87,.18) 0 16%, transparent 17%),
    radial-gradient(ellipse at 76% 22%, rgba(106,184,87,.16) 0 18%, transparent 19%),
    radial-gradient(ellipse at 73% 76%, rgba(99,179,90,.18) 0 18%, transparent 19%);
}
.park { position:absolute; border-radius: 45%; background:rgba(93,180,95,.18); }
.park-a { width: 110px; height: 80px; left: 18px; top: 58px; transform: rotate(-12deg); }
.park-b { width: 120px; height: 90px; right: -12px; bottom: 55px; }
.user-position { position:absolute; width: 20px; height: 20px; border: 4px solid white; border-radius:50%; background: var(--blue); left: 50%; top: 48%; transform:translate(-50%,-50%); box-shadow:0 0 0 18px rgba(8,121,235,.12),0 0 0 32px rgba(8,121,235,.05); z-index:3; }
.dog-pin { position:absolute; width:46px; height:46px; display:grid; place-items:center; border-radius:50%; background:white; box-shadow:0 7px 18px rgba(8,40,79,.18); border:3px solid; font-size:1rem; z-index:4; }
.social-pin { border-color:#1687f2; }
.relax-pin { border-color:#58ad64; }
.pin-1 { left:16%; top:16%; }
.pin-2 { right:17%; top:24%; }
.pin-3 { left:21%; bottom:23%; }
.pin-4 { right:12%; bottom:19%; }
.pin-5 { left:47%; bottom:8%; }
.map-control { position:absolute; right:13px; width:38px; height:38px; border:1px solid #e2ebf2; border-radius:50%; background:white; color:var(--navy); z-index:5; box-shadow:0 6px 14px rgba(8,40,79,.12); }
.control-filter { bottom:62px; }
.control-locate { bottom:16px; }
.app-bottom-nav { height:68px; display:grid; grid-template-columns:repeat(4,1fr); background:white; border-top:1px solid #eaf0f5; }
.app-bottom-nav span { display:grid; place-items:center; align-content:center; gap:2px; color:#8392a0; font-size:1rem; }
.app-bottom-nav small { font-size:.52rem; }
.app-bottom-nav .active { color:var(--blue); }

.floating-note { position:absolute; z-index:6; min-width:185px; padding:12px 14px; border-radius:17px; background:rgba(255,255,255,.92); backdrop-filter:blur(10px); box-shadow:var(--shadow-soft); display:flex; align-items:center; gap:10px; }
.floating-note strong { display:block; font-size:.78rem; }
.floating-note small { display:block; color:#647b90; font-size:.66rem; margin-top:2px; }
.note-social { left:-8px; top:25%; }
.note-relax { right:-26px; top:58%; }
.mini-icon { width:32px; height:32px; border-radius:50%; display:grid; place-items:center; color:white; font-size:.52rem; }
.paw-mini { background:var(--blue); }
.leaf-mini { background:var(--green); }
.brand-orbit { position:absolute; width:102px; height:102px; border-radius:50%; right:0; top:8%; z-index:2; opacity:.96; }
.brand-orbit img { width:100%; height:100%; object-fit:cover; border-radius:50%; box-shadow:var(--shadow-soft); border:5px solid rgba(255,255,255,.8); }

.section-heading { max-width: 760px; margin-bottom: 52px; }
.section-heading.centered { text-align:center; margin-left:auto; margin-right:auto; }
.section-kicker { color:var(--blue); text-transform:uppercase; font-weight:850; letter-spacing:.09em; font-size:.76rem; margin:0 0 10px; }
.section-heading h2, .founders-copy h2, .final-cta h2, .waitlist-card h2 {
  margin:0;
  font-size:clamp(2.2rem,4vw,3.65rem);
  line-height:1.02;
  letter-spacing:-.045em;
}
.section-heading > p:last-child { color:var(--muted); font-size:1.05rem; margin:16px 0 0; }

.modes-section { background:#fff; }
.mode-cards { display:grid; grid-template-columns:1fr 1fr; gap:26px; }
.mode-card { min-height:570px; border-radius:var(--radius-lg); padding:38px; position:relative; overflow:hidden; border:1px solid rgba(8,40,79,.08); box-shadow:var(--shadow-soft); }
.social-card { background:linear-gradient(160deg,#f8fdff 0%,#eaf8ff 100%); }
.relax-card { background:linear-gradient(160deg,#fbfffc 0%,#edf9ef 100%); }
.mode-card-icon { width:54px; height:54px; display:grid; place-items:center; border-radius:17px; background:white; box-shadow:0 10px 26px rgba(8,40,79,.09); font-size:1.5rem; }
.mode-label { font-size:1.1rem; letter-spacing:.12em; font-weight:900; margin:20px 0 8px; }
.social-card .mode-label { color:var(--blue); }
.relax-card .mode-label { color:var(--green); }
.mode-card h3 { margin:0; font-size:clamp(1.65rem,3vw,2.25rem); line-height:1.05; letter-spacing:-.035em; max-width:520px; }
.mode-card > p:not(.mode-label) { color:#60768b; max-width:520px; }
.dog-scene { position:absolute; left:20px; right:20px; bottom:20px; height:245px; border-radius:24px; overflow:hidden; background:#bfe8fb; }
.scene-sky { position:absolute; inset:0; background:linear-gradient(#bdeaff 0 56%,#dff5c4 56%); }
.scene-hill { position:absolute; border-radius:50%; background:#84c85c; }
.hill-back { width:120%; height:120px; left:-10%; bottom:-45px; opacity:.75; }
.hill-front { width:120%; height:100px; left:-15%; bottom:-58px; background:#62ad4f; }
.cartoon-dog { position:absolute; font-size:5.4rem; filter:drop-shadow(0 10px 8px rgba(8,40,79,.12)); transform-origin:center bottom; }
.dog-gold { left:20%; bottom:32px; transform:rotate(-8deg); }
.dog-dark { left:49%; bottom:24px; transform:scaleX(-1) rotate(-5deg); }
.scene-heart { position:absolute; color:white; font-size:3rem; top:20px; right:38px; transform:rotate(12deg); }
.scene-tree { position:absolute; width:70px; height:120px; right:48px; bottom:55px; background:#795a3b; border-radius:24px; }
.scene-tree::before, .scene-tree::after, .scene-tree span { content:""; position:absolute; border-radius:50%; background:#58a84d; }
.scene-tree::before { width:100px; height:85px; left:-30px; top:-40px; }
.scene-tree::after { width:92px; height:78px; left:13px; top:-33px; background:#6db355; }
.scene-tree span { width:78px; height:68px; left:-5px; top:-67px; }
.dog-rest { left:32%; bottom:27px; font-size:6.4rem; transform:rotate(7deg); }
.scene-leaf { position:absolute; font-size:4rem; color:#3f9753; left:42px; top:22px; }
.modes-note { margin:34px auto 0; max-width:820px; display:flex; align-items:center; justify-content:center; gap:12px; background:#f7fbfe; border:1px solid rgba(8,40,79,.08); padding:18px 20px; border-radius:18px; color:#5d7388; text-align:center; }
.modes-note span { color:var(--blue); font-size:1.6rem; }
.modes-note p { margin:0; }
.modes-note strong { color:var(--navy); }

.how-section { background:linear-gradient(180deg,#eff9ff,#f9fdff); }
.steps { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.step-card { background:white; border-radius:var(--radius-md); padding:30px; box-shadow:var(--shadow-soft); border:1px solid rgba(8,40,79,.07); position:relative; }
.step-number { width:44px; height:44px; display:grid; place-items:center; border-radius:50%; background:linear-gradient(135deg,var(--blue),var(--blue-2)); color:white; font-weight:900; position:absolute; top:-18px; left:30px; box-shadow:0 9px 20px rgba(8,121,235,.22); }
.step-visual { height:180px; margin:18px 0 26px; border-radius:20px; background:#eff8ff; overflow:hidden; position:relative; }
.step-card h3 { font-size:1.35rem; margin:0 0 8px; letter-spacing:-.02em; }
.step-card p { color:#60768b; margin:0; }
.choice-visual { display:grid; place-content:center; gap:10px; background:linear-gradient(145deg,#e9f7ff,#f9fdff); }
.choice-pill { width:190px; max-width:86%; min-height:56px; border-radius:16px; display:flex; align-items:center; justify-content:center; font-weight:900; box-shadow:0 9px 20px rgba(8,40,79,.09); }
.choice-blue { background:var(--blue); color:white; }
.choice-green { background:white; color:var(--green); border:1px solid rgba(60,155,91,.2); }
.tap-dot { width:34px; height:34px; border:5px solid rgba(255,255,255,.9); background:#ffca8b; border-radius:50%; position:absolute; left:50%; bottom:52px; box-shadow:0 0 0 7px rgba(8,121,235,.12); }
.mini-map { background:#e7f1dd; }
.mini-map-road { position:absolute; width:130%; height:18px; background:white; left:-15%; top:42%; transform:rotate(-28deg); }
.mr2 { transform:rotate(38deg); top:58%; }
.mini-map-user { position:absolute; width:18px; height:18px; background:var(--blue); border-radius:50%; left:50%; top:50%; transform:translate(-50%,-50%); border:3px solid white; box-shadow:0 0 0 14px rgba(8,121,235,.10); z-index:3; }
.mini-map-pin { position:absolute; width:40px; height:40px; background:white; border:3px solid var(--blue); border-radius:50%; display:grid; place-items:center; font-size:.9rem; z-index:4; box-shadow:0 7px 14px rgba(8,40,79,.12); }
.mp1 { left:16%; top:14%; }
.mp2 { right:15%; top:23%; border-color:var(--green); }
.mp3 { left:24%; bottom:12%; border-color:var(--green); }
.meeting-visual { background:linear-gradient(#bdeaff 0 63%,#cce9b3 63%); }
.person { position:absolute; width:42px; height:88px; border-radius:22px 22px 8px 8px; background:#137ee9; color:#ffd3a7; display:grid; place-items:start center; padding-top:3px; font-weight:800; bottom:28px; }
.p-left { left:18%; }
.p-right { right:18%; background:#3c9b5b; }
.meeting-dog { position:absolute; bottom:20px; font-size:3.3rem; }
.d-left { left:31%; }
.d-right { right:29%; }
.meeting-heart { position:absolute; font-size:3rem; color:var(--blue); left:50%; top:22px; transform:translateX(-50%); }

.founders-section { background:#fff; position:relative; overflow:hidden; }
.founders-section::before { content:""; position:absolute; inset:auto 0 0; height:50%; background:linear-gradient(180deg,transparent,#eef9ff); z-index:0; }
.founders-grid { display:grid; grid-template-columns:.9fr 1.05fr; gap:70px; align-items:center; position:relative; z-index:1; }
.founders-copy h2 { margin-top:16px; max-width:550px; }
.founders-copy h2 span { color:var(--blue); }
.founders-copy > p { color:var(--muted); font-size:1.06rem; max-width:570px; }
.benefit-list { list-style:none; padding:0; margin:28px 0; display:grid; gap:13px; color:#536d84; }
.benefit-list li { display:flex; gap:10px; align-items:center; }
.benefit-list span { width:24px; height:24px; border-radius:50%; background:#e5f5ff; color:var(--blue); display:grid; place-items:center; font-weight:900; font-size:.78rem; }
.counter-card { max-width:510px; background:white; border-radius:22px; padding:22px; border:1px solid rgba(8,40,79,.08); box-shadow:var(--shadow-soft); }
.counter-head { display:flex; justify-content:space-between; gap:20px; align-items:end; }
.counter-head span { color:#648098; }
.counter-head strong { font-size:2rem; color:var(--blue); letter-spacing:-.04em; }
.progress-track { height:12px; background:#e3f3fb; border-radius:999px; overflow:hidden; margin:14px 0 9px; }
.progress-track span { display:block; height:100%; width:0%; background:linear-gradient(90deg,var(--blue),var(--cyan)); border-radius:inherit; transition:width .6s ease; }
.counter-card small { color:#73899c; }

.waitlist-card { background:white; border-radius:32px; padding:38px; border:1px solid rgba(8,40,79,.08); box-shadow:var(--shadow); }
.form-heading { display:flex; gap:16px; align-items:flex-start; margin-bottom:25px; }
.form-heading h2 { font-size:2.15rem; }
.form-heading p { margin-top:5px; margin-bottom:0; color:var(--muted); }
.form-icon { width:48px; height:48px; flex:0 0 auto; border-radius:15px; display:grid; place-items:center; background:#e9f6ff; font-size:1.25rem; }
#waitlist-form { display:grid; gap:16px; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
#waitlist-form label > span:first-child, .preference-fieldset legend { display:block; font-size:.82rem; font-weight:800; color:#35516b; margin-bottom:7px; }
input[type="text"], input[type="email"], select {
  width:100%; height:52px; border:1px solid #d7e4ed; border-radius:13px; padding:0 14px; color:var(--navy); background:white; transition:border .2s, box-shadow .2s;
}
input:focus, select:focus { border-color:rgba(8,121,235,.55); box-shadow:0 0 0 4px rgba(8,121,235,.08); outline:none; }
.preference-fieldset { border:0; padding:0; margin:0; }
.preference-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:9px; }
.preference-option { position:relative; cursor:pointer; }
.preference-option input { position:absolute; opacity:0; pointer-events:none; }
.preference-box { min-height:78px; display:flex; flex-direction:column; justify-content:center; gap:3px; border:1px solid #d9e6ef; border-radius:14px; padding:11px; background:#fbfdff; transition:.2s; }
.preference-box b { color:var(--navy); font-size:.8rem; }
.preference-box small { color:#6f8396; font-size:.66rem; line-height:1.25; }
.preference-option input:checked + .preference-box { border-color:rgba(8,121,235,.55); background:#eef8ff; box-shadow:0 0 0 3px rgba(8,121,235,.08); }
.privacy-check { position:relative; display:grid !important; grid-template-columns:24px 1fr; gap:12px; align-items:start; padding:14px; border-radius:14px; background:#f7fafc; cursor:pointer; }
.privacy-check input { position:absolute !important; width:24px !important; height:24px !important; left:14px; top:14px; margin:0 !important; opacity:0 !important; cursor:pointer; z-index:2; }
.privacy-box { width:22px; height:22px; border:2px solid #8faabe; border-radius:6px; background:#fff; display:grid; place-items:center; margin-top:1px !important; box-shadow:0 1px 2px rgba(8,40,79,.08); transition:.18s ease; }
.privacy-box::after { content:""; width:10px; height:6px; border-left:3px solid #fff; border-bottom:3px solid #fff; transform:rotate(-45deg) scale(0); margin-top:-2px; transition:transform .14s ease; }
.privacy-check input:checked + .privacy-box { background:var(--blue); border-color:var(--blue); }
.privacy-check input:checked + .privacy-box::after { transform:rotate(-45deg) scale(1); }
.privacy-check input:focus-visible + .privacy-box { outline:3px solid rgba(8,121,235,.22); outline-offset:2px; }
.privacy-copy { margin:0 !important; font-size:.76rem !important; font-weight:500 !important; color:#60768b !important; line-height:1.45; }
.privacy-check a { color:var(--blue); text-decoration:underline; }
.microcopy { margin:0; text-align:center; color:#8495a5; font-size:.72rem; }
.field-error { min-height:16px; display:block; color:#c83a4c; font-size:.7rem; margin-top:4px; }
.form-status { min-height:0; color:#c83a4c; font-size:.82rem; font-weight:700; }
.form-status:not(:empty) { padding:11px 12px; background:#fff2f4; border-radius:12px; }
.config-warning { margin-bottom:18px; padding:12px 14px; border-radius:13px; background:#fff8df; color:#7b6211; font-size:.8rem; }
.config-warning code { font-size:.78em; }
.success-box { text-align:center; padding:30px 10px 12px; }
.success-icon { width:58px; height:58px; border-radius:50%; background:#eaf9ef; color:var(--green); display:grid; place-items:center; font-size:1.8rem; font-weight:900; margin:0 auto 14px; }
.success-box h3 { font-size:1.8rem; margin:0 0 8px; }
.success-box p { color:var(--muted); }
.success-box a { color:var(--blue); font-weight:800; }

.final-section { padding-top:0; }
.final-cta {
  min-height:390px;
  border-radius:36px;
  background:
    radial-gradient(circle at 82% 18%,rgba(255,255,255,.18),transparent 28%),
    linear-gradient(135deg,#0b7ee9,#30b8ef);
  color:white;
  padding:52px;
  display:grid;
  grid-template-columns:1fr .72fr;
  align-items:center;
  gap:36px;
  overflow:hidden;
  position:relative;
}
.final-cta h2 { font-size:clamp(2.7rem,5vw,4.6rem); }
.final-cta h2 span { color:#d9f7ff; }
.pill-light { background:rgba(255,255,255,.15); color:white; margin-bottom:16px; }
.final-art { position:relative; display:grid; place-items:center; min-height:290px; }
.final-art::before { content:""; position:absolute; width:420px; height:190px; background:rgba(255,255,255,.14); border-radius:50%; bottom:-95px; }
.final-art img { width:250px; height:250px; object-fit:cover; border-radius:50%; border:8px solid rgba(255,255,255,.78); box-shadow:0 28px 55px rgba(0,0,0,.17); z-index:2; transform:rotate(3deg); }
.final-heart { position:absolute; font-size:4rem; color:rgba(255,255,255,.82); }
.heart-one { right:2%; top:4%; transform:rotate(12deg); }
.heart-two { left:8%; bottom:6%; transform:rotate(-14deg); font-size:2.7rem; }

.site-footer { background:#061b33; color:#d8e4ef; padding:50px 0 26px; }
.footer-grid { display:grid; grid-template-columns:1fr 1fr auto; align-items:center; gap:28px; }
.footer-brand span { color:white; }
.footer-social { display:grid; gap:4px; font-size:.82rem; }
.footer-social span { color:#8fa4b7; }
.footer-social a { color:white; font-weight:800; }
.footer-links { display:flex; gap:24px; color:#c9d6e2; font-size:.86rem; }
.footer-bottom { margin-top:30px; padding-top:20px; border-top:1px solid rgba(255,255,255,.11); display:flex; justify-content:space-between; gap:20px; color:#7f96aa; }

@media (max-width: 980px) {
  .main-nav { gap:18px; }
  .main-nav > a:not(.button) { display:none; }
  .hero-grid { grid-template-columns:1fr; gap:20px; text-align:center; padding-top:65px; }
  .hero-copy { margin:0 auto; }
  .hero-actions, .payoff { justify-content:center; }
  .product-visual { min-height:670px; }
  .note-social { left:7%; }
  .note-relax { right:5%; }
  .mode-cards, .founders-grid { grid-template-columns:1fr; }
  .mode-card { min-height:600px; }
  .steps { grid-template-columns:1fr; gap:38px; }
  .step-card { max-width:700px; width:100%; margin:0 auto; }
  .step-visual { height:230px; }
  .founders-copy { text-align:center; }
  .founders-copy h2, .founders-copy > p, .counter-card { margin-left:auto; margin-right:auto; }
  .benefit-list { max-width:520px; margin-left:auto; margin-right:auto; text-align:left; }
  .final-cta { grid-template-columns:1fr; text-align:center; }
  .footer-grid { grid-template-columns:1fr 1fr; }
  .footer-links { justify-content:flex-end; }
}

@media (max-width: 720px) {
  .container { width:min(100% - 28px,1160px); }
  .section { padding:78px 0; }
  .header-inner { min-height:68px; }
  .brand img { width:46px; height:46px; }
  .brand span { font-size:1rem; }
  .mobile-nav-toggle { display:block; }
  .main-nav {
    position:absolute; top:68px; left:14px; right:14px;
    display:none; flex-direction:column; align-items:stretch;
    background:white; border:1px solid var(--line); border-radius:18px;
    padding:14px; box-shadow:var(--shadow-soft);
  }
  .main-nav.open { display:flex; }
  .main-nav > a:not(.button) { display:block; padding:10px 8px; }
  .hero-grid { min-height:auto; padding-top:54px; padding-bottom:70px; }
  .hero h1 { font-size:clamp(3rem,15vw,4.6rem); }
  .hero-lead { font-size:1rem; }
  .hero-actions { display:grid; grid-template-columns:1fr; }
  .hero-actions .button { width:100%; }
  .product-visual { min-height:620px; }
  .phone { width:310px; }
  .phone-screen { min-height:575px; }
  .map { height:350px; }
  .floating-note { min-width:145px; padding:9px 10px; }
  .note-social { left:-5px; top:18%; }
  .note-relax { right:-8px; top:64%; }
  .floating-note small { display:none; }
  .brand-orbit { width:78px; height:78px; right:4%; top:2%; }

  .section-heading { margin-bottom:36px; }
  .mode-card { padding:28px; min-height:590px; }
  .dog-scene { height:230px; }
  .mode-cards { gap:18px; }
  .modes-note { text-align:left; }

  .form-row, .preference-grid { grid-template-columns:1fr; }
  .waitlist-card { padding:25px 20px; border-radius:24px; }
  .form-heading h2 { font-size:1.9rem; }
  .founders-grid { gap:44px; }
  .counter-head strong { font-size:1.7rem; }

  .final-cta { padding:36px 24px; border-radius:28px; }
  .final-art { min-height:245px; }
  .final-art img { width:205px; height:205px; }

  .footer-grid { grid-template-columns:1fr; text-align:center; }
  .footer-brand { justify-content:center; }
  .footer-links { justify-content:center; }
  .footer-bottom { flex-direction:column; text-align:center; }
}

@media (max-width: 420px) {
  .hero h1 { font-size:2.85rem; }
  .product-visual { min-height:575px; }
  .phone { width:286px; }
  .phone-screen { min-height:540px; }
  .map { height:320px; }
  .mode-chip { min-height:72px; padding:9px; }
  .note-social { left:-2px; top:20%; }
  .note-relax { right:-2px; top:67%; }
  .brand-orbit { display:none; }
  .cartoon-dog { font-size:4.6rem; }
  .dog-rest { font-size:5.8rem; left:25%; }
}

/* === 2026 visual refinement === */
/* Hero: remove decorative labels/orbits that looked detached from the product UI. */
.product-visual { min-height: 610px; }
.phone { transform: rotate(.5deg); }

/* Mode section: replace emoji scenes with coherent product-style previews. */
.mode-card { overflow: hidden; }
.mode-preview {
  margin-top: 26px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(8,40,79,.08);
  background: #fff;
  box-shadow: 0 18px 42px rgba(14,54,95,.08);
}
.preview-topline {
  min-height: 78px;
  padding: 18px 20px;
  display: grid;
  grid-template-columns: 12px 1fr;
  column-gap: 10px;
  align-items: center;
  border-bottom: 1px solid rgba(8,40,79,.07);
}
.preview-topline strong { font-size: .92rem; color: var(--navy); }
.preview-topline small { grid-column: 2; color: #72869a; margin-top: -4px; font-size: .72rem; }
.preview-status-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 5px rgba(8,121,235,.10); }
.relax-preview .preview-status-dot { background: var(--green); box-shadow: 0 0 0 5px rgba(60,155,91,.10); }
.preview-map {
  height: 230px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 25%, rgba(112,187,95,.14) 0 17%, transparent 18%),
    radial-gradient(circle at 77% 68%, rgba(112,187,95,.14) 0 19%, transparent 20%),
    #edf5e8;
}
.preview-road { position: absolute; width: 130%; height: 20px; background: rgba(255,255,255,.96); left: -15%; top: 46%; }
.road-one { transform: rotate(-25deg); }
.road-two { transform: rotate(32deg); top: 55%; }
.preview-me { position: absolute; width: 20px; height: 20px; border-radius: 50%; background: var(--blue); border: 4px solid #fff; left: 50%; top: 53%; transform: translate(-50%,-50%); box-shadow: 0 0 0 13px rgba(8,121,235,.10); z-index: 3; }
.relax-preview .preview-me { background: var(--green); box-shadow: 0 0 0 13px rgba(60,155,91,.10); }
.preview-dog { position: absolute; width: 34px; height: 34px; border-radius: 50%; background: #fff; border: 3px solid var(--blue); box-shadow: 0 8px 18px rgba(8,40,79,.12); z-index: 3; }
.preview-dog::after { content: ""; position: absolute; inset: 9px; border-radius: 50%; background: var(--blue); }
.preview-dog.dog-a { left: 20%; top: 22%; }
.preview-dog.dog-b { right: 17%; top: 30%; }
.preview-dog.dog-c { left: 27%; bottom: 16%; }
.preview-dog.muted { border-color: #9bb2a0; opacity: .65; }
.preview-dog.muted::after { background: #9bb2a0; }
.preview-safe-zone { position: absolute; width: 150px; height: 150px; border-radius: 50%; border: 2px dashed rgba(60,155,91,.42); background: rgba(60,155,91,.06); left: 50%; top: 53%; transform: translate(-50%,-50%); }
.preview-footer { padding: 14px 18px; display: flex; justify-content: space-between; gap: 20px; color: #6b8093; font-size: .72rem; }
.preview-footer b { color: var(--navy); }

/* Steps: numbers belong to the cards, not outside them. */
.steps { gap: 24px; }
.step-card { padding: 24px; border-radius: 26px; }
.step-card-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.step-number {
  position: static;
  width: 36px;
  height: 36px;
  border-radius: 11px;
  box-shadow: none;
  font-size: .9rem;
}
.step-label { color: #8294a5; font-size: .68rem; font-weight: 900; letter-spacing: .12em; }
.step-visual { height: 205px; margin: 0 0 24px; border-radius: 18px; }
.choice-visual { display: flex; flex-direction: column; align-items: stretch; justify-content: center; gap: 12px; padding: 26px; }
.choice-pill { width: 100%; max-width: none; min-height: 64px; justify-content: flex-start; gap: 12px; padding: 0 18px; }
.choice-pill > span:last-child { display: grid; }
.choice-pill b { font-size: .82rem; }
.choice-pill small { font-size: .66rem; opacity: .78; font-weight: 600; }
.choice-icon { width: 25px; height: 25px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.18); font-size: .45rem; }
.choice-green .choice-icon { background: rgba(60,155,91,.10); }
.tap-dot { display: none; }
.mini-map-pin { width: 34px; height: 34px; border-width: 3px; }
.mini-map-pin::after { content: ""; width: 8px; height: 8px; border-radius: 50%; background: currentColor; }
.decision-visual { background: linear-gradient(180deg,#edf8ff,#f8fcff); position: relative; }
.decision-route { position: absolute; width: 70%; height: 100px; border: 14px solid rgba(255,255,255,.95); border-left: 0; border-bottom: 0; border-radius: 0 100px 0 0; left: 8%; bottom: 25px; transform: rotate(-7deg); }
.decision-me { position:absolute; width:22px; height:22px; border-radius:50%; background:var(--blue); border:4px solid white; left:18%; bottom:30px; box-shadow:0 0 0 10px rgba(8,121,235,.10); }
.decision-target { position:absolute; width:38px; height:38px; border-radius:50%; background:#fff; box-shadow:0 8px 18px rgba(8,40,79,.11); top:50px; }
.decision-target::after { content:""; position:absolute; inset:11px; border-radius:50%; }
.social-target { right:29%; border:3px solid var(--blue); }
.social-target::after { background:var(--blue); }
.relax-target { right:10%; border:3px solid var(--green); }
.relax-target::after { background:var(--green); }
.decision-badges { position:absolute; left:18px; top:18px; display:flex; gap:7px; }
.decision-badges span { padding:7px 9px; border-radius:999px; background:white; color:var(--navy); font-size:.58rem; font-weight:900; box-shadow:0 6px 14px rgba(8,40,79,.07); }

@media (max-width: 900px) {
  .product-visual { min-height: 560px; }
  .mode-preview { margin-top: 20px; }
}

/* === MeetDog final visual assets === */
.mode-card-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  box-shadow: none;
  position: relative;
}
.mode-card-icon-social { background: rgba(8,121,235,.10); }
.mode-card-icon-relax { background: rgba(60,155,91,.10); }
.mode-card-icon span {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: block;
}
.mode-card-icon-social span { background: var(--blue); box-shadow: 0 0 0 6px rgba(8,121,235,.09); }
.mode-card-icon-relax span { background: var(--green); box-shadow: 0 0 0 6px rgba(60,155,91,.09); }

.mode-preview-image {
  margin: 26px 0 0;
  padding: 0;
  aspect-ratio: 16 / 9;
  background: #f5f9fc;
}
.mode-preview-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.modes-note .note-mark {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: linear-gradient(135deg,var(--blue),var(--green));
  box-shadow: 0 0 0 6px rgba(8,121,235,.06);
}

.step-visual-image {
  height: auto;
  aspect-ratio: 16 / 9;
  padding: 0;
  background: #eef7fb;
  border: 1px solid rgba(8,40,79,.06);
}
.step-visual-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.step-nearby-image img { object-position: center 48%; }

/* The final CTA now relies on the real brand logo only, without decorative hearts. */
.final-heart { display: none !important; }

@media (max-width: 980px) {
  .mode-preview-image { aspect-ratio: 16 / 9; }
  .step-visual-image { height: auto; aspect-ratio: 16 / 9; }
}

@media (max-width: 720px) {
  .mode-preview-image { margin-top: 20px; border-radius: 18px; }
  .step-card { padding: 20px; }
  .step-visual-image { border-radius: 16px; }
}

/* === Hero aligned to the real app mockup === */
.hero-app-shot {
  width: min(100%, 560px);
  margin: 0;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(8,40,79,.16);
  border: 1px solid rgba(8,40,79,.07);
  background: #eef8ff;
}
.hero-app-shot img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.product-visual {
  min-height: 630px;
  display: grid;
  place-items: center;
}
.hero-actions .button {
  scroll-margin-top: 90px;
}
#come-funziona, #meetdogs100, #waitlist {
  scroll-margin-top: 92px;
}

@media (max-width: 980px) {
  .hero-app-shot { width: min(100%, 520px); }
  .product-visual { min-height: auto; padding-top: 20px; }
}

@media (max-width: 720px) {
  .hero-app-shot { width: min(100%, 430px); border-radius: 24px; }
  .product-visual { min-height: auto; }
}


/* === Final desktop hero: exact approved mockup composition === */
.desktop-hero-poster {
  display:none;
  position:relative;
  width:100%;
  overflow:hidden;
  background:#eef8ff;
}
.desktop-hero-poster > img {
  display:block;
  width:100%;
  height:auto;
}
.poster-hotspot {
  position:absolute;
  z-index:4;
  border-radius:14px;
}
.poster-hotspot:focus-visible {
  outline:4px solid rgba(8,121,235,.45);
  outline-offset:3px;
}
/* Positions correspond to the two CTAs in the approved desktop preview. */
.poster-hotspot-join { left:6.8%; top:65.5%; width:14.8%; height:6.7%; }
.poster-hotspot-how  { left:22.8%; top:65.5%; width:14.4%; height:6.7%; }

@media (min-width: 981px) {
  .hero {
    min-height:0 !important;
    background:#eef8ff !important;
    overflow:hidden;
  }
  .hero::after, .hero-glow { display:none !important; }
  .desktop-hero-poster { display:block; }
  .hero > .hero-grid { display:none !important; }
}

@media (max-width: 980px) {
  .desktop-hero-poster { display:none; }
  .hero > .hero-grid { display:grid; }
}

.final-cta .button {
  margin-top: 30px;
}