

:root {
  --canvas: #f5f6f7;        
  --canvas-2: #eaecef;      
  --card: #ffffff;          
  --ink: #16181a;           
  --ink-2: #5f666c;         
  --ink-3: #949aa1;         
  --accent: #0e7d96;        
  --accent-deep: #0b6376;   
  --accent-bright: #5ee9ff; 
  --accent-fill-dark: #1fa8c4;    
  --accent-on-fill-dark: #05252c; 
  --accent-wash: #e2f1f5;   
  --line: #e2e5e8;
  --r: 22px;
  --shadow-card: 0 18px 40px -18px rgba(22, 24, 26, .22);
  --shadow-device: 0 3px 8px rgba(22, 24, 26, .07), 0 36px 70px -26px rgba(22, 24, 26, .4);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--canvas);
  color: var(--ink);
  font-family: "Figtree", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: "Bricolage Grotesque", system-ui, sans-serif;
  font-weight: 500;
  letter-spacing: -.03em;
  line-height: 1.06;
}

a { color: var(--accent-deep); }

.wrap { position: relative; z-index: 2; max-width: 1080px; margin: 0 auto; padding: 0 30px; }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--accent); color: #fff; padding: 10px 16px; border-radius: 0 0 10px 0;
}
.skip:focus { left: 0; }

.aura {
  position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden;
  contain: paint;
}
.aura i { position: absolute; border-radius: 50%; will-change: transform; }
.aura i:nth-child(1) {
  width: 880px; height: 880px; left: -300px; top: -320px;
  background: radial-gradient(closest-side, rgba(215, 238, 244, .62), rgba(215, 238, 244, 0));
  animation: breathe 15s ease-in-out infinite;
}
.aura i:nth-child(2) {
  width: 720px; height: 720px; right: -240px; top: 120px;
  background: radial-gradient(closest-side, rgba(230, 238, 241, .7), rgba(230, 238, 241, 0));
  animation: breathe 19s ease-in-out infinite reverse;
}
@keyframes breathe {
  0%, 100% { transform: scale(1) translateY(0); }
  50% { transform: scale(1.14) translateY(26px); }
}

.site-head {
  position: sticky; top: 0; z-index: 60;
  background: var(--canvas);
}
.bar { display: flex; align-items: center; gap: 26px; height: 76px; }
.logo {
  display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink);
  font-family: "Bricolage Grotesque", sans-serif; font-weight: 600; font-size: 20px; letter-spacing: -.03em;
}
.logo svg { width: 26px; height: 26px; fill: var(--accent); }
.site-head nav { display: flex; gap: 24px; margin-left: auto; }
.site-head nav a { color: var(--ink-2); text-decoration: none; font-size: 15px; font-weight: 500; }
.site-head nav a:hover { color: var(--accent-deep); }
.nav-cta { margin-left: 18px; }

footer {
  border-top: 1px solid var(--line); padding: 30px 0; margin-top: 40px;
  font-size: 14px; color: var(--ink-3);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
footer a { color: var(--ink-3); text-decoration: none; }
footer a:hover { color: var(--accent-deep); }

.btn {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--accent); color: #fff; padding: 13px 24px; border-radius: 100px;
  text-decoration: none; font-weight: 600; font-size: 16px;
  box-shadow: 0 6px 18px rgba(14, 125, 150, .24);
  border: 1px solid transparent; transition: .22s;
}
.btn:hover { background: var(--accent-deep); transform: translateY(-1px); box-shadow: 0 10px 26px rgba(14, 125, 150, .3); }
.btn.quiet {
  background: var(--card); color: var(--ink); border-color: var(--line);
  box-shadow: 0 2px 8px rgba(22, 24, 26, .05);
}
.btn.quiet:hover { background: #fff; border-color: var(--accent); color: var(--accent-deep); }

.eyebrow { font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--accent-deep); font-weight: 600; }

.hero { padding: 62px 0 0; text-align: center; }
.hero h1 { font-size: clamp(42px, 6.6vw, 78px); max-width: 15ch; margin: 20px auto 0; }
.hero h1 .soft { color: var(--accent); }
.lede { font-size: 19px; color: var(--ink-2); max-width: 46ch; margin: 22px auto 0; }
.cta { display: flex; gap: 12px; justify-content: center; margin-top: 30px; flex-wrap: wrap; }
.fine { margin-top: 15px; font-size: 14px; color: var(--ink-3); }

.strip { max-width: 590px; margin: 58px auto 0; }
.strip img {
  width: 100%; height: auto; display: block;
  border-radius: 14px; box-shadow: var(--shadow-device);
}

section { padding: 112px 0; }
section.tight { padding-top: 0; }
.center { text-align: center; max-width: 46ch; margin: 0 auto 54px; }
h2 { font-size: clamp(30px, 4.4vw, 48px); }
.center p { color: var(--ink-2); margin-top: 14px; font-size: 18px; }

.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; margin-bottom: 96px; }
.row2:last-child { margin-bottom: 0; }
.row2:nth-of-type(even) .copy { order: 2; }
.row2 h3 { font-size: clamp(25px, 3.2vw, 34px); max-width: 15ch; }
.row2 p { color: var(--ink-2); margin-top: 16px; max-width: 42ch; }

.mac { border-radius: 14px; overflow: hidden; max-width: 320px; margin: 0 auto; box-shadow: var(--shadow-device); }
.mac img { width: 100%; height: auto; display: block; }

.phone {
  max-width: 262px; margin: 0 auto; border-radius: 48px; padding: 8px;
  background: linear-gradient(160deg, #2b312e, #151917); box-shadow: var(--shadow-device);
}
.phone img { width: 100%; height: auto; display: block; border-radius: 40px; }

.trio { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.q { background: var(--card); border: 1px solid var(--line); border-radius: var(--r); padding: 30px 26px; transition: .24s; }
.q:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }
.q .icon { width: 46px; height: 46px; border-radius: 14px; background: var(--accent-wash); display: grid; place-items: center; margin-bottom: 20px; }
.q .icon svg { width: 23px; height: 23px; stroke: var(--accent); fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.q h3 { font-size: 21px; margin-bottom: 9px; }
.q p { font-size: 15.5px; color: var(--ink-2); line-height: 1.6; }

.honest {
  background: var(--card); border: 1px solid var(--line); border-radius: 32px; padding: 52px 46px;
  display: grid; grid-template-columns: 1.2fr .8fr; gap: 44px; align-items: center;
}
.honest h2 { font-size: clamp(27px, 3.6vw, 40px); max-width: 16ch; }
.honest p { color: var(--ink-2); margin-top: 16px; max-width: 44ch; }
.compare { display: grid; gap: 12px; }
.cmp { display: flex; align-items: center; gap: 14px; padding: 16px 18px; border-radius: 16px; font-size: 15.5px; }
.cmp.a { background: var(--canvas-2); color: var(--ink-2); }
.cmp.b { background: var(--accent-wash); color: #0b4c5c; font-weight: 500; }
.cmp .mk { width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; flex: none; font-size: 14px; }
.cmp.a .mk { background: #dfe2e6; color: #8b9197; }
.cmp.b .mk { background: var(--accent); color: #fff; }

.rt-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.rt {
  background: var(--card); border: 1px solid var(--line); border-radius: 18px; padding: 22px 24px;
  display: flex; gap: 18px; align-items: center; transition: .2s;
}
.rt:hover { border-color: var(--accent); }
.rt .dot { width: 42px; height: 42px; border-radius: 13px; background: var(--accent-wash); display: grid; place-items: center; flex: none; }

.rt .dot svg { width: 24px; height: 24px; stroke: var(--accent-deep); fill: none; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.rt h4 { font-size: 18px; margin-bottom: 3px; }
.rt p { font-size: 14.5px; color: var(--ink-2); line-height: 1.5; }
.rt .min { margin-left: auto; font-size: 13.5px; color: var(--ink-3); white-space: nowrap; }
.rt-wide { grid-column: 1 / -1; }

.priv { background: linear-gradient(180deg, var(--accent-wash), transparent); border-radius: 32px; padding: 60px 46px; text-align: center; }
.priv h2 { max-width: 18ch; margin: 0 auto; }
.priv .cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 42px; text-align: left; }
.priv h4 { font-size: 17px; margin-bottom: 7px; }
.priv p { font-size: 15px; color: var(--ink-2); }

.end { text-align: center; padding: 116px 0 96px; }
.end h2 { font-size: clamp(36px, 6vw, 68px); max-width: 14ch; margin: 0 auto; }
.end p { color: var(--ink-2); max-width: 40ch; margin: 18px auto 0; font-size: 18px; }

.prose { max-width: 68ch; padding-top: 64px; padding-bottom: 40px; }
.prose h1 { font-size: clamp(34px, 5vw, 52px); margin-bottom: 8px; }
.prose h2 { font-size: 25px; margin: 40px 0 10px; }
.prose h3 { font-size: 19px; margin: 28px 0 8px; }
.prose p, .prose li { color: var(--ink-2); }
.prose p { margin-bottom: 14px; }
.prose ul, .prose ol { margin: 0 0 16px 20px; }
.prose li { margin-bottom: 7px; }
.prose a { color: var(--accent-deep); }
.prose hr { border: 0; border-top: 1px solid var(--line); margin: 36px 0; }
.prose .updated { font-size: 14px; color: var(--ink-3); margin-bottom: 30px; }
.prose h1 a, .prose h2 a, .prose h3 a { color: inherit; text-decoration: none; }

@media (max-width: 880px) {
  .trio, .rt-list, .priv .cols, .row2 { grid-template-columns: 1fr; }
  .row2:nth-of-type(even) .copy { order: 0; }
  .honest { grid-template-columns: 1fr; padding: 36px 26px; }
  .site-head nav { display: none; }
  .rt-wide { grid-column: auto; }
}

@media (max-width: 640px) {
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .aura i { animation: none; }
  * { transition-duration: .01ms !important; }
}
