/* strcleaning.app, the public website for STR Cleaning App.
   Colours come from the logo: navy house and "STR", blue "Cleaning", green "App" and tick.
   Fonts are served from this site, not a font CDN: no visitor data leaves for a third party. */
@font-face { font-family: 'Outfit'; font-style: normal; font-weight: 400 800; font-display: swap; src: url('/assets/fonts/outfit.woff2') format('woff2'); }
@font-face { font-family: 'DM Sans'; font-style: normal; font-weight: 400 700; font-display: swap; src: url('/assets/fonts/dm-sans.woff2') format('woff2'); }
@font-face { font-family: 'IBM Plex Mono'; font-style: normal; font-weight: 500; font-display: swap; src: url('/assets/fonts/plex-mono-500.woff2') format('woff2'); }
@font-face { font-family: 'IBM Plex Mono'; font-style: normal; font-weight: 600; font-display: swap; src: url('/assets/fonts/plex-mono-600.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 400 800; font-display: swap; src: url('/assets/fonts/inter.woff2') format('woff2'); }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body { margin: 0; }
:root {
  --navy: #002f68;
  --navy-deep: #001f45;
  --blue: #0065d9;
  --blue-deep: #0052b0;
  --green: #6da631;
  --green-text: #4a841c;
  --ink: #0d2343;
  --text: #2c4058;
  --muted: #5d7089;
  --line: #d7e1ed;
  --line-soft: #e7eef6;
  --paper: #ffffff;
  --mist: #f2f6fb;
  --coral: #f0445f;
  --mono: 'IBM Plex Mono', ui-monospace, 'Cascadia Mono', Consolas, monospace;
  --shadow: 0 1px 2px rgba(11, 32, 54, .06), 0 18px 40px -18px rgba(11, 32, 54, .35);
}
.site { --display: 'Outfit', system-ui, sans-serif; --sans: 'DM Sans', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif; --tk: .75; --hw: 700;
  font-family: var(--sans); font-size: 17px; line-height: 1.6; color: var(--text); background: var(--paper); -webkit-font-smoothing: antialiased; box-sizing: border-box; overflow-x: hidden; }
.site *, .site *::before, .site *::after { box-sizing: border-box; }
.site img { max-width: 100%; display: block; }
.site h1, .site h2, .site h3, .site h4 { color: var(--ink); font-family: var(--display); text-wrap: balance; margin: 0; }
.site p { margin: 0; }
.site a { color: var(--blue); }
.site :focus-visible { outline: 3px solid color-mix(in srgb, var(--blue) 45%, white); outline-offset: 3px; border-radius: 6px; }

.wrap { max-width: 1200px; margin-inline: auto; padding-inline: clamp(16px, 4vw, 40px); }
.narrow { max-width: 820px; }
.label { font: 600 12.5px/1.3 var(--sans); letter-spacing: .09em; text-transform: uppercase; color: var(--blue); }
.lede { font-size: clamp(17px, 1.6vw, 19px); color: var(--text); max-width: 60ch; }

/* ---------- header ---------- */
.site-head { background: #ffffff; border-bottom: 1px solid var(--line-soft); position: relative; z-index: 30; }
.head-row { display: flex; align-items: center; gap: 22px; min-height: 72px; }
.site .brand { display: flex; align-items: center; text-decoration: none; margin-right: auto; }
.brand img { height: 48px; width: auto; }
.nav { display: flex; align-items: center; gap: 22px; }
.site .nav a, .nav-who { color: var(--text); text-decoration: none; font: 500 15px/1 var(--sans); padding: 8px 0; background: none; border: 0; cursor: pointer; white-space: nowrap; }
.site .nav a:hover, .nav-who:hover { color: var(--blue); }
.site .nav a.is-active, .nav-who.is-active { color: var(--blue); font-weight: 650; }
.nav-who { display: inline-flex; align-items: center; gap: 6px; list-style: none; }
.nav-who::-webkit-details-marker { display: none; }
.nav-who svg { width: 12px; height: 12px; transition: transform .15s; }
.who-menu[open] .nav-who svg { transform: rotate(180deg); }
.who-menu { position: relative; }
.dropdown { position: absolute; top: calc(100% + 12px); left: -18px; width: 300px; background: var(--paper); border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow); padding: 8px; display: grid; }
.site .dropdown a { display: grid; gap: 2px; padding: 10px 12px; border-radius: 10px; color: var(--ink); font-weight: 600; white-space: normal; line-height: 1.3; }
.site .dropdown a span { font-weight: 400; font-size: 13.5px; color: var(--muted); }
.site .dropdown a:hover { background: var(--mist); color: var(--ink); }
.head-actions { display: flex; align-items: center; gap: 10px; }
.site .signin { color: var(--text); font-weight: 500; font-size: 15px; text-decoration: none; padding: 8px 6px; white-space: nowrap; }
.mobile-menu { display: none; }
.menu-btn { display: inline-flex; align-items: center; gap: 8px; font: 600 15px var(--sans); color: var(--ink); padding: 9px 12px; border: 1px solid var(--line); border-radius: 10px; background: var(--paper); cursor: pointer; list-style: none; }
.menu-btn::-webkit-details-marker { display: none; }
.mobile-panel { position: absolute; left: 0; right: 0; top: 100%; border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line); box-shadow: var(--shadow); background: var(--paper); padding: 8px 16px 16px; display: grid; }
.skip { position: absolute; left: -9999px; top: 8px; z-index: 100; background: var(--paper); color: var(--ink); padding: 10px 14px; border-radius: 8px; box-shadow: var(--shadow); }
.skip:focus { left: 16px; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.notice { border-radius: 12px; padding: 14px 16px; font-size: 15.5px; line-height: 1.5; }
.notice.ok { background: #eaf6df; border: 1px solid #b9dd98; color: #2f5a10; }
.notice.info { background: #e8f1fc; border: 1px solid #b7d2f3; color: #0b3f7a; }
.notice.err { background: #fdecef; border: 1px solid #f4b7c2; color: #8a1c31; }
.site .mobile-panel > a { padding: 12px 4px; color: var(--ink); text-decoration: none; font-weight: 550; border-bottom: 1px solid var(--line-soft); }
.mobile-panel .btn-row { margin-top: 14px; }
.mobile-panel .btn-row .btn { flex: 1 1 0; }

/* ---------- buttons ---------- */
.site .btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 48px; padding: 0 22px; border-radius: 10px; font: 600 16px/1 var(--sans); text-decoration: none; cursor: pointer; border: 1.5px solid transparent; white-space: nowrap; }
.site .btn-primary { background: var(--blue); color: #fff; }
.site .btn-primary:hover { background: var(--blue-deep); color: #fff; }
.site .btn-secondary { background: var(--paper); color: var(--blue); border-color: #a9c1d9; }
.site .btn-secondary:hover { border-color: var(--blue); }
.site .btn-small { min-height: 40px; padding: 0 16px; font-size: 15px; }
.site .btn-light { background: #fff; color: var(--navy); }
.site .btn-ghost { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .5); }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }
.site .more { font-weight: 600; text-decoration: none; }
.site .more:hover { text-decoration: underline; }

/* ---------- hero (home) ---------- */
.hero { padding-block: clamp(40px, 6vw, 76px) clamp(48px, 7vw, 80px); background: var(--paper); }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr); gap: clamp(32px, 5vw, 64px); align-items: center; }
.hero h1 { font-size: clamp(42px, 6.2vw, 76px); line-height: 1; letter-spacing: calc(-.03em * var(--tk)); font-weight: var(--hw); margin-block: 18px 22px; }
.hero h1 em, .page-hero h1 em { font-style: normal; color: var(--green-text); }
.hero .lede { margin-bottom: 30px; }
.price-note { margin-top: 14px; font-size: 14.5px; color: var(--muted); }
.pillars { list-style: none; margin: 34px 0 0; padding: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--line); }
.pillars li + li { border-left: 1px solid var(--line); }
.site .pillars a { display: grid; gap: 4px; padding: 16px 16px 4px; text-decoration: none; height: 100%; }
.pillars li:first-child a { padding-left: 0; }
.pillars b { font: 650 15.5px/1.3 var(--sans); color: var(--ink); display: flex; gap: 8px; align-items: baseline; }
.pillars b::before { content: ""; flex: none; width: 8px; height: 8px; border-radius: 50%; background: var(--green); transform: translateY(-1px); }
.pillars span { font-size: 14px; line-height: 1.45; color: var(--muted); padding-left: 16px; }
.hero-visual { position: relative; display: grid; justify-items: end; padding-bottom: 28px; }

/* ---------- page hero (inner pages) ---------- */
.page-hero { padding-block: clamp(48px, 7vw, 88px) clamp(40px, 6vw, 72px); background: var(--mist); border-bottom: 1px solid var(--line-soft); }
.page-hero.plain { background: var(--paper); }
.page-hero h1 { font-size: clamp(38px, 5vw, 62px); line-height: 1.02; letter-spacing: calc(-.028em * var(--tk)); font-weight: var(--hw); margin-block: 14px 20px; max-width: 18ch; }
.page-hero .lede { margin-bottom: 28px; }
.page-hero .hero-grid { align-items: center; }
.crumbs { font: 500 13px var(--mono); color: var(--muted); }
.site .crumbs a { color: var(--muted); text-decoration: none; }

/* ---------- frames around real screenshots ---------- */
.phone { width: min(310px, 74vw); aspect-ratio: 390 / 844; border-radius: 44px; background: var(--navy-deep); padding: 9px; box-shadow: var(--shadow); }
.phone img { width: 100%; height: 100%; object-fit: cover; object-position: top; border-radius: 36px; background: #eef2f7; }
.browser { margin: 0; border-radius: 14px; overflow: hidden; background: var(--paper); border: 1px solid var(--line); box-shadow: var(--shadow); }
.browser-bar { display: flex; align-items: center; gap: 7px; padding: 10px 14px; background: #f5f8fb; border-bottom: 1px solid var(--line-soft); }
.browser-bar i { width: 10px; height: 10px; border-radius: 50%; background: #d3dde7; flex: none; }
.browser-bar em { font: 500 12px var(--mono); font-style: normal; color: var(--muted); margin-left: 10px; background: var(--paper); border: 1px solid var(--line-soft); border-radius: 6px; padding: 3px 10px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; min-width: 0; }
.browser img { width: 100%; height: auto; }
.stamped { position: relative; margin: 0; border-radius: 12px; overflow: hidden; background: #d9e1e8; box-shadow: var(--shadow); border: 5px solid var(--paper); }
.stamped img { width: 100%; height: auto; aspect-ratio: 3 / 4; object-fit: cover; }
.stamp { position: absolute; inset: auto 0 0 0; padding: 38px 11px 9px; color: #fff; background: linear-gradient(to bottom, rgba(10, 22, 38, 0), rgba(10, 22, 38, .55) 55%, rgba(10, 22, 38, .9)); text-shadow: 0 1px 3px rgba(0, 0, 0, .55); }
.stamp b { display: block; font: 700 13px/1.25 'Inter', system-ui, sans-serif; }
.stamp span { display: block; font: 500 10.5px/1.35 'Inter', system-ui, sans-serif; color: rgba(255, 255, 255, .88); }
.hero .stamped, .page-hero .stamped { position: absolute; left: 0; bottom: 0; width: min(210px, 46%); }

/* ---------- turnover window band ---------- */
.band { background: var(--navy); color: #fff; padding-block: clamp(40px, 6vw, 64px); background-image: radial-gradient(900px 320px at 85% 0%, rgba(0, 101, 217, .45), transparent 70%); }
.band-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; flex-wrap: wrap; margin-bottom: 36px; }
.band-kicker { font: 600 13px/1.3 var(--mono); letter-spacing: .02em; color: rgba(255, 255, 255, .75); margin-bottom: 8px; }
.site .band h2 { color: #fff; font-size: clamp(24px, 2.8vw, 34px); line-height: 1.12; letter-spacing: calc(-.015em * var(--tk)); font-weight: 650; max-width: 30ch; }
.live { display: inline-flex; align-items: center; gap: 8px; font: 600 13px var(--mono); padding: 6px 12px; border-radius: 99px; background: rgba(255, 255, 255, .12); border: 1px solid rgba(255, 255, 255, .22); }
.live i { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(109, 166, 49, .25); }
.tl { position: relative; list-style: none; margin: 0; padding: 0; height: 206px; }
.tl::before, .tl::after { content: ""; position: absolute; top: 96px; height: 4px; border-radius: 4px; }
.tl::before { left: 0; right: 0; background: repeating-linear-gradient(90deg, rgba(255, 255, 255, .35) 0 8px, transparent 8px 14px); }
.tl::after { left: 0; width: 76.7%; background: #fff; }
.tl li { position: absolute; top: 0; }
.tl time { font: 600 14px/1 var(--mono); color: #fff; }
.tl b { display: block; font: 600 15px/1.3 var(--sans); color: #fff; }
.tl span { display: block; font-size: 13.5px; line-height: 1.4; color: rgba(255, 255, 255, .75); }
.tl .edge time { display: block; margin-bottom: 6px; }
.tl .edge b { font-weight: 500; color: rgba(255, 255, 255, .82); font-size: 13.5px; }
.tl .edge.start { left: 0; }
.tl .edge.end { right: 0; text-align: right; }
.tl .event { top: 90px; transform: translateX(-12px); width: 180px; padding-top: 32px; }
.tl .event::before { content: ""; position: absolute; left: 4px; top: 0; width: 16px; height: 16px; border-radius: 50%; background: #fff; border: 3px solid var(--navy); box-sizing: border-box; }
.tl .event time { display: block; margin-bottom: 4px; }
.tl .event.up { top: 6px; padding-top: 0; }
.tl .event.up::before { top: 84px; }
.tl .event.alert::before { background: var(--coral); }
.tl .event.now::before { background: var(--green); border-color: #fff; box-shadow: 0 0 0 5px rgba(109, 166, 49, .3); }
.tl .event.now time::after { content: "now"; margin-left: 8px; font: 600 11px var(--mono); text-transform: uppercase; letter-spacing: .06em; background: var(--green-text); color: #fff; padding: 2px 6px; border-radius: 4px; vertical-align: 1px; }
.at-check-in { left: 37.7%; }
.at-stain { left: 52.7%; }
.at-now { left: 76.7%; }

/* ---------- sections ---------- */
.section { padding-block: clamp(64px, 9vw, 112px); background: var(--paper); }
.section.mist { background: var(--mist); }
.section.tight { padding-block: clamp(48px, 6vw, 80px); }
.section-head { max-width: 780px; margin-bottom: clamp(36px, 5vw, 56px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(32px, 4vw, 50px); line-height: 1.05; letter-spacing: calc(-.025em * var(--tk)); font-weight: var(--hw); margin-top: 12px; }
.section-head .lede { margin-top: 16px; }
.section-head.center .lede { margin-inline: auto; }

/* who it's for */
.who { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--line); }
.who article { padding: 32px clamp(20px, 3vw, 36px) 8px; border-left: 1px solid var(--line); display: flex; flex-direction: column; gap: 14px; }
.who article:first-child { border-left: 0; padding-left: 0; }
.site .who h3 { font-size: clamp(22px, 2.2vw, 27px); line-height: 1.14; letter-spacing: calc(-.015em * var(--tk)); font-weight: 650; }
.who ul { margin: 4px 0 0; padding: 0; list-style: none; display: grid; gap: 10px; }
.who li { padding-left: 22px; position: relative; font-size: 16px; line-height: 1.5; }
.who li::before { content: ""; position: absolute; left: 0; top: .62em; width: 10px; height: 2px; background: var(--blue); }
.who .more { margin-top: auto; padding-top: 10px; }

/* features */
.feature { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(32px, 6vw, 88px); align-items: center; }
.feature + .feature, .feature + .cards, .cards + .feature, .feature + .more-row { margin-top: clamp(72px, 10vw, 128px); }
.feature.flip { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); }
.feature.flip .feature-media { order: -1; }
.site .feature h2, .site .feature h3 { font-size: clamp(30px, 3.4vw, 42px); line-height: 1.08; letter-spacing: calc(-.022em * var(--tk)); font-weight: var(--hw); margin-block: 12px 18px; }
.feature .lede { font-size: 17.5px; }
.ticks { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 10px; }
.ticks li { display: flex; gap: 12px; align-items: baseline; font-size: 16px; }
.ticks li::before { content: ""; flex: none; width: 14px; height: 8px; border-left: 2.5px solid var(--green); border-bottom: 2.5px solid var(--green); transform: rotate(-45deg) translateY(-3px); }
.feature .more { display: inline-block; margin-top: 22px; }
.stage { background: var(--mist); border-radius: 22px; padding: clamp(24px, 4vw, 48px); display: grid; place-items: center; gap: 20px; }
.section.mist .stage { background: #e4ecf4; }
.stage.pair { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); align-items: start; }
.stage.pair .phone { width: 100%; }
.stage.split { grid-template-columns: minmax(0, 1fr) minmax(0, .5fr); align-items: center; }
.feature.wide { grid-template-columns: minmax(0, 1fr); gap: clamp(32px, 4vw, 48px); }
.wide-text { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); gap: clamp(24px, 5vw, 72px); align-items: end; }
.site .wide-text h2 { margin-bottom: 0; }
.stack .back { width: 84%; margin-left: auto; }
.stack .front { position: relative; z-index: 1; width: 84%; margin-top: -34%; }
.more-row { display: flex; justify-content: center; }

/* AI section: dark */
.ai { background: var(--navy-deep); color: #d5e2f0; background-image: radial-gradient(1000px 420px at 10% 0%, rgba(0, 101, 217, .38), transparent 70%), radial-gradient(700px 360px at 100% 55%, rgba(109, 166, 49, .16), transparent 70%); }
.site .ai h1, .site .ai h2, .site .ai h3, .site .ai h4 { color: #fff; }
.ai .label { color: #8fc05a; }
.ai .lede, .ai p { color: #c4d4e6; }
.ai .ticks li { color: #dbe6f2; }
.ai .ticks li::before { border-color: #8fc05a; }
.ai .stage { background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .08); }
.ai .browser { border-color: rgba(255, 255, 255, .15); }
.ai .phone { background: #000d1f; box-shadow: 0 24px 60px -20px rgba(0, 0, 0, .7); }
.site .ai a.more { color: #9fd06a; }
.cards { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.cards.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.cards article { border-radius: 16px; padding: 22px 22px 24px; background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .1); display: grid; gap: 8px; align-content: start; }
.site .cards h4 { font: 650 17px/1.3 var(--display); color: #fff; letter-spacing: calc(-.01em * var(--tk)); }
.cards p { font-size: 15px; line-height: 1.55; color: #c4d4e6; }
/* the same cards on a light ground */
.cards.light article { background: var(--paper); border-color: var(--line); }
.site .cards.light h4 { color: var(--ink); }
.cards.light p { color: var(--text); }
.section.mist .cards.light article { background: var(--paper); }

/* appliances process */
.process { list-style: none; margin: 8px 0 0; padding: 0; display: grid; counter-reset: step; }
.process li { counter-increment: step; display: grid; grid-template-columns: 44px minmax(0, 1fr); gap: 0 18px; position: relative; padding-bottom: 26px; }
.process li:last-child { padding-bottom: 0; }
.process li::before { content: counter(step); grid-row: span 2; display: grid; place-items: center; width: 44px; height: 44px; border-radius: 12px; background: var(--paper); border: 1.5px solid #bcd0e5; color: var(--navy); font: 600 16px var(--mono); position: relative; z-index: 1; }
.process li::after { content: ""; position: absolute; left: 21px; top: 44px; bottom: 0; width: 2px; background: #cddbea; }
.process li:last-child::after { display: none; }
.site .process h3 { font: 650 19px/1.3 var(--display); letter-spacing: calc(-.01em * var(--tk)); margin: 9px 0 6px; }
.process p { font-size: 16px; line-height: 1.55; }
.process strong { color: var(--ink); font-weight: 650; }

/* feature index + grids */
.grid6 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--line); margin-top: clamp(40px, 6vw, 64px); }
.grid6.flush { margin-top: 0; }
.grid6 > div { padding: 28px 28px 30px 0; border-bottom: 1px solid var(--line); }
.grid6 > div:not(:nth-child(3n + 1)) { padding-left: 28px; border-left: 1px solid var(--line); }
.site .grid6 h3 { font: 650 19px/1.25 var(--display); letter-spacing: calc(-.01em * var(--tk)); margin-bottom: 8px; }
.grid6 p { font-size: 15.5px; line-height: 1.55; }
.site .grid6 a.more { display: inline-block; margin-top: 10px; font-size: 15px; }
.toc { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.site .toc a { display: inline-flex; align-items: center; min-height: 40px; padding: 0 14px; border-radius: 99px; border: 1px solid var(--line); background: var(--paper); color: var(--ink); text-decoration: none; font-weight: 550; font-size: 15px; }
.site .toc a:hover { border-color: var(--blue); color: var(--blue); }
.badges { display: flex; flex-wrap: wrap; gap: 12px; }
.badges span { display: inline-flex; align-items: center; min-height: 52px; padding: 0 22px; border-radius: 12px; background: var(--paper); border: 1px solid var(--line); font: 650 17px var(--display); color: var(--ink); }

/* pain → fix list (audience pages) */
.pains { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.pains article { background: var(--paper); border: 1px solid var(--line); border-radius: 18px; padding: 26px; display: grid; gap: 12px; align-content: start; }
.pains .was { font-size: 15px; color: var(--muted); text-decoration: line-through; text-decoration-color: rgba(93, 112, 137, .5); }
.site .pains h3 { font: 650 20px/1.25 var(--display); letter-spacing: calc(-.01em * var(--tk)); }
.pains p { font-size: 15.5px; line-height: 1.55; }

/* numbers */
.numbers { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; }
.numbers div { border-top: 3px solid var(--navy); padding-top: 18px; }
.numbers strong { display: block; font-family: var(--display); font-weight: var(--hw); font-size: clamp(48px, 5.6vw, 72px); line-height: 1; letter-spacing: calc(-.035em * var(--tk)); color: var(--ink); font-variant-numeric: tabular-nums; }
.numbers span { display: block; margin-top: 10px; font-size: 16px; max-width: 24ch; }
.source { margin-top: 26px; font: 500 12.5px/1.6 var(--mono); color: var(--muted); }

/* pricing */
.price-panel { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); border: 1px solid var(--line); border-radius: 20px; overflow: hidden; background: var(--paper); }
.price-main { padding: clamp(28px, 4vw, 48px); background: var(--navy); color: #fff; display: flex; flex-direction: column; gap: 14px; background-image: radial-gradient(420px 260px at 100% 0%, rgba(0, 101, 217, .5), transparent 70%); }
.price-main .label { color: #9fc3e6; }
.amount { display: flex; align-items: flex-start; gap: 6px; color: #fff; font-family: var(--display); }
.amount sup { font-size: 30px; font-weight: 650; margin-top: 12px; }
.amount strong { font-size: clamp(76px, 9vw, 108px); line-height: .9; font-weight: var(--hw); letter-spacing: calc(-.04em * var(--tk)); }
.per { font-size: 18px; color: rgba(255, 255, 255, .85); }
.price-main .btn-row { margin-top: auto; padding-top: 18px; }
/* half price for DOSbnb clients, on the navy price panel */
.deal { margin: 2px 0 0; padding: 10px 14px; border: 1px solid rgba(255, 255, 255, .22); border-radius: 12px; background: rgba(255, 255, 255, .07); font-size: 16px; line-height: 1.9; color: rgba(255, 255, 255, .92); }
.deal b { color: #fff; font-size: 18px; }
.deal-tag { display: inline-block; margin-right: 4px; padding: 0 10px; border-radius: 999px; background: var(--green); color: #fff; font-size: 13px; font-weight: 700; line-height: 1.8; letter-spacing: .02em; }
.deal a { color: #c7e69c; text-decoration: underline; text-underline-offset: 3px; white-space: nowrap; }
.deal a:hover, .deal a:focus-visible { color: #fff; }
.price-list { padding: clamp(28px, 4vw, 48px); }
.site .price-list h3 { font: 650 19px/1.3 var(--display); margin-bottom: 14px; }
.price-list ul { columns: 2; column-gap: 32px; padding: 0; margin: 0; list-style: none; }
.price-list li { break-inside: avoid; padding: 7px 0 7px 28px; position: relative; font-size: 15.5px; line-height: 1.45; }
.price-list li::before { content: ""; position: absolute; left: 2px; top: 13px; width: 13px; height: 7px; border-left: 2.5px solid var(--green); border-bottom: 2.5px solid var(--green); transform: rotate(-45deg); }
.price-small { margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--line-soft); display: grid; gap: 10px; font-size: 15px; }
.price-small b { color: var(--ink); }
.compare { width: 100%; border-collapse: collapse; font-size: 16px; }
.compare th, .compare td { text-align: left; padding: 16px 18px; border-bottom: 1px solid var(--line); vertical-align: top; }
.compare th { font: 600 12.5px var(--sans); letter-spacing: .08em; text-transform: uppercase; color: var(--muted); background: var(--mist); }
.compare td:first-child { font-weight: 600; color: var(--ink); width: 34%; }
.table-wrap { border: 1px solid var(--line); border-radius: 16px; overflow-x: auto; background: var(--paper); }

/* getting started */
.steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 28px; counter-reset: step; }
.steps.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.steps li { counter-increment: step; display: grid; gap: 8px; align-content: start; }
.steps li::before { content: counter(step); display: grid; place-items: center; width: 36px; height: 36px; border-radius: 50%; border: 1.5px solid var(--blue); color: var(--blue); font: 600 15px var(--mono); margin-bottom: 6px; }
.site .steps h3 { font: 650 19px/1.25 var(--display); }
.steps p { font-size: 15.5px; }

/* faq */
.faq { display: grid; grid-template-columns: minmax(0, 4fr) minmax(0, 7fr); gap: clamp(28px, 6vw, 80px); }
.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; display: flex; justify-content: space-between; gap: 20px; padding: 20px 0; font: 600 18px/1.35 var(--sans); color: var(--ink); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font: 400 26px/1 var(--sans); color: var(--blue); flex: none; }
.faq details[open] summary::after { content: "\2212"; }
.faq details p { padding: 0 40px 22px 0; max-width: 64ch; }

/* call to action band */
.cta { background: var(--navy); padding-block: clamp(56px, 8vw, 96px); background-image: radial-gradient(800px 300px at 90% 0%, rgba(0, 101, 217, .5), transparent 70%), radial-gradient(600px 300px at 0% 100%, rgba(109, 166, 49, .18), transparent 70%); }
.cta-row { display: flex; justify-content: space-between; align-items: center; gap: 32px; flex-wrap: wrap; }
.site .cta h2 { color: #fff; font-size: clamp(30px, 3.6vw, 46px); line-height: 1.06; letter-spacing: calc(-.025em * var(--tk)); font-weight: var(--hw); max-width: 20ch; }
.cta p { color: #c4d4e6; margin-top: 12px; font-size: 18px; max-width: 52ch; }

/* demo form, byline */
.byline { display: grid; grid-template-columns: auto minmax(0, 1fr); gap: 20px; align-items: center; padding: 26px 28px; border-radius: 16px; background: var(--paper); border: 1px solid var(--line); }
.byline img { width: 52px; height: 52px; }
.byline p { font-size: 16px; }
.byline b { color: var(--ink); }
.final { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(32px, 6vw, 80px); align-items: start; }
.site .final h1, .site .final h2 { font-size: clamp(36px, 4.6vw, 58px); line-height: 1.02; letter-spacing: calc(-.03em * var(--tk)); font-weight: var(--hw); margin-block: 12px 18px; }
.form { border: 1px solid var(--line); border-radius: 18px; padding: clamp(22px, 3vw, 32px); display: grid; gap: 14px; background: var(--paper); box-shadow: var(--shadow); }
.site .form h3 { font: 650 22px/1.2 var(--display); }
.field { display: grid; gap: 6px; }
.field label { font: 600 14px var(--sans); color: var(--ink); }
.field input, .field select, .field textarea { font: 400 16px var(--sans); color: var(--ink); padding: 11px 12px; border: 1px solid #c3d1de; border-radius: 9px; background: var(--paper); width: 100%; }
.field textarea { min-height: 96px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: #8a9aab; }
.two { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 12px; }
.form-note { font-size: 13.5px; color: var(--muted); }
.next-steps { list-style: none; margin: 28px 0 0; padding: 0; display: grid; gap: 18px; counter-reset: step; }
.next-steps li { counter-increment: step; display: grid; grid-template-columns: 36px minmax(0, 1fr); gap: 14px; align-items: start; }
.next-steps li::before { content: counter(step); display: grid; place-items: center; width: 36px; height: 36px; border-radius: 50%; background: var(--paper); border: 1.5px solid var(--blue); color: var(--blue); font: 600 15px var(--mono); }
.next-steps b { display: block; color: var(--ink); }
.next-steps span { font-size: 15.5px; }

/* about */
.quote { font-family: var(--display); font-weight: 600; font-size: clamp(26px, 3vw, 38px); line-height: 1.2; letter-spacing: calc(-.02em * var(--tk)); color: var(--ink); max-width: 30ch; padding-left: 24px; border-left: 4px solid var(--green); }
.prose { max-width: 68ch; display: grid; gap: 18px; font-size: 18px; }
.prose p { line-height: 1.7; }
.facts-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.facts-grid div { background: var(--paper); border: 1px solid var(--line); border-radius: 16px; padding: 22px; }
.facts-grid b { display: block; font: 650 18px/1.3 var(--display); color: var(--ink); margin-bottom: 6px; }
.facts-grid span { font-size: 15.5px; }

/* legal pages */
.legal { max-width: 74ch; display: grid; gap: 14px; font-size: 16.5px; }
.site .legal h2 { font: 650 24px/1.25 var(--display); letter-spacing: calc(-.01em * var(--tk)); margin-top: 28px; }
.site .legal h3 { font: 650 18px/1.3 var(--display); margin-top: 12px; }
.legal p, .legal li { line-height: 1.7; }
.legal ul { margin: 0; padding-left: 22px; display: grid; gap: 6px; }
.legal .ph { background: #fff4c7; color: #6b4e00; border-radius: 4px; padding: 0 4px; font-weight: 600; }
.legal-meta { font: 500 13.5px var(--mono); color: var(--muted); }
.legal-note { background: var(--mist); border: 1px solid var(--line); border-radius: 14px; padding: 16px 18px; font-size: 15px; }
.legal-layout { display: grid; grid-template-columns: 240px minmax(0, 1fr); gap: 56px; align-items: start; }
.legal-side { position: sticky; top: 24px; display: grid; gap: 4px; }
.site .legal-side a { padding: 8px 12px; border-radius: 8px; color: var(--text); text-decoration: none; font-weight: 550; }
.site .legal-side a.is-active { background: var(--mist); color: var(--blue); }

/* footer */
.foot { background: var(--navy-deep); color: #b9c8d6; padding-block: 56px 40px; font-size: 15px; }
.foot-grid { display: grid; grid-template-columns: minmax(0, 1.4fr) repeat(4, minmax(0, 1fr)); gap: 32px; }
.site .logo-chip { display: inline-block; background: #fff; border-radius: 14px; padding: 12px 16px; }
.logo-chip img { width: 230px; max-width: 100%; height: auto; }
.foot-by { margin-top: 14px; font-size: 14px; color: #93a8bc; max-width: 32ch; }
.site .foot h4 { margin: 0 0 12px; font: 600 12.5px var(--sans); letter-spacing: .09em; text-transform: uppercase; color: #fff; }
.foot ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.site .foot a { color: #b9c8d6; text-decoration: none; }
.site .foot a:hover { color: #fff; }
.foot-bottom { margin-top: 40px; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, .12); font-size: 13.5px; color: #8ea3b7; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; }

/* ---------- narrower screens ---------- */
@media (max-width: 1100px) {
  .cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .foot-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 1040px) {
  .nav, .site .signin, .head-actions > .btn-secondary { display: none; }
  .mobile-menu { display: block; }
  .grid6 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid6 > div:not(:nth-child(3n + 1)) { padding-left: 0; border-left: 0; }
  .grid6 > div:nth-child(2n) { padding-left: 28px; border-left: 1px solid var(--line); }
  .steps, .numbers { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pains, .facts-grid, .cards.three { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .legal-layout { grid-template-columns: minmax(0, 1fr); }
  .legal-side { position: static; display: flex; flex-wrap: wrap; }
}
@media (max-width: 1000px) {
  .tl { height: auto; padding-left: 28px; display: grid; gap: 22px; }
  .tl::before { top: 6px; bottom: 6px; left: 7px; right: auto; width: 3px; height: auto; background: repeating-linear-gradient(180deg, rgba(255, 255, 255, .35) 0 8px, transparent 8px 14px); }
  .tl::after { top: 6px; left: 7px; width: 3px; height: 74%; }
  .tl li, .tl .edge.end, .tl .event, .tl .event.up { position: relative; left: auto; right: auto; top: auto; transform: none; text-align: left; width: auto; padding-top: 0; }
  .tl .event::before, .tl .event.up::before { left: -28px; top: 1px; }
  .tl .edge::before { content: ""; position: absolute; left: -26px; top: 3px; width: 11px; height: 11px; border-radius: 50%; border: 2px solid rgba(255, 255, 255, .8); background: var(--navy); }
  .tl .edge time { display: inline; margin: 0 8px 0 0; }
  .tl .edge b { display: inline; }
}
@media (max-width: 860px) {
  .hero-grid, .feature, .feature.flip, .final, .faq, .price-panel, .wide-text { grid-template-columns: minmax(0, 1fr); }
  .feature.flip .feature-media { order: 0; }
  .hero-visual { justify-items: center; }
  .who { grid-template-columns: minmax(0, 1fr); }
  .who article, .who article:first-child { border-left: 0; padding: 26px 0 22px; border-bottom: 1px solid var(--line); }
  .stage.split { grid-template-columns: minmax(0, 1fr); }
  .stage.split .stamped { width: min(240px, 70%); }
  .stack .back { display: none; }
  .stack .front { width: 100%; margin-top: 0; }
  .foot-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .head-row { gap: 12px; }
  .brand img { height: 38px; }
  .pillars { grid-template-columns: minmax(0, 1fr); }
  .pillars li + li { border-left: 0; border-top: 1px solid var(--line); }
  .site .pillars a, .site .pillars li:first-child a { padding: 12px 0; }
  .cards, .grid6, .steps, .steps.three, .two, .foot-grid, .numbers, .pains, .facts-grid, .cards.three { grid-template-columns: minmax(0, 1fr); }
  .grid6 > div:nth-child(2n) { padding-left: 0; border-left: 0; }
  .price-list ul { columns: 1; }
  .btn-row .btn { flex: 1 1 100%; }
  .hero .stamped, .page-hero .stamped { width: 44%; }
  .stage.pair { gap: 12px; padding: 16px; }
  .faq details p { padding-right: 0; }
}

/* ---------- one-off adjustments ----------
   The site's CSP allows no inline styles, so the few one-off styles in the design are classes
   instead. They are !important on purpose: they stand in for inline styles, which win over
   every rule above (a plain `.mt-18` loses to `.site p { margin: 0 }`, for one). */
.mt-12 { margin-top: 12px !important; }
.mt-14 { margin-top: 14px !important; }
.mt-18 { margin-top: 18px !important; }
.mt-28 { margin-top: 28px !important; }
.mt-40 { margin-top: 40px !important; }
.mt-64 { margin-top: 64px !important; }
.w-full { width: 100% !important; }
.w-88 { width: 88% !important; }
.crumbs-light { color: #93a8bc !important; }
.ai-h1 { font-size: clamp(38px, 5vw, 62px) !important; line-height: 1.02 !important; margin-block: 14px 20px !important; }
.stage-left { justify-items: start !important; text-align: left !important; }
.big-note { font-family: var(--display) !important; font-size: 34px !important; line-height: 1.1 !important; color: var(--ink) !important; font-weight: 700 !important; margin-top: 10px !important; }
.cards-auto { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important; }
