:root{
  --ink:#0A0E1A;
  --paper:#ffffff;
  --surface:#F7F9FD;
  --blue:#2F7BFF;
  --violet:#7C6FF2;
  --green:#16D98A;
  --amber:#F5A623;
  --muted:#5B6472;
  --line:rgba(10,14,26,.09);
  --font-display:"Space Grotesk",system-ui,sans-serif;
  --font-body:"Inter",system-ui,-apple-system,"Segoe UI",sans-serif;
}

*{ box-sizing:border-box; margin:0; padding:0; }
html{ scroll-behavior:smooth; -webkit-text-size-adjust:100%; }

body{
  font-family:var(--font-body);
  background:var(--paper);
  color:var(--ink);
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  font-size:16px;
  line-height:1.5;
}

img{ display:block; max-width:100%; }
a{ color:inherit; text-decoration:none; }
a:focus-visible, button:focus-visible{ outline:3px solid var(--blue); outline-offset:3px; }

.page{ width:100%; overflow:hidden; }
.wrap{ width:min(calc(100% - 48px),1100px); margin:0 auto; position:relative; z-index:1; }

/* BRAND */
.brand-mark{
  width:44px; height:44px; padding:7px;
  display:flex; align-items:center; justify-content:center;
  flex:0 0 44px; overflow:hidden;
  border-radius:12px; background:#58ace0;
}
.brand-mark img{ width:100%; height:100%; object-fit:contain; }
.brand-name, .mobile-brand-name, .footer-brand-name{ color:var(--ink); font-size:20px; line-height:1; font-weight:900; }

/* MOBILE HEADER */
.mobile-header-banner{ display:none; }

/* DESKTOP HEADER */
.site-header{
  position:sticky; top:0; z-index:50;
  padding:14px 0;
  background:rgba(255,255,255,.75);
  backdrop-filter:blur(16px); -webkit-backdrop-filter:blur(16px);
  border-bottom:1px solid var(--line);
}
.nav-wrap{ width:min(calc(100% - 48px),1100px); margin:0 auto; display:flex; align-items:center; gap:32px; }
.brand{ display:flex; align-items:center; gap:11px; }
.nav-links{ display:flex; align-items:center; gap:28px; margin-left:auto; }
.nav-links a{ font-size:15px; font-weight:700; white-space:nowrap; }
.nav-links a:hover{ color:var(--blue); }
.nav-cta{
  min-height:44px; padding:0 24px;
  display:inline-flex; align-items:center; justify-content:center;
  border-radius:12px;
  background:linear-gradient(135deg,var(--blue),var(--violet));
  color:#ffffff; font-size:15px; font-weight:800; white-space:nowrap;
  box-shadow:0 10px 24px rgba(47,123,255,.28);
  transition:transform .18s ease,box-shadow .18s ease;
}
.nav-cta:hover{ transform:translateY(-1px); box-shadow:0 14px 30px rgba(47,123,255,.36); }

/* EYEBROW */
.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  padding:8px 16px; border-radius:999px;
  background:rgba(255,255,255,.7); border:1px solid var(--line);
  font-size:13px; font-weight:800; color:var(--muted);
  backdrop-filter:blur(8px);
}
.eyebrow-center{ display:flex; width:max-content; margin:0 auto 16px; }
.eyebrow-dot{ width:8px; height:8px; border-radius:50%; background:linear-gradient(135deg,var(--blue),var(--green)); flex:0 0 8px; }

/* GRADIENT TEXT */
.gradient-text{
  display:block; margin-top:8px;
  background:linear-gradient(135deg,var(--blue),var(--violet));
  -webkit-background-clip:text; background-clip:text; color:transparent;
}

