:root {
  --green: #147d73;
  --green-dark: #0c5e58;
  --blue: #3b91b7;
  --lime: #76b947;
  --ink: #183c48;
  --muted: #68808a;
  --paper: #f5faf8;
  --line: #dcebe7;
  --white: #fff;
  --shadow: 0 24px 70px rgba(20, 83, 77, .13);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 5%, rgba(118, 185, 71, .14), transparent 26rem),
    radial-gradient(circle at 94% 12%, rgba(59, 145, 183, .14), transparent 30rem),
    var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}
a { color: inherit; }
.shell { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(245, 250, 248, .86);
  border-bottom: 1px solid rgba(220, 235, 231, .9);
  backdrop-filter: blur(18px);
}
.nav-inner { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; font-size: 20px; font-weight: 850; }
.brand img { width: 46px; height: 46px; object-fit: contain; }
.nav-links { display: flex; gap: 24px; align-items: center; }
.nav-links a { text-decoration: none; color: var(--muted); font-size: 14px; font-weight: 700; }
.nav-links a:hover { color: var(--green); }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 15px;
  background: linear-gradient(135deg, var(--green), var(--blue));
  color: var(--white);
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(20, 125, 115, .2);
}
.button.secondary { color: var(--green); background: var(--white); border: 1px solid var(--line); box-shadow: none; }
.hero { padding: 90px 0 72px; display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: 70px; }
.eyebrow { margin: 0 0 14px; color: var(--green); font-size: 12px; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
h1 { margin: 0; font-size: clamp(42px, 6vw, 72px); line-height: 1.04; letter-spacing: -.045em; }
.lead { max-width: 650px; margin: 24px 0 30px; color: var(--muted); font-size: clamp(17px, 2vw, 20px); }
.actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-card {
  position: relative;
  min-height: 480px;
  padding: 38px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 38px;
  background: linear-gradient(145deg, var(--green), var(--blue));
  box-shadow: var(--shadow);
  color: var(--white);
}
.hero-card::before, .hero-card::after { content: ""; position: absolute; border-radius: 50%; background: rgba(255,255,255,.1); }
.hero-card::before { width: 300px; height: 300px; top: -130px; right: -90px; }
.hero-card::after { width: 180px; height: 180px; bottom: -80px; left: -60px; }
.hero-logo { width: 96px; height: 96px; padding: 9px; border-radius: 28px; background: rgba(255,255,255,.94); object-fit: contain; }
.hero-card h2 { max-width: 380px; margin: 36px 0 10px; font-size: 31px; line-height: 1.15; }
.hero-card p { max-width: 390px; color: rgba(255,255,255,.82); }
.mini-grid { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 34px; }
.mini { padding: 16px; border-radius: 18px; background: rgba(255,255,255,.13); border: 1px solid rgba(255,255,255,.15); font-weight: 750; }
.section { padding: 70px 0; }
.section-head { max-width: 680px; margin-bottom: 30px; }
.section h2, .page-hero h1 { margin: 0 0 12px; font-size: clamp(32px, 4vw, 48px); letter-spacing: -.035em; }
.section-head p, .page-hero p { margin: 0; color: var(--muted); font-size: 17px; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature { padding: 27px; border-radius: 24px; background: var(--white); border: 1px solid var(--line); box-shadow: 0 13px 35px rgba(26,70,65,.06); }
.feature-icon { width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 22px; border-radius: 15px; color: var(--green); background: #e8f5f1; font-size: 23px; }
.feature h3 { margin: 0 0 8px; font-size: 18px; }
.feature p { margin: 0; color: var(--muted); font-size: 14px; }
.audience { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.audience-card { padding: 34px; border-radius: 28px; border: 1px solid var(--line); background: linear-gradient(145deg, #fff, #f0f8f5); }
.audience-card h3 { margin: 0 0 15px; font-size: 26px; }
.check-list { display: grid; gap: 10px; padding: 0; margin: 0; list-style: none; color: var(--muted); }
.check-list li::before { content: "✓"; color: var(--green); font-weight: 900; margin-right: 9px; }
.cta { margin: 55px auto 80px; padding: 46px; border-radius: 32px; text-align: center; color: white; background: linear-gradient(130deg, var(--green-dark), var(--blue)); box-shadow: var(--shadow); }
.cta h2 { margin: 0 0 10px; font-size: 34px; }
.cta p { margin: 0 auto 24px; max-width: 620px; color: rgba(255,255,255,.8); }
.cta .button { color: var(--green); background: white; box-shadow: none; }
.page-hero { padding: 76px 0 38px; max-width: 760px; }
.content-card { margin-bottom: 70px; padding: clamp(24px, 5vw, 48px); border: 1px solid var(--line); border-radius: 30px; background: var(--white); box-shadow: var(--shadow); }
.support-options { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin: 28px 0; }
.support-option { padding: 24px; border-radius: 20px; background: #f1f8f6; border: 1px solid var(--line); }
.support-option h3 { margin: 0 0 7px; }
.support-option p { margin: 0 0 13px; color: var(--muted); }
.support-option a { color: var(--green); font-weight: 800; }
.policy h2 { margin: 34px 0 8px; font-size: 22px; }
.policy h2:first-child { margin-top: 0; }
.policy p, .policy li { color: #526c75; }
.notice { padding: 17px 19px; border-left: 4px solid var(--green); border-radius: 12px; background: #edf7f4; color: #416169; }
.footer { padding: 34px 0; border-top: 1px solid var(--line); color: var(--muted); font-size: 13px; }
.footer-inner { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer-links { display: flex; gap: 18px; }
.footer a { text-decoration: none; }

@media (max-width: 820px) {
  .nav-links a:not(.button) { display: none; }
  .hero { grid-template-columns: 1fr; padding-top: 58px; gap: 40px; }
  .hero-card { min-height: 430px; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .audience { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .shell { width: min(100% - 28px, 1160px); }
  .nav-inner { min-height: 68px; }
  .brand img { width: 40px; height: 40px; }
  .nav .button { min-height: 42px; padding: 0 14px; font-size: 13px; }
  .hero { padding-top: 44px; }
  .hero-card { min-height: auto; padding: 26px; border-radius: 28px; }
  .feature-grid, .support-options { grid-template-columns: 1fr; }
  .section { padding: 52px 0; }
  .content-card { border-radius: 23px; }
  .cta { padding: 34px 22px; border-radius: 25px; }
}

/* 2026 promotional landing */
.landing { --ink:#123b42; --teal:#087f76; --mint:#dff5ef; background:#fff; color:var(--ink); }
.landing { overflow-x:hidden; }
.hero-new-grid>* { min-width:0; }
.landing h1,.landing h2,.landing h3 { text-wrap:balance; }
.site-header { position:sticky; top:0; z-index:50; background:rgba(255,255,255,.9); border-bottom:1px solid rgba(13,99,91,.1); backdrop-filter:blur(18px); }
.header-inner { min-height:78px; display:flex; align-items:center; justify-content:space-between; gap:28px; }
.header-links { display:flex; align-items:center; gap:30px; margin-left:auto; }
.header-links a { color:#47636a; text-decoration:none; font-size:14px; font-weight:700; transition:.2s; }
.header-links a:hover { color:var(--teal); }
.header-cta { min-height:46px; padding:0 21px; }
.hero-new { position:relative; overflow:hidden; padding:100px 0 112px; background:linear-gradient(145deg,#f7fcfa 0%,#fff 50%,#eff9f7 100%); }
.hero-glow { position:absolute; border-radius:50%; filter:blur(2px); pointer-events:none; }
.glow-a { width:430px;height:430px;right:-130px;top:-190px;background:rgba(66,194,175,.13); }
.glow-b { width:240px;height:240px;left:-90px;bottom:-130px;background:rgba(23,126,180,.09); }
.hero-new-grid { position:relative; display:grid; grid-template-columns:.9fr 1.1fr; gap:70px; align-items:center; }
.hero-label { display:inline-flex; align-items:center; gap:9px; padding:8px 13px; border:1px solid #cce8e2; border-radius:99px; background:#f0faf7; color:var(--teal); font-size:12px; font-weight:850; letter-spacing:.04em; text-transform:uppercase; }
.hero-label span { width:7px;height:7px;border-radius:50%;background:#2bb5a3;box-shadow:0 0 0 5px rgba(43,181,163,.12); }
.hero-copy h1 { max-width:650px; margin:25px 0 24px; font-size:clamp(49px,5.3vw,76px); line-height:.98; letter-spacing:-.058em; }
.hero-copy h1 em,.results-section h2 em { color:var(--teal); font-style:normal; }
.hero-copy>p { max-width:590px; margin:0; color:#587178; font-size:18px; line-height:1.75; }
.hero-actions { display:flex; align-items:center; gap:25px; margin:34px 0; }
.store-links{display:flex;gap:10px;margin:-18px 0 27px}.store-button{min-width:154px;display:flex;align-items:center;gap:10px;padding:9px 13px;border-radius:12px;background:#102f34;color:#fff;text-align:left;text-decoration:none;box-shadow:0 10px 24px rgba(11,48,52,.12);transition:transform .2s,background .2s}.store-button:hover{transform:translateY(-2px);background:#071f23}.store-icon{width:27px;display:grid;place-items:center;font-size:19px}.store-icon.apple{font-size:24px}.store-icon.play-store{color:#69d5c4;font-size:16px}.store-button small,.store-button strong{display:block;line-height:1.1}.store-button small{margin-bottom:3px;color:#c2d1d2;font-size:9px}.store-button strong{font-size:13px}
.button-large { min-height:56px; padding:0 27px; border-radius:14px; }
.text-link { display:flex;align-items:center;gap:10px;color:var(--ink);text-decoration:none;font-weight:800;font-size:14px; }
.play { width:38px;height:38px;display:grid;place-items:center;border-radius:50%;background:#e2f4ef;color:var(--teal);font-size:11px; }
.hero-proof { display:flex;align-items:center;gap:14px;padding-top:20px;border-top:1px solid #dfebe8;max-width:430px; }
.avatar-stack { display:flex;padding-left:8px; }
.avatar-stack span { width:35px;height:35px;display:grid;place-items:center;margin-left:-8px;border:3px solid #fff;border-radius:50%;background:#d8eee9;color:var(--teal);font-size:11px;font-weight:900; }
.avatar-stack span:nth-child(2){background:#e6e0fa;color:#6955a5}.avatar-stack span:nth-child(3){background:#f9e2d3;color:#a95e39}
.hero-proof p { margin:0;color:#688086;font-size:11px;line-height:1.45}.hero-proof strong{color:var(--ink);font-size:13px}
.hero-visual { position:relative; min-height:540px; }
.screen-card { position:absolute;overflow:hidden;border:7px solid #fff;border-radius:22px;background:#fff;box-shadow:0 32px 80px rgba(19,75,74,.19); }
.desktop-screen { width:89%;right:0;top:30px;transform:rotate(1.5deg); }
.screen-card img { display:block;width:100%; }
.browser-bar { height:34px;display:flex;align-items:center;gap:5px;padding:0 10px;background:#f7f9f9;color:#86999d;font-size:8px; }
.browser-bar i { width:6px;height:6px;border-radius:50%;background:#d1dedc}.browser-bar span{margin-left:7px}
.phone-frame { position:absolute;z-index:3;width:185px;left:0;bottom:0;padding:7px;border:5px solid #153e43;border-radius:31px;background:#fff;box-shadow:0 26px 55px rgba(15,62,62,.3);transform:rotate(-4deg);overflow:hidden; }
.phone-frame img { display:block;width:100%;border-radius:21px}.phone-speaker{position:absolute;z-index:2;top:11px;left:50%;width:42px;height:5px;transform:translateX(-50%);border-radius:9px;background:#163c40}
.floating-chip { position:absolute;z-index:4;display:flex;align-items:center;gap:11px;padding:13px 16px;border:1px solid #e0ece9;border-radius:15px;background:rgba(255,255,255,.95);box-shadow:0 17px 42px rgba(18,70,67,.15); }
.floating-chip b { width:31px;height:31px;display:grid;place-items:center;border-radius:10px;background:#e0f6ef;color:var(--teal)}.floating-chip strong,.floating-chip small{display:block}.floating-chip strong{font-size:12px}.floating-chip small{margin-top:2px;color:#7b9094;font-size:9px}.chip-one{right:-15px;top:8px}.chip-two{right:25px;bottom:28px}.chip-two b{color:#f08c4a;background:#fff0e6}
.trust-row { padding:27px 0;border-top:1px solid #edf2f1;border-bottom:1px solid #edf2f1;background:#fff; }
.trust-row .shell { display:flex;align-items:center;justify-content:space-between;gap:30px}.trust-row p{margin:0;color:#8a999c;font-size:11px;font-weight:850;text-transform:uppercase;letter-spacing:.12em}.trust-items{display:flex;gap:40px;flex-wrap:wrap}.trust-items span{color:#476269;font-size:13px;font-weight:750}.trust-items span:before{content:'✓';margin-right:8px;color:#24a693}
.section-new { padding:110px 0; }
.section-heading { max-width:720px;margin-bottom:46px}.section-heading.centered{text-align:center;margin-left:auto;margin-right:auto}.kicker{display:inline-block;margin-bottom:15px;color:var(--teal);font-size:12px;font-weight:900;letter-spacing:.13em;text-transform:uppercase}.section-heading h2,.showcase-copy h2,.final-cta h2{margin:0 0 18px;font-size:clamp(35px,4.5vw,55px);line-height:1.08;letter-spacing:-.045em}.section-heading p,.showcase-copy>p{margin:0;color:#657b81;font-size:16px;line-height:1.75}
.value-grid { display:grid;grid-template-columns:repeat(4,1fr);gap:16px}.value-card{position:relative;min-height:290px;padding:29px;border:1px solid #dfecea;border-radius:24px;background:#fff;transition:.25s}.value-card:hover{transform:translateY(-6px);box-shadow:0 22px 48px rgba(21,86,80,.1)}.value-card.featured{color:#fff;border-color:var(--teal);background:linear-gradient(145deg,#0b877c,#076d68)}.line-icon{width:48px;height:48px;display:grid;place-items:center;border-radius:15px;background:#e9f7f3;color:var(--teal);font-size:23px;font-weight:800}.featured .line-icon{background:rgba(255,255,255,.15);color:#fff}.value-card h3{margin:37px 0 10px;font-size:20px}.value-card p{margin:0;color:#71868a;font-size:14px;line-height:1.65}.featured p{color:rgba(255,255,255,.73)}.value-card>span{position:absolute;right:25px;bottom:20px;color:#d7e6e3;font-size:35px;font-weight:900}.featured>span{color:rgba(255,255,255,.14)}
.soft-section { overflow:hidden;background:#f2f9f7}.split-showcase{display:grid;grid-template-columns:1.08fr .92fr;gap:100px;align-items:center}.showcase-visual{position:relative;min-height:570px}.image-panel{position:absolute;overflow:hidden;padding:6px;border-radius:28px;background:#fff;box-shadow:0 30px 60px rgba(16,78,72,.18)}.image-panel img{display:block;width:100%;border-radius:22px}.image-back{width:45%;left:0;top:20px;transform:rotate(-5deg)}.image-front{width:52%;right:12%;bottom:0;transform:rotate(4deg)}.tiny-badge{position:absolute;right:0;top:44px;padding:15px 18px;border-radius:14px;background:#fff;box-shadow:0 16px 35px rgba(17,75,70,.13);font-size:12px}.feature-list{display:grid;gap:20px;margin:30px 0 0;padding:0;list-style:none}.feature-list li{display:flex;gap:15px}.feature-list li>span{flex:0 0 29px;width:29px;height:29px;display:grid;place-items:center;border-radius:50%;background:#dff4ee;color:var(--teal);font-weight:900}.feature-list strong{font-size:15px}.feature-list p{margin:3px 0 0;color:#73868a;font-size:13px}
.bento-grid{display:grid;grid-template-columns:1.2fr .8fr;gap:20px}.bento{overflow:hidden;padding:34px;border:1px solid #dfeae8;border-radius:27px;background:#f6faf9}.bento h3{margin:13px 0 10px;font-size:27px}.bento p{margin:0;color:#6b8185;line-height:1.65}.tag{color:var(--teal);font-size:10px;font-weight:900;text-transform:uppercase;letter-spacing:.12em}.bento-wide{display:grid;grid-template-columns:.7fr 1.3fr;gap:28px;align-items:center;min-height:360px}.bento-image{align-self:end;margin:20px -34px -34px 0;border:5px solid #fff;border-radius:18px 0 0 0;box-shadow:0 18px 38px rgba(17,70,68,.12);overflow:hidden}.bento-image img,.wide-shot img,.portrait-shot img{display:block;width:100%}.bento-dark{color:#fff;background:linear-gradient(145deg,#153f44,#092d32);border:0}.bento-dark p{color:rgba(255,255,255,.66)}.bento-dark .tag{color:#73dbcc}.message-art{display:grid;gap:9px;margin-top:30px}.message-art span{padding:12px 14px;border:1px solid rgba(255,255,255,.11);border-radius:11px;background:rgba(255,255,255,.07);font-size:11px}.bento-tall{display:grid;grid-template-columns:1fr 220px;align-items:center;column-gap:24px}.bento-tall .tag,.bento-tall h3,.bento-tall>p{grid-column:1}.bento-tall .portrait-shot{grid-column:2;grid-row:1/4}.portrait-shot{max-height:285px;margin:0;border:5px solid #fff;border-radius:17px;box-shadow:0 15px 35px rgba(18,78,73,.12);overflow:hidden}.portrait-shot img{height:100%;object-fit:cover;object-position:top}.bento-permission{display:grid;grid-template-columns:.65fr 1.35fr;gap:28px;align-items:center}.wide-shot{margin:0 -34px -34px 0;border:5px solid #fff;border-radius:18px 0 0 0;overflow:hidden;box-shadow:0 15px 35px rgba(18,78,73,.1)}
.results-section{padding:105px 0;color:#fff;background:linear-gradient(135deg,#123f44,#082c31)}.results-grid{display:grid;grid-template-columns:.8fr 1.2fr;gap:110px}.kicker-light{color:#65d2c3}.results-section h2{margin:0;font-size:clamp(42px,5vw,64px);line-height:1.04;letter-spacing:-.05em}.results-section h2 em{color:#64d6c5}.results-list{display:grid;grid-template-columns:1fr 1fr;gap:0}.results-list article{display:flex;gap:18px;padding:26px;border-bottom:1px solid rgba(255,255,255,.12)}.results-list strong{color:#55c9b8;font-size:12px}.results-list p{margin:0;color:rgba(255,255,255,.79);line-height:1.55}
.final-cta{padding:90px 0;background:linear-gradient(120deg,#dff6ef,#eef9f7)}.final-cta-inner{display:flex;align-items:center;justify-content:space-between;gap:50px}.final-cta h2{max-width:700px}.final-cta p{margin:0;color:#647c81}.button-white{flex:none;color:#fff;background:var(--teal)}.cta-actions{display:grid;gap:12px;justify-items:stretch;flex:none}.cta-actions>.button{width:100%}.store-links.compact{margin:0}.compact .store-button{min-width:130px;padding:8px 10px}
.site-footer{padding:70px 0 25px;color:#b8cbcd;background:#092f34}.footer-top{display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:50px;padding-bottom:50px}.site-footer .brand{color:#fff}.footer-brand p{margin:16px 0;color:#8eaaad}.footer-top h3{margin:8px 0 18px;color:#fff;font-size:13px}.footer-top>div:not(:first-child){display:flex;flex-direction:column;gap:12px}.footer-top a,.footer-top span{color:#a9bfc1;text-decoration:none;font-size:13px}.footer-top a:hover{color:#fff}.footer-bottom{display:flex;justify-content:space-between;gap:20px;padding-top:24px;border-top:1px solid rgba(255,255,255,.1);font-size:11px}
@media(max-width:960px){.header-links{display:none}.hero-new-grid{grid-template-columns:1fr}.hero-copy{text-align:center}.hero-copy>p,.hero-proof{margin-left:auto;margin-right:auto}.hero-actions,.hero-proof{justify-content:center}.hero-visual{max-width:680px;width:100%;margin:auto}.value-grid{grid-template-columns:1fr 1fr}.split-showcase{grid-template-columns:1fr;gap:50px}.showcase-visual{max-width:600px;width:100%;margin:auto}.results-grid{grid-template-columns:1fr;gap:50px}.footer-top{grid-template-columns:2fr 1fr 1fr}}
@media(max-width:680px){.header-inner{min-height:68px;gap:10px}.site-header .brand img{width:37px;height:37px}.site-header .brand span{font-size:19px}.header-cta{min-height:42px;font-size:11px;padding:0 11px;white-space:nowrap}.hero-new{padding:70px 0 80px}.hero-copy h1{font-size:43px;overflow-wrap:anywhere}.hero-copy>p{font-size:16px}.hero-label{font-size:10px;letter-spacing:.02em}.hero-actions{flex-direction:column}.hero-visual{min-height:390px;max-width:100%}.phone-frame{width:125px;left:4px}.floating-chip{display:none}.desktop-screen{width:94%;right:0}.trust-row .shell{align-items:flex-start;flex-direction:column}.trust-items{display:grid;grid-template-columns:1fr 1fr;gap:14px}.section-new{padding:75px 0}.value-grid{grid-template-columns:1fr}.value-card{min-height:240px}.showcase-visual{min-height:420px}.image-back{width:49%}.image-front{width:57%;right:2%}.tiny-badge{right:0;top:10px}.bento-grid{grid-template-columns:1fr}.bento-wide,.bento-permission{grid-template-columns:1fr}.bento-tall{grid-row:auto}.bento-image,.wide-shot{margin-right:-34px}.results-list{grid-template-columns:1fr}.final-cta-inner{align-items:flex-start;flex-direction:column}.footer-top{grid-template-columns:1fr 1fr}.footer-brand{grid-column:1/-1}.footer-bottom{flex-direction:column}.site-footer{padding-top:50px}}

@media(max-width:680px){
  .landing .shell{width:calc(100% - 32px);max-width:100%}
  .header-cta{display:none}
  .hero-new{padding:52px 0 60px}
  .hero-new-grid{display:block}
  .hero-copy{text-align:left}
  .hero-label{max-width:100%;white-space:normal}
  .hero-copy h1{margin:22px 0 18px;font-size:clamp(38px,12vw,48px);line-height:1.02;letter-spacing:-.052em;overflow-wrap:normal}
  .hero-copy>p{font-size:15px;line-height:1.65}
  .hero-actions{align-items:stretch;margin:26px 0 24px}
  .hero-actions .button{width:100%}
  .hero-actions .text-link{justify-content:center}
  .store-links{display:grid;grid-template-columns:1fr 1fr;gap:8px;margin:0 0 25px}
  .store-button{min-width:0;padding:9px 8px;gap:5px}
  .store-icon{width:22px}
  .hero-proof{justify-content:flex-start;margin:0;padding-top:18px}
  .hero-visual{min-height:300px;margin-top:38px}
  .desktop-screen{position:relative;width:100%;right:auto;top:auto;transform:none;border-width:4px;border-radius:15px}
  .phone-frame{width:104px;bottom:-12px;left:10px;border-width:3px;border-radius:21px}
  .browser-bar{height:25px}
  .trust-row{padding:24px 0}.trust-row .shell{gap:18px}.trust-items{width:100%;font-size:12px}
  .section-new{padding:66px 0}.section-heading{margin-bottom:30px}.section-heading.centered{text-align:left}
  .section-heading h2,.showcase-copy h2,.final-cta h2{font-size:34px}.section-heading p,.showcase-copy>p{font-size:15px}
  .value-grid{gap:12px}.value-card{min-height:0;padding:24px}.value-card h3{margin-top:24px}.value-card>span{font-size:28px}
  .split-showcase{display:flex;flex-direction:column;gap:42px}.showcase-visual{order:2;min-height:330px}.showcase-copy{order:1}
  .image-back{width:48%;left:2%;top:30px}.image-front{width:55%;right:4%;bottom:8px}.tiny-badge{top:4px;font-size:10px;padding:10px}
  .bento-grid{display:flex;flex-direction:column;gap:14px}.bento{padding:25px;border-radius:21px}.bento h3{font-size:23px}
  .bento-wide,.bento-permission,.bento-tall{display:block;min-height:0}
  .bento-image,.wide-shot{margin:24px -25px -25px 0;border-radius:14px 0 0 0}
  .bento-tall .portrait-shot{max-width:210px;max-height:230px;margin:24px auto -25px;grid-column:auto;grid-row:auto;border-radius:15px 15px 0 0}
  .results-section{padding:68px 0}.results-grid{gap:30px}.results-section h2{font-size:40px}.results-list article{padding:19px 5px}
  .final-cta{padding:65px 0}.final-cta-inner{gap:30px}.cta-actions{width:100%}.cta-actions .compact{display:grid}.compact .store-button{min-width:0}
  .footer-top{gap:35px 20px}
}