/* STARS */
.stars{ position:relative; display:inline-block; color:#d8e0ee; line-height:1; letter-spacing:2px; font-weight:900; }
.stars::before{ content:"★★★★★"; position:absolute; inset:0 auto 0 0; width:90%; overflow:hidden; white-space:nowrap; color:var(--blue); }

/* AURORA */
.aurora{ position:absolute; inset:0; z-index:0; overflow:hidden; pointer-events:none; }
.aurora-blob{ position:absolute; border-radius:50%; filter:blur(90px); opacity:.45; }
.aurora-blob-1{ width:480px; height:480px; top:-140px; left:-100px; background:var(--blue); }
.aurora-blob-2{ width:420px; height:420px; top:40px; right:-120px; background:var(--violet); }
.aurora-blob-3{ width:400px; height:400px; bottom:-160px; left:35%; background:var(--green); opacity:.3; }
.aurora-blob-4{ width:400px; height:400px; top:-100px; left:10%; background:var(--blue); opacity:.25; }
.aurora-blob-5{ width:360px; height:360px; bottom:-120px; right:15%; background:var(--green); opacity:.25; }

/* HERO — fills the viewport below the sticky header, so nothing from the
   next section peeks in until the person actually scrolls */
.hero{
  position:relative;
  min-height:calc(100vh - 73px);
  display:flex;
  align-items:center;
  padding:32px 0;
  background:var(--paper);
  overflow:hidden;
}
.hero-grid{ display:grid; grid-template-columns:minmax(280px,1fr) minmax(320px,1.15fr); align-items:center; gap:36px; width:min(calc(100% - 48px),1100px); margin:0 auto; }

.hero-text h1{
  margin-top:16px; font-family:var(--font-display);
  font-size:42px; line-height:1.1; letter-spacing:-1px; font-weight:700;
  color:var(--ink); max-width:520px;
}
.hero-desc{ margin-top:18px; font-size:18px; line-height:1.55; color:var(--muted); font-weight:500; max-width:460px; }

.btn-primary{
  display:inline-flex; align-items:center; gap:12px;
  min-height:56px; padding:0 32px;
  border-radius:16px;
  background:linear-gradient(135deg,var(--blue),var(--violet));
  color:#ffffff; font-size:18px; font-weight:800;
  box-shadow:0 20px 40px rgba(47,123,255,.32),0 8px 16px rgba(124,111,242,.22);
  transition:transform .18s ease,box-shadow .18s ease;
}
.btn-primary:hover{ transform:translateY(-3px); box-shadow:0 26px 48px rgba(47,123,255,.4),0 10px 20px rgba(124,111,242,.3); }
.btn-icon{ font-size:20px; }

.hero-text .btn-primary{ margin-top:26px; }

.btn-connect{ display:inline-flex; }
.btn-download{ display:none; }

/* HERO VISUAL — two phone frames, real screenshots inside */
.hero-visual{ position:relative; width:100%; display:flex; align-items:center; justify-content:center; }

.hero-phones{
  display:flex;
  align-items:flex-end;
  justify-content:center;
  gap:28px;
  flex-wrap:wrap;
}

.phone-stage{ position:relative; width:170px; }

.phone-frame{
  position:relative; width:100%; aspect-ratio:9/19.3;
  background:var(--ink); border-radius:32px; padding:8px;
  box-shadow:0 26px 52px rgba(10,14,26,.26);
}

.phone-notch{
  position:absolute; top:8px; left:50%; transform:translateX(-50%);
  width:52px; height:15px; background:var(--ink); border-radius:9px; z-index:2;
}

.phone-screen{
  position:relative; width:100%; height:100%;
  border-radius:24px;
  overflow:hidden;
  background:#f2f4f8;
}

.phone-screen img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

/* Graceful fallback shown only if the screenshot fails to load */
.phone-screen-fallback{
  background:linear-gradient(160deg,#EEF3FF,#F3EEFF);
}

.phone-fallback{
  width:100%;
  height:100%;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:8px;
}

.phone-fallback-icon{
  font-size:28px;
  opacity:.5;
}

.phone-fallback-label{
  font-size:11px;
  font-weight:800;
  color:var(--muted);
}

.phone-home-indicator{ margin-top:8px; align-self:center; width:52px; height:4px; border-radius:2px; background:rgba(10,14,26,.14); }

.float-chip{
  position:absolute; padding:7px 12px;
  background:rgba(255,255,255,.88);
  backdrop-filter:blur(14px); -webkit-backdrop-filter:blur(14px);
  border:1px solid rgba(255,255,255,.8); border-radius:999px;
  font-size:10px; font-weight:800; color:var(--ink);
  box-shadow:0 12px 28px rgba(10,14,26,.12);
  animation:floatChip 5s ease-in-out infinite;
  white-space:nowrap;
}
.phone-stage:first-child .float-chip-2{ bottom:24px; left:-20px; animation-delay:1.4s; }
.phone-stage:last-child .float-chip-1{ top:2px; right:-18px; animation-delay:0s; }
@keyframes floatChip{ 0%,100%{ transform:translateY(0); } 50%{ transform:translateY(-8px); } }

/* TRUST STRIP */
.trust-strip{ padding:20px 0; background:var(--surface); border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.trust-strip-inner{ display:flex; justify-content:center; flex-wrap:wrap; gap:36px; }
.trust-strip-item{ display:flex; align-items:center; gap:10px; font-size:14px; font-weight:800; color:var(--ink); }
.trust-strip-icon{ font-size:18px; }

/* STEPS */
.steps-section{ padding:56px 0; }
.steps-section h2{ font-family:var(--font-display); text-align:center; font-size:38px; font-weight:700; letter-spacing:-.5px; color:var(--ink); }
.steps-intro{ margin:14px auto 0; max-width:480px; text-align:center; font-size:18px; color:var(--muted); }
.steps-grid{ max-width:1080px; margin:32px auto 0; display:grid; grid-template-columns:repeat(3,1fr); gap:24px; align-items:start; }
.step-card{ padding:32px 28px; background:rgba(255,255,255,.8); border:1px solid var(--line); border-radius:24px; box-shadow:0 16px 40px rgba(10,14,26,.06); }
.step-icon{ display:inline-flex; align-items:center; justify-content:center; width:52px; height:52px; border-radius:16px; font-size:22px; margin-bottom:20px; }
.step-icon-a{ background:linear-gradient(135deg,#DCEBFF,#EDE7FF); }
.step-icon-b{ background:linear-gradient(135deg,#FFF2D8,#FFE3D0); }
.step-icon-c{ background:linear-gradient(135deg,#D8F7EA,#E3F2FF); }
.step-eyebrow{ display:block; font-size:13px; font-weight:800; letter-spacing:.04em; text-transform:uppercase; color:var(--blue); margin-bottom:8px; }
.step-card h3{ font-size:20px; font-weight:800; color:var(--ink); line-height:1.3; }
.step-card p{ margin-top:12px; font-size:15px; line-height:1.6; color:var(--muted); font-weight:500; }

.step-list{ margin-top:18px; display:flex; flex-direction:column; gap:10px; list-style:none; }
.step-list li{ position:relative; padding-left:26px; font-size:14px; font-weight:700; color:var(--ink); line-height:1.4; }
.step-list li::before{
  content:"✓"; position:absolute; left:0; top:0;
  width:18px; height:18px; border-radius:50%;
  background:linear-gradient(135deg,var(--blue),var(--green));
  color:#ffffff; font-size:10px; font-weight:900;
  display:flex; align-items:center; justify-content:center;
}

/* PROVIDERS */
.providers-section{ padding:0 0 56px; }
.providers-head{ margin-bottom:20px; text-align:center; }
.providers-head h2{ font-size:24px; font-weight:800; color:var(--ink); }
.providers-row{ padding:28px; display:grid; grid-template-columns:repeat(4,1fr); gap:16px; border:1px solid var(--line); border-radius:24px; background:var(--surface); }
.provider-item{ min-height:70px; display:flex; align-items:center; justify-content:center; gap:14px; }
.provider-icon{ width:46px; height:46px; display:grid; place-items:center; border-radius:12px; color:#ffffff; font-size:20px; font-weight:900; }
.provider-item span{ color:var(--ink); font-size:17px; font-weight:800; }
.gmail{ background:linear-gradient(135deg,#4B8DF0,#2F7BFF); }
.outlook{ background:linear-gradient(135deg,#4FB4F0,#2F7BFF); }
.yahoo{ background:linear-gradient(135deg,#9C8CF2,#7C6FF2); }
.icloud{ background:linear-gradient(135deg,#6FCBEF,#2F7BFF); }

/* SECURITY */
.security-section{ padding:56px 0; background:var(--surface); }
.security-grid{ display:grid; grid-template-columns:1.1fr .9fr; align-items:center; gap:48px; }
.security-copy h2{ margin-top:20px; font-family:var(--font-display); font-size:34px; line-height:1.2; letter-spacing:-.5px; font-weight:700; color:var(--ink); }
.security-copy > p{ margin-top:18px; font-size:18px; line-height:1.6; color:var(--muted); font-weight:500; max-width:480px; }

.security-badges{ display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.security-badge-card{
  padding:22px 20px;
  background:rgba(255,255,255,.85);
  border:1px solid var(--line);
  border-radius:20px;
  box-shadow:0 16px 36px rgba(10,14,26,.06);
  display:flex; flex-direction:column; align-items:flex-start; gap:4px;
}
.security-badge-icon{
  width:56px; height:56px; border-radius:16px;
  background:linear-gradient(135deg,rgba(47,123,255,.14),rgba(124,111,242,.14));
  display:flex; align-items:center; justify-content:center; font-size:26px; margin-bottom:12px;
}
.security-badge-card strong{ font-size:15px; font-weight:800; color:var(--ink); line-height:1.3; }
.security-badge-card span{ font-size:13px; font-weight:600; color:var(--muted); line-height:1.45; }

/* RATING + STATS + PRESS */
.rating-section{ position:relative; padding:56px 0; overflow:hidden; }
.aurora-soft .aurora-blob{ opacity:.2; }
.rating-wrap{ text-align:center; }
.stats-grid{ margin-top:28px; display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.stat-card{
  padding:28px 24px;
  background:rgba(255,255,255,.78);
  backdrop-filter:blur(20px); -webkit-backdrop-filter:blur(20px);
  border:1px solid rgba(255,255,255,.7);
  border-radius:24px;
  box-shadow:0 24px 50px rgba(10,14,26,.08);
}
.stat-value{ font-family:var(--font-display); font-size:42px; font-weight:700; letter-spacing:-1px; color:var(--ink); display:flex; align-items:baseline; justify-content:center; gap:10px; }
.stat-stars{ font-size:16px; color:var(--blue); letter-spacing:2px; }
.stat-label{ display:block; margin-top:10px; font-size:14px; font-weight:700; color:var(--muted); }

.press-card{ margin-top:20px; padding:28px; background:rgba(255,255,255,.6); border:1px solid rgba(255,255,255,.7); border-radius:24px; }
.press-label{ display:block; margin-bottom:16px; font-size:13px; letter-spacing:.06em; text-transform:uppercase; color:var(--muted); font-weight:900; }
.press-logos{ display:flex; justify-content:center; align-items:center; gap:36px; flex-wrap:wrap; }
.press-logos strong{ display:block; color:var(--ink); }
.press-logos .forbes{ font-family:Georgia,"Times New Roman",serif; font-size:24px; letter-spacing:-1px; }
.press-logos .techcrunch{ font-size:15px; letter-spacing:-.6px; }
.press-logos .verge{ font-family:Georgia,"Times New Roman",serif; font-size:23px; letter-spacing:-1.1px; }

/* REVIEWS */
.reviews-section{ padding:56px 0; }
.reviews-card{
  padding:40px;
  display:grid;
  grid-template-columns:minmax(240px,1fr) repeat(3,1fr);
  gap:28px;
  background:var(--paper);
  border:1px solid var(--line);
  border-radius:32px;
  box-shadow:0 24px 60px rgba(10,14,26,.06);
}
.reviews-intro{ display:flex; flex-direction:column; justify-content:center; }
.reviews-intro h2{
  font-family:var(--font-display);
  font-size:30px; line-height:1.18; letter-spacing:-.5px; font-weight:700;
  color:var(--ink);
}
.reviews-rating{ margin-top:22px; display:flex; align-items:baseline; gap:12px; }
.reviews-rating strong{ font-family:var(--font-display); font-size:42px; font-weight:700; color:var(--ink); letter-spacing:-1px; }
.reviews-rating .stars{ font-size:19px; }
.reviews-intro > p{ margin-top:10px; font-size:14px; font-weight:700; color:var(--muted); }

.review-card{ padding:28px; border:1px solid var(--line); border-radius:22px; background:var(--paper); }
.review-card-stars{ color:var(--blue); font-size:18px; letter-spacing:3px; }
.review-card p{ margin:20px 0; font-size:16px; line-height:1.6; color:var(--ink); font-weight:600; }
.review-card strong{ font-size:14px; font-weight:900; color:var(--muted); }

/* FAQ */
.faq-section{ padding:56px 0; background:var(--surface); }
.faq-title{ font-family:var(--font-display); text-align:center; font-size:36px; font-weight:700; letter-spacing:-.5px; color:var(--ink); }
.faq-grid{ max-width:900px; margin:28px auto 0; display:grid; grid-template-columns:1fr 1fr; gap:20px; }
.faq-card{ padding:28px; background:var(--paper); border:1px solid var(--line); border-radius:20px; box-shadow:0 16px 36px rgba(10,14,26,.05); }
.faq-card h3{ font-size:17px; font-weight:800; color:var(--ink); line-height:1.35; }
.faq-card p{ margin-top:10px; font-size:15px; line-height:1.6; color:var(--muted); font-weight:500; }

/* FINAL CTA */
.final-cta{ position:relative; padding:56px 0 72px; overflow:hidden; }
.final-card{ position:relative; max-width:640px; margin:0 auto; padding:56px 40px; text-align:center; background:rgba(255,255,255,.72); backdrop-filter:blur(24px); -webkit-backdrop-filter:blur(24px); border:1px solid rgba(255,255,255,.7); border-radius:32px; box-shadow:0 34px 76px rgba(10,14,26,.12); }
.final-card h2{ font-family:var(--font-display); font-size:36px; font-weight:700; letter-spacing:-.5px; color:var(--ink); }
.final-card > p{ margin-top:14px; font-size:18px; color:var(--muted); }
.final-card .btn-primary{ margin-top:28px; }
.final-trust{ margin-top:18px; font-size:16px; font-weight:700; color:var(--muted); }

/* FOOTER */
.footer{ padding:32px 0; border-top:1px solid var(--line); }
.footer-inner{ display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:22px; }
.footer-brand{ display:flex; align-items:center; gap:11px; }
.footer-brand-mark{ width:42px; height:42px; flex-basis:42px; }
.footer-brand-name{ font-size:20px; }
.footer-links{ display:flex; gap:26px; }
.footer-links a, .footer p{ color:var(--muted); font-size:15px; font-weight:700; }

/* MOBILE */
@media(max-width:1024px){
  .security-grid{ grid-template-columns:1fr; gap:36px; }
  .stats-grid{ grid-template-columns:1fr; }
  .reviews-card{ grid-template-columns:1fr; }
  .reviews-intro{ text-align:center; align-items:center; }
  .reviews-rating{ justify-content:center; }
}

@media(max-width:900px){
  .mobile-header-banner{
    position:sticky; top:0; z-index:100; width:100%; min-height:60px; padding:10px 16px;
    display:flex; align-items:center; justify-content:space-between;
    border-bottom:1px solid var(--line);
    background:rgba(255,255,255,.85);
    backdrop-filter:blur(14px); -webkit-backdrop-filter:blur(14px);
  }
  .mobile-brand{ display:flex; align-items:center; gap:8px; }
  .mobile-brand .brand-mark{ width:36px; height:36px; padding:6px; flex:0 0 36px; border-radius:9px; }
  .mobile-brand-name{ font-size:15px; }
  .mobile-header-proof{
    min-height:38px; padding:0 16px; display:flex; align-items:center; justify-content:center;
    border-radius:999px; background:linear-gradient(135deg,var(--blue),var(--violet));
    color:#ffffff; font-size:13px; font-weight:800; white-space:nowrap;
  }
  .site-header{ display:none; }
  .wrap{ width:calc(100% - 32px); }

  /* On mobile the hero keeps its natural height instead of forcing 100vh,
     since the stacked layout is already short and compact */
  .hero{ min-height:auto; padding:32px 0 40px; }

  .hero-grid{ grid-template-columns:1fr; text-align:center; gap:28px; }

  .hero-visual{ order:1; }
  .hero-text{ order:2; }

  .eyebrow{ margin:0 auto; }
  .hero-text h1{ font-size:32px; margin-top:0; margin-left:auto; margin-right:auto; max-width:100%; }

  .hero-desc{ display:none; }

  .btn-primary{ width:100%; justify-content:center; }
  .btn-connect{ display:none; }
  .btn-download{ display:inline-flex; }

  /* Only the left phone (Newsletters) shows on mobile — showing both was confusing.
     Slightly smaller than before so the "Lataa ilmaiseksi" button stays clearly visible. */
  .hero-phones .phone-stage:last-child{ display:none; }
  .phone-stage{ width:170px; }

  .float-chip{ font-size:8.5px; padding:6px 9px; }
  .phone-stage:first-child .float-chip-2{ left:-12px; }

  .trust-strip-inner{ flex-direction:column; align-items:center; gap:16px; }
  .steps-section{ padding:40px 0; }
  .steps-section h2{ font-size:28px; }
  .steps-grid{ grid-template-columns:1fr; margin-top:24px; gap:18px; }
  .providers-row{ grid-template-columns:repeat(2,1fr); }
  .security-section{ padding:40px 0; }
  .security-copy h2{ font-size:26px; }
  .security-badges{ grid-template-columns:1fr; }
  .rating-section{ padding:40px 0; }
  .stats-grid{ margin-top:20px; gap:14px; }
  .stat-value{ font-size:34px; }
  .press-card{ display:none; }
  .reviews-section{ padding:40px 0; }
  .reviews-card{ padding:28px 20px; gap:20px; border-radius:24px; }
  .reviews-intro h2{ font-size:26px; }
  .faq-section{ padding:40px 0; }
  .faq-title{ font-size:26px; }
  .faq-grid{ grid-template-columns:1fr; margin-top:20px; gap:16px; }
  .final-cta{ padding:40px 0 48px; }
  .final-card{ padding:36px 24px; }
  .final-card h2{ font-size:28px; }
  .footer-inner{ flex-direction:column; text-align:center; }
}

@media(max-width:480px){
  .hero-text h1{ font-size:28px; }
  .btn-primary{ font-size:17px; min-height:56px; }
}

@media(prefers-reduced-motion:reduce){
  .btn-primary, .nav-cta{ transition:none; }
  .btn-primary:hover, .nav-cta:hover{ transform:none; }
  .float-chip{ animation:none; }
}