* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.main-content::-webkit-scrollbar {
  display: none;
}

.main-content {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

html,
body {
  height: 100%;
  font-family: 'nudica', sans-serif;
  background: #000000;
  color: white;
  overflow-x: hidden;
  scroll-behavior: smooth;
  overflow-x: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

:root {
  --nav-height: 40px; /* kompaktere Navbar-Höhe */
  --section-pad-top: clamp(120px, 20vw, 280px);
  --section-pad-bottom: clamp(46px, 8vw, 90px);
  --section-container: min(1100px, 92%);
  /* Standardgröße der großen Abschnittstitel */
  --bg-title-size: clamp(96px, 18vw, 360px);
}

@media (min-width: 900px) {
  :root { --nav-height: 56px; }
  .glass-navbar { top: 28px; border-radius: 50px; }
  .glass-nav-inner { gap: 1.2rem; padding: 0 16px; }
  .brand-mark { height: 26px; }
  #nav-links { gap: 0.6rem; }
  .glass-navbar #nav-links .glass-item {
    line-height: calc(var(--nav-height) - 8px);
    border-radius: 50px;
    font-size: 0.9rem;
  }
}

/* Ensure all sections share the same solid background */
section { background-color: #000b10; }

/* Global Noise Overlay for cinematic depth */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: url('data:image/svg+xml;utf8,<?xml version="1.0" encoding="UTF-8"?><svg xmlns="http://www.w3.org/2000/svg" width="160" height="160" viewBox="0 0 160 160"><filter id="n"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="2" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23n)" opacity="0.035"/></svg>');
  background-repeat: repeat;
  z-index: 0;
}

@font-face {
    font-family: 'nudica';
    src: url('assets/fonts/nudica-regular-webfont.woff2') format('woff2'),
         url('assets/fonts/nudica-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}



.glass-navbar {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(106,106,106,0.12);
  border-radius: 28px;
  backdrop-filter: blur(12px);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  width: min(1100px, 92%);
  transition: all .25s ease;
}

.glass-nav-inner {
  display: flex;
  gap: 1.0rem;
  align-items: center;
  justify-content: center;
  height: var(--nav-height);
  padding: 0 12px; /* keine vertikale Padding, damit Buttons volle Höhe haben */
}

.brand { display: inline-flex; align-items: center; gap: 8px; text-decoration: none; }
.brand-mark { height: 22px; width: auto; filter: drop-shadow(0 0 6px rgba(255,255,255,.25)); }
.nav-toggle { display:none; background:none; border:0; color:#fff; font-size:18px; }
.glass-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.6rem 0.8rem;
  border-radius: 50px;
  color: white;
  text-decoration: none;
  font-size: 0.7rem;
  font-family: 'nudica', sans-serif;
  transition: background 0.2s ease, transform 0.2s ease, filter 0.2s ease;
  line-height: 1;
text-transform: uppercase; 
}



.sp-icon {
  height: 20px;
  width: 90px;
  margin-right: 6px;
  vertical-align: middle;
  transition: all 0.2s ease;
}

.glass-item:hover .heart-icon {
  content: url('assets/heart.png');
}


.glass-nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--nav-height);
  padding: 0 12px; /* nur horizontal */
  width: 100%;
  gap: 0.8rem;
}

#nav-links { display:flex; gap:.4rem; align-items:center; }
/* Navbar-Links: volle Höhe der Navbar, keine vertikale Padding */
.glass-navbar #nav-links .glass-item {
  height: calc(var(--nav-height) - 8px); /* kleine Luft innerhalb der Leiste */
  padding: 0 12px;
  border-radius: 14px;
  line-height: calc(var(--nav-height) - 8px); /* exakte Vertikal-Zentrierung des Textes */
}

/* Verhindert visuelles "Nach-oben-Schieben" beim Hover innerhalb der Navbar */
.glass-navbar #nav-links .glass-item:hover {
  transform: none; /* kein Scale innerhalb der engen Navbar */
}

/* Sicherheits‑Fix: in Navbar keine 1px‑Offsets auf Spans */
.glass-navbar #nav-links .glass-item span { top: 0; }

.nav-download {
  background: transparent;
  color: var(--accent);
  border: 1px solid color-mix(in srgb, var(--accent) 55%, #fff 0%);
  box-shadow: none !important; /* vermeidet den unteren Glow */
}
.nav-download:hover { background: rgba(255,255,255,0.12); }
.nav-download::after { display: none; }
.nav-download.highlight { box-shadow: 0 0 0 0 color-mix(in srgb, var(--accent) 45%, transparent); animation: pulseGlow 1.6s ease-out infinite; }
@keyframes pulseGlow { to { box-shadow: 0 0 0 14px rgba(107,140,255,0); } }
.glass-navbar.nav-small { top: 12px; border-radius: 20px; background: rgba(106,106,106,0.10); }


.glass-item span {
  display: inline-block;
  line-height: 1;
  position: relative;
  top: 1px;
}

.glass-item i {
  vertical-align: middle;
  display: flex;
  align-items: center;
}

.glass-item:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: scale(1.05);
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.3));
}

@media (max-width: 600px) {
  /* Mobile: nur Logo links, Download rechts */
  .nav-toggle { display:none !important; }
  #nav-links {
    position: static;
    right: auto; top: auto;
    display: flex !important;
    flex-direction: row;
    background: transparent;
    backdrop-filter: none;
    padding: 0;
    border-radius: 0;
    margin-left: auto; /* nach rechts schieben */
  }
  #nav-links.open { display:flex; }
  .glass-item { font-size: 0.65rem; padding:.8rem 1rem; border-radius:20px; }
  /* nur der Download-Button sichtbar */
  .glass-navbar #nav-links .glass-item { display: none; height: auto; }
  .glass-navbar #nav-links .nav-download { display: inline-flex; }
  .glass-nav-inner { height: 44px; justify-content: space-between; }
}


.hero {
  min-height: 100vh;
  background-color: #000b0e;
  background-image: image-set(
    url('assets/background.png') type('image/png') 1x
  );
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(20px, 4vh, 60px) 0;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(100% 80% at 50% 35%, rgba(0,0,0,0.38) 0%, rgba(0,0,0,0.66) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.40) 0%, rgba(0,0,0,0.55) 100%);
  pointer-events: none;
}

/* Smooth fade to black at the bottom of hero */
.hero::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: clamp(80px, 18vh, 240px);
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, #000 100%);
  pointer-events: none;
  z-index: 0; /* below hero content (card uses z-index: 999) */
}

.hero-more {
  margin-top: 30px;
}

/* Floating UI mini-cards in hero */
.float-widgets { position:absolute; inset:0; pointer-events:none; }
.float-card { position:absolute; background: rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.14); border-radius:16px; backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); box-shadow: inset 0 0 0 1px rgba(255,255,255,0.12), 0 10px 28px rgba(0,0,0,.35); color:#F5F7FA; padding:10px 12px; font-size: 12px; }
.float-card .title { font-weight: 600; font-size: 12px; opacity:.95; }
.float-card .row { display:flex; align-items:center; gap:6px; opacity:.9; margin-top:6px; }
.float-card .dot { width:8px; height:8px; border-radius:999px; background: var(--accent); box-shadow:0 0 8px rgba(107,140,255,.6); }
.float-card.small { font-size:11px; padding:8px 10px; }
.float-card.timeline { top: 16%; right: 14%; transform: rotate(-6deg); }
.float-card.groceries { top: 56%; right: 8%; transform: rotate(4deg); }
.float-card.todo { top: 28%; left: 12%; transform: rotate(-2deg); }
.float-card { animation: floatY 6s ease-in-out infinite; }
@keyframes floatY { 50% { transform: translateY(-6px) rotate(var(--rot, 0deg)); } }



.card {
  max-width: 640px;
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 999;
  gap: clamp(10px, 2.6vw, 24px);
}

.card img {
  width: clamp(220px, 34vw, 440px);
  height: auto;
  margin-bottom: 0;
  filter: drop-shadow(0 0 12px rgba(255,255,255,0.20))
          drop-shadow(0 0 28px rgba(94,171,255,0.14));
  animation: logoGlow 6s ease-in-out infinite;
}

@keyframes logoGlow {
  0% {
    filter: drop-shadow(0 0 12px rgba(255,255,255,0.18))
            drop-shadow(0 0 22px rgba(94,171,255,0.12));
  }
  100% {
    filter: drop-shadow(0 0 20px rgba(255,255,255,0.36))
            drop-shadow(0 0 36px rgba(94,171,255,0.20));
  }
}

@media (prefers-reduced-motion: reduce) {
  .card img { animation: none; }
}


.storebadges { margin-top: clamp(6px, 1.8vw, 18px); width: 100%; }

.hero-subtitle {
  margin-top: clamp(2px, 0.8vw, 8px);
  margin-bottom: clamp(2px, 0.8vw, 8px);
  max-width: 42ch;
  text-align: center;
  color: rgba(255,255,255,0.88);
  font-size: clamp(12px, 1.6vw, 15px);
  line-height: 1.4;
}

.trust-note { opacity:.9; font-size: .85rem; display:flex; align-items:center; gap:8px; }
.trust-note i { opacity:.9; }

.device { position: relative; border-radius: 26px; background: rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.22); box-shadow: 0 40px 80px rgba(0,0,0,.35); overflow:hidden; }
.device .device-notch { position:absolute; top:6px; left:50%; transform:translateX(-50%); width:34%; height:10px; background:rgba(0,0,0,0.6); border-radius:0 0 12px 12px; }
.device .device-screen { width:100%; height:100%; background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(0,0,0,0.4)); }
.device .shimmer { background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.01) 40%, rgba(0,0,0,0.35)); }
.hero-device { position:absolute; right:8%; bottom:10%; width:min(32vw, 380px); height: calc(min(32vw,380px) * 2.0); transform: rotate(-6deg) translateZ(0); transition: transform .3s ease, filter .3s ease; }
.hero-device:hover { transform: rotate(-4deg) translateY(-4px) scale(1.01); }
.module-device { width: 280px; height: 560px; }
.module-device.small { width: 220px; height: 440px; }
.gallery-device { width:220px; height:440px; }

/* Problem–Solution */
.problem-solution { padding: clamp(40px,7vw,80px) 0; }
.ps-inner { display:grid; grid-template-columns: 1.1fr 1fr; gap: clamp(20px,4vw,40px); align-items:center; width:min(1100px,92%); margin:0 auto; }
.glass-card { background: rgba(255,255,255,0.07); border:1px solid rgba(255,255,255,0.16); border-radius: 20px; padding: clamp(16px,2.2vw,24px); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); box-shadow: 0 6px 18px rgba(0,0,0,.28); }
.h-title { font-size: clamp(20px,3vw,28px); margin-bottom:8px; }
.caption { opacity:.85; font-size:.9rem; margin-top:8px; }
.link-cta { color:#fff; text-decoration:none; border-bottom:2px solid var(--brand); padding-bottom:2px; }
.link-cta:hover { opacity:.9; }

/* Section headings */
.section-title { width:var(--section-container); margin:0 auto; font-size: clamp(24px,3.2vw,36px); padding: 38px 0 8px; }
.section-sub { width:var(--section-container); margin:0 auto; opacity:.9; }

.section-bg {
  position: relative;
  overflow: visible;
background-color: #000000; 
 padding: calc(var(--section-pad-top) + (var(--bg-title-size) * 0.45)) 0 var(--section-pad-bottom);
  margin-top: clamp(40px, 8vw, 120px);
} 
.section-bg .bg-title {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -40%);
  white-space: nowrap;
  font-size: var(--bg-title-size);
  line-height: .85;
  letter-spacing: -0.01em;
  color: #fff;
  opacity: .80;
  margin-top: 0;
  filter: none;
  text-shadow: 0 2px 8px rgba(255,255,255,0.18);
  -webkit-text-stroke: 0.5px rgba(255,255,255,0.12);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

/* Ensure section content sits above the background word */
.section-bg > *:not(.bg-title) { position: relative; z-index: 1; }

@media (max-width: 700px) {
  .section-bg { --bg-title-size: clamp(56px, 22vw, 160px); padding-top: calc(var(--section-pad-top) + (var(--bg-title-size) * 0.55)); }
  .section-bg .bg-title { font-size: var(--bg-title-size); opacity: .14; transform: translate(-50%, -48%); }
}


.section-bg + .section-bg { margin-top: clamp(130px, 10vw, 140px); }

/* Feature grid */
.features { padding: 0; }
/* Neues, fokussiertes Feature-Layout */
.feature-focus { width:var(--section-container); margin:0 auto; display:flex; flex-direction:column; gap: clamp(14px, 2.2vw, 18px); }
.ff-item { position:relative; border-radius: 20px; padding: 0; overflow: hidden; border:1px solid rgba(255,255,255,.14); background: rgba(255,255,255,0.06); }
.ff-item:hover { border-color: rgba(255,255,255,.22); }
.ff-toggle { width:100%; display:grid; grid-template-columns: 44px 1fr 24px; align-items:center; gap: 12px; padding: clamp(14px,2vw,18px) clamp(16px,2.4vw,22px); background: transparent; border:0; color:#fff; text-align:left; cursor:pointer; }
.ff-icon { width:36px; height:36px; display:flex; align-items:center; justify-content:center; border-radius:12px; background: rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.18); }
.ff-icon i { font-size:18px; }
.ff-title { font-size: clamp(16px, 2.2vw, 22px); letter-spacing:.2px; }
.ff-caret { opacity:.8; }
.ff-panel { overflow:hidden; max-height:0; padding: 0 clamp(16px,2.4vw,22px); opacity:0; transition: max-height .35s ease, opacity .25s ease; }
.ff-panel p { padding: 0 0 clamp(16px,2.2vw,18px); opacity:.9; }
.ff-item.open { border-color: rgba(247,147,30,.45); box-shadow: 0 10px 28px rgba(0,0,0,.35); }
.ff-item.open .ff-toggle { background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(0,0,0,.20)); }
.ff-item.open .ff-title { color: #fff; }
.ff-item.open .ff-icon { background: rgba(247,147,30,.20); border-color: rgba(247,147,30,.45); }
.ff-item.open .ff-caret { transform: rotate(180deg); transition: transform .25s ease; }

@media (max-width: 700px) {
  .feature-focus { gap: 10px; }
  .ff-toggle { grid-template-columns: 40px 1fr 22px; }
}

/* Highlights: Hero + 2 Subfeatures */
.features-highlight { width:var(--section-container); margin:0 auto; display:flex; flex-direction:column; gap: clamp(16px,2.4vw,22px); }
.feature-hero { display:flex; flex-direction:column; gap:10px; padding: clamp(18px,2.6vw,28px); }
.feature-hero h3 { font-size: clamp(18px, 2.6vw, 26px); }
.feature-hero p { opacity:.9; }
.fh-icon { width:48px; height:48px; display:flex; align-items:center; justify-content:center; border-radius:14px; background: rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.18); }
.fh-icon i { font-size:22px; }
.features-subgrid { display:grid; grid-template-columns: repeat(2, 1fr); gap: clamp(16px,2.4vw,22px); }
.feature-sub { display:flex; flex-direction:column; gap:8px; padding: clamp(16px,2.2vw,22px); }
.feature-sub h4 { font-size: clamp(16px, 2.2vw, 20px); }
.feature-sub p { opacity:.9; }
.fs-icon { width:40px; height:40px; display:flex; align-items:center; justify-content:center; border-radius:12px; background: rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.18); }
.fs-icon i { font-size:18px; }

@media (max-width: 800px) {
  .features-subgrid { grid-template-columns: 1fr; }
}

/* Why Choose Us */
.why-grid { width:var(--section-container); margin:0 auto; display:grid; grid-template-columns: repeat(3, 1fr); gap: clamp(12px,2vw,18px); }
.why-item { display:flex; flex-direction:column; gap:6px; align-items:flex-start; padding: clamp(14px,2vw,18px); }
.why-item i { font-size:18px; opacity:.95; }
.why-item h5 { font-size: clamp(14px, 2vw, 18px); }
.why-item p { opacity:.85; }
@media (max-width: 900px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .why-grid { grid-template-columns: 1fr; } }

/* Reviews */
.reviews-grid { width:var(--section-container); margin:0 auto; display:grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px,2.2vw,20px); }
.review { display:flex; flex-direction:column; gap:8px; padding: clamp(16px,2.2vw,22px); }
.rev-head { display:flex; gap:8px; align-items:center; justify-content:space-between; opacity:.95; }
.rev-name { font-weight: 700; }
.rev-stars { letter-spacing: 1px; color: #FFD36E; filter: drop-shadow(0 0 6px rgba(255,211,110,.25)); }
@media (max-width: 900px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .reviews-grid { grid-template-columns: 1fr; } }

/* Walkthrough */
.walkthrough { padding: 30px 0 60px; }
.steps { width:min(1100px,92%); margin:0 auto; list-style:none; display:grid; grid-template-columns: repeat(3,1fr); gap: clamp(16px,2.2vw,24px); }
.step { display:flex; flex-direction:column; gap:10px; }
.cta-row { width:min(980px,90%); margin:18px auto 0; display:flex; gap:14px; justify-content:center; }

/* Plus */
.plus { padding: 0; }
.plus-grid { width:var(--section-container); margin:0 auto; display:grid; grid-template-columns: 1.1fr .9fr; gap: clamp(20px,2.6vw,30px); align-items:start; }
.benefits { display:grid; gap:8px; padding-left:18px; }
.pricing .price-toggle { display:flex; gap:8px; margin-bottom:8px; }
.pricing .toggle { background: rgba(255,255,255,.1); border:1px solid rgba(255,255,255,.2); color:#fff; padding:6px 10px; border-radius:999px; cursor:pointer; }
.pricing .toggle.active { background: rgba(247,147,30,.25); border-color: rgba(247,147,30,.45); }
.pricing .save { opacity:.9; font-size:.75rem; margin-left:4px; }
.price-box { display:flex; gap:16px; align-items:baseline; margin:6px 0 10px; }
.price .amount { font-size: 32px; font-weight:700; margin-right:4px; }
.price .per { opacity:.85; }
.hero-more.wide { display:flex; justify-content:center; }
.plus-mockups { width:min(1100px,92%); margin: 10px auto 0; display:flex; gap:16px; justify-content:center; }

.section-bg .feature-grid,
.section-bg .plus-grid,
.section-bg .table,
.section-bg .plus-mockups { margin-top: clamp(8px, 2vw, 18px); }

/* Compare table */
.compare { padding: 0; }
.pricing-cards { display:grid; grid-template-columns: repeat(2,1fr); gap: clamp(16px,2.2vw,22px); position: relative; z-index: 1; }
.price-card { position: relative; border-radius: 24px; overflow: hidden; }
.price-card.glass-card { background: rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.14); box-shadow: 0 20px 60px rgba(0,0,0,.35); }
.price-card::before { content:""; position:absolute; inset:0; background: radial-gradient(120% 80% at 50% 0%, rgba(255,255,255,0.18), rgba(255,255,255,0.02) 40%, rgba(0,0,0,0)); pointer-events:none; }
.compare .table { width: var(--section-container); margin: 0 auto; }
.pc-head { padding: 20px 18px 12px; }
.pc-head h3 { font-size: clamp(22px, 3vw, 34px); display:flex; align-items: baseline; gap:6px; }
.pc-head .amount { font-size: 1em; font-weight: 800; }
.pc-head .per { opacity: .85; font-size: .6em; }
.pc-plan { opacity: .85; font-size: .9rem; }
.pc-list { list-style: none; display: grid; gap: 10px; padding: 14px 18px 18px; }
.pc-list li { opacity: .9; }
.pc-list i { color: #9be39b; margin-right: 8px; }
.pc-cta { padding: 0 18px 18px; display:flex; }
.price-card.plus { outline: 1px solid rgba(247,147,30,.35); box-shadow: 0 0 30px rgba(247,147,30,.18), 0 20px 60px rgba(0,0,0,.35); }

/* Screens gallery: scroll-snap */
.screens { padding: 30px 0 60px; }
.carousel { width:min(980px,90%); margin:0 auto; display:flex; gap:20px; overflow-x:auto; scroll-snap-type: x mandatory; padding-bottom: 6px; }
.slide { min-width: 280px; scroll-snap-align: start; display:flex; flex-direction:column; align-items:center; gap:6px; }
.gallery-device { width: 260px; height: 520px; }

/* Trust, community, faq, footer */
.trust, .community, .faq { width:var(--section-container); margin:0 auto; }
.faq details { margin: 8px 0; }
.faq summary { cursor: pointer; font-weight: 600; }
.updates { display:flex; gap:16px; align-items:flex-start; }
.changelog { list-style:disc; padding-left:18px; opacity:.9; }
.site-footer { border-top:1px solid rgba(255,255,255,.1); margin-top: 40px; background: #000b10; backdrop-filter: blur(8px); }
.footer-inner { width:min(1100px,92%); margin:0 auto; padding: 28px 0; }
.footer-inner.cols { display:grid; grid-template-columns: 1.2fr repeat(4, 1fr); gap: 18px; align-items:flex-start; }
.brand.mini img { height:18px; }
.foot-col { display:flex; flex-direction:column; gap:8px; }
.foot-col h4 { font-size:.9rem; opacity:.9; margin-bottom:4px; }
.foot-col a { color:#fff; text-decoration:none; opacity:.85; font-size:.9rem; }
.foot-col a:hover { opacity:1; }
.brand-col .foot-tag { opacity:.8; margin:8px 0; max-width:28ch; }
.foot-socials { display:flex; gap:10px; }
.foot-socials a { color:#fff; opacity:.8; font-size:18px; }
.footer-bottom { border-top:1px solid rgba(255,255,255,.08); padding:12px 0; text-align:center; opacity:.85; font-size:.9rem; }

/* Sticky elements */
.sticky-plus { position:fixed; right:24px; bottom:24px; border-radius:999px; padding:10px 14px; color:#fff; text-decoration:none; transform: translateY(120%); transition: transform .25s ease, opacity .25s ease; opacity:0; }
.sticky-plus.show { transform: translateY(0); opacity:1; }
.download-bar { position:fixed; left:0; right:0; bottom:0; display:none; padding:8px; background:rgba(18,18,18,.6); backdrop-filter: blur(10px); border-top:1px solid rgba(255,255,255,.12); gap:8px; justify-content:center; z-index:999; }
.download-bar .bar-btn { color:#fff; text-decoration:none; display:inline-flex; gap:6px; align-items:center; border:0; }

@media (max-width: 900px) {
  .ps-inner { grid-template-columns:1fr; }
  .feature-grid { grid-template-columns: repeat(2,1fr); }
  .steps { grid-template-columns: 1fr; }
  .plus-grid { grid-template-columns:1fr; }
}

@media (max-width: 700px) {
  .hero-device { position:relative; right:auto; bottom:auto; width:min(64vw, 360px); height: calc(min(64vw,360px) * 2.0); margin-top:16px; }
  .download-bar { display:flex; }

  /* Mobile: soften top edge with black fade */
  body::before {
    content: "";
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 72px; /* default height for most devices */
    background: linear-gradient(to bottom, rgba(0,0,0,0.95), rgba(0,0,0,0));
    pointer-events: none;
    z-index: 990; /* below navbar (1000), above content */
  }

  /* Increase fade height when safe area is present (iOS notch) */
  @supports (padding-top: env(safe-area-inset-top)) {
    body::before { height: calc(env(safe-area-inset-top) + 56px); }
  }
}



@media (max-width: 600px) {
  .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: env(safe-area-inset-bottom);
  }
}

.flex {
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-btns {
  gap: clamp(10px, 2vw, 16px);
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
}

.app-btn {
  color: #fff;
  margin: 10px 6px;
  text-align: left;
  border-radius: 26px;
  text-decoration: none;
  font-family: "nudica", sans-serif;
  font-size: clamp(9px, 1.2vw, 11px);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: clamp(8px, 1.2vw, 12px) clamp(10px, 1.4vw, 14px);
  width: clamp(140px, 16vw, 150px); /* 3 fit side-by-side within card */
  min-height: clamp(44px, 6vw, 56px);
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0.04) 8%, rgba(0,0,0,0.45) 100%) padding-box,
    linear-gradient(135deg, rgba(255,0,153,0.28), rgba(0,204,255,0.28)) border-box;
  border: 1px solid transparent;
  box-shadow: 0 10px 24px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.20);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform 0.18s ease, background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, opacity 0.25s ease;
}


.app-btn:hover {
  transform: translateY(-1px) scale(1.02);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.14) 0%, rgba(255,255,255,0.06) 8%, rgba(0,0,0,0.50) 100%) padding-box,
    linear-gradient(135deg, rgba(255,0,153,0.45), rgba(0,204,255,0.45)) border-box;
}

.app-btn:active {
  transform: translateY(0) scale(0.99);
}

.app-btn::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 15px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.24), rgba(255,255,255,0.10) 35%, rgba(255,255,255,0) 65%);
  pointer-events: none;
  mix-blend-mode: screen;
}

.app-btn i {
  flex: 0 0 auto;
  text-align: center;
  font-size: clamp(20px, 2.6vw, 24px);
  margin-right: 2px;
}

.app-btn p {
  margin: 0;
  line-height: 1.15;
  font-size: clamp(10px, 1.2vw, 12px);
  letter-spacing: 0.5px;
  text-shadow: 0 1px 0 rgba(0,0,0,0.4);
}

.app-btn .big-txt {
  font-size: clamp(14px, 1.8vw, 18px);
  text-transform: capitalize;
  font-weight: 700;
}

/* Download pill buttons — glass + inner/outer border, accent ring */
.store-btn {
  --ringA: var(--accent);
  --ringB: var(--accent-2);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 10px 16px;
  height: 52px;
  border-radius: 999px;
  color: #fff;
  width: clamp(180px, 22vw, 230px);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08), 0 10px 26px rgba(0,0,0,0.40);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: transform .2s ease, box-shadow .25s ease, background .25s ease;
  overflow: hidden;
}
.store-btn::before { /* accent ring */
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--ringA), var(--ringB));
  -webkit-mask-composite: xor; /* Safari */
  mask-composite: exclude; /* others */
  opacity: .8;
  pointer-events: none;
}
.store-btn::after { /* inner gloss */
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255,255,255,0.14), rgba(255,255,255,0.06) 40%, rgba(0,0,0,0));
  pointer-events: none;
}
.store-btn:hover { transform: translateY(-2px); box-shadow: inset 0 0 0 1px rgba(255,255,255,0.10), 0 16px 36px rgba(0,0,0,0.46), 0 0 24px color-mix(in srgb, var(--ringA) 35%, transparent); }
.store-btn:active { transform: translateY(0); }
.store-btn:focus-visible { outline: none; box-shadow: 0 0 0 2px rgba(255,255,255,0.2), 0 0 0 6px color-mix(in srgb, var(--ringA) 45%, transparent); }
.store-btn i { font-size: clamp(22px, 3vw, 28px); }
.store-btn p { margin: 0; line-height: 1.1; font-size: 12px; opacity:.95; }
.store-btn .big-txt { font-size: 16px; font-weight: 700; letter-spacing:.2px; }
.hero-aux-cta {
  margin-top: clamp(6px, 1.6vw, 12px);
  display: flex;
  justify-content: center;
}

.hero-more {
  border-radius: 24px;
  padding: 8px 14px;
  font-size: 0.85rem;
}

.download-pill {
  --ringA: var(--accent);
  --ringB: var(--accent-2);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  height: 56px;
  padding: 0 14px 0 8px;
  border-radius: 999px;
  color: #000000;
  text-decoration: none;
  position: relative;
  background: #f7921e;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: inset 0 0 0 1px #f7921e, 0 16px 40px #f7921e;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: transform .2s ease, box-shadow .25s ease, background .25s ease, filter .25s ease;
}
.download-pill::before {
  opacity: .9; pointer-events: none;
}
.download-pill::after {
  pointer-events: none;
}
.download-pill:hover { transform: scale(1.04); box-shadow: inset 0 0 0 1px #f7921e, 0 0 10px #ffb56157, 0 0 10px #FFB661; }
.download-pill:active { transform: scale(1); }
.download-pill:focus-visible { outline:none; box-shadow: 0 0 0 2px rgba(255,255,255,0.2), 0 0 0 8px color-mix(in srgb, var(--ringA) 40%, transparent); }

 .dp-icon { width: 40px; height: 40px; display:inline-flex; align-items:center; justify-content:center;}
.download-pill .dp-icon i { font-size: 20px; }
.download-pill .dp-text { display:flex; flex-direction:column; line-height:1.0; }
.download-pill .title { font-weight: 700; letter-spacing:.1px; }
.download-pill .sub { opacity:.9; font-size:.85rem; }
.download-pill .dp-chev { margin-left: 6px; opacity:.9; }



.btn-cta {
  border-radius: 26px;
  padding: 10px 16px;
  color: #f7921e;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: .3px;
  position: relative;
  overflow: hidden;
}

.btn-cta:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: scale(1.05);
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.3));
}

.btn-download { box-shadow: inset 0 1px 0 rgba(255,255,255,.18), 0 10px 26px rgba(0,0,0,.4), 0 0 22px rgba(247,147,30,.32); border-color: rgba(247,147,30,.45); }
.btn-plus { border-color: rgba(247,147,30,.45); }
.btn-cta.glow, .sticky-plus { animation: ctaGlow 3s ease-in-out infinite; }
@keyframes ctaGlow { 0%,100% { filter: drop-shadow(0 0 10px rgba(247,147,30,.28)); } 50% { filter: drop-shadow(0 0 16px rgba(247,147,30,.45)); } }

.flex.vert {
  flex-direction: row;
}

@media (max-width: 900px) {
.compare { position: relative; }
  .social-btns { flex-wrap: wrap; }
}

@media (max-width: 600px) {
  .social-btns { gap: 8px; }
  .app-btn {
    width: clamp(120px, 44vw, 180px);
    min-height: clamp(40px, 10vw, 50px);
    padding: clamp(7px, 2.2vw, 10px) clamp(9px, 2.4vw, 12px);
    margin: 8px 4px;
    font-size: clamp(8px, 2.6vw, 10px);
  }
.store-btn { width: clamp(170px, 70vw, 240px); min-height: 54px; }
}
.btn-ghost { background: rgba(255,255,255,0.10); border:1px solid rgba(255,255,255,.18); color:#fff; box-shadow: 0 6px 18px rgba(0,0,0,.25); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }

/* New Feature Spotlight layout */
.features-head { width: var(--section-container); margin: 0 auto; display:flex; flex-direction:column; gap:6px; }
.features-head h2 { font-size: clamp(22px, 3vw, 34px); }
.features-head p { opacity:.9; max-width: 46ch; }

.features-spotlight { width: var(--section-container); margin: 12px auto 0; display:grid; grid-template-columns: 1.2fr .9fr; gap: clamp(16px,2.4vw,22px); align-items: start; }

/* Inside: grid with lead + 3 small */
.features-grid { display:grid; grid-template-columns: 1.1fr .9fr; grid-template-rows: repeat(3, minmax(0, 1fr)); gap: clamp(12px,2vw,16px); }
.feature-card { position:relative; display:flex; flex-direction:column; gap:8px; border-radius: 18px; padding: clamp(16px,2vw,20px); background: rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.14); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); box-shadow: 0 10px 28px rgba(0,0,0,.30); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease; cursor: pointer; }
.feature-card:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(0,0,0,.36); border-color: rgba(255,255,255,0.22); }
.feature-card.is-active { outline: 1px solid rgba(247,147,30,.45); box-shadow: 0 0 0 0 rgba(247,147,30,0.3), 0 16px 42px rgba(0,0,0,.36); }
.feature-card .fc-icon { width:40px; height:40px; display:flex; align-items:center; justify-content:center; border-radius:12px; background: rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.18); }
.feature-card .fc-title { font-size: clamp(16px, 2.2vw, 22px); letter-spacing:.2px; }
.feature-card .fc-body { opacity:.9; }
.feature-card .fc-proof { opacity:.9; font-size:.92rem; }
.feature-card .fc-proof .mini { opacity:.75; margin-right:6px; }
.feature-card .fc-link { color:#fff; text-decoration:none; border-bottom: 2px solid var(--brand); width: fit-content; }
.feature-card.is-active .fc-link { border-color: var(--accent); }
.feature-card.lead { grid-column: 1 / 2; grid-row: 1 / 4; padding: clamp(20px,2.6vw,26px); }
.feature-card:nth-of-type(2) { grid-column: 2 / 3; grid-row: 1 / 2; }
.feature-card:nth-of-type(3) { grid-column: 2 / 3; grid-row: 2 / 3; }
.feature-card:nth-of-type(4) { grid-column: 2 / 3; grid-row: 3 / 4; }

/* Phone mockup area */
.phone-area { position: relative; display:flex; justify-content:center; }
.phone-mockup { width: 320px; height: 640px; }
.phone-mockup .device-screen { position:relative; }
.mockup-video { position:absolute; inset:0; width:100%; height:100%; object-fit: cover; border:0; display:block; }
.mockup-fallback { position:absolute; inset:0; display:flex; align-items:center; justify-content:center; background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(0,0,0,.35)); color: rgba(255,255,255,.9); font-size:.9rem; }
.mockup-fallback .fallback-label { background: rgba(0,0,0,.35); padding:6px 10px; border-radius:12px; border:1px solid rgba(255,255,255,.18); }

/* Evidence bar (counters) */
.evidence-bar { width: var(--section-container); margin: clamp(14px,2.4vw,18px) auto 0; display:grid; grid-template-columns: repeat(3, 1fr); gap: clamp(10px,2vw,14px); }
.metric { display:flex; align-items:center; gap:10px; padding: 12px 14px; border-radius: 16px; background: rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.14); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.metric .value { font-size: 1.2rem; font-weight: 700; letter-spacing:.2px; }
.metric .label { opacity:.85; margin-left:auto; }

/* More features */
.more-features-wrap { width: var(--section-container); margin: clamp(14px, 2.2vw, 18px) auto 0; display:flex; flex-direction:column; gap:12px; align-items:flex-start; }
.more-features-link { display:inline-flex; align-items:center; gap:8px; }
.more-features { display:grid; grid-template-columns: repeat(4, 1fr); gap: clamp(12px,2vw,16px); }
.feature-card.compact { gap:6px; padding: clamp(14px,1.8vw,18px); }
.feature-card.compact .fc-title { font-size: clamp(14px, 2vw, 18px); }

/* Responsive rules */
@media (max-width: 1000px) {
  .features-spotlight { grid-template-columns: 1fr; }
  .phone-area { order: 2; }
}
@media (max-width: 700px) {
  .features-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .feature-card.lead { grid-column: auto; grid-row: auto; }
  .feature-card:nth-of-type(2),
  .feature-card:nth-of-type(3),
  .feature-card:nth-of-type(4) { grid-column:auto; grid-row:auto; }
  .phone-mockup { width: min(68vw, 360px); height: calc(min(68vw, 360px) * 2); }
  .evidence-bar { grid-template-columns: 1fr; }
  .more-features { grid-template-columns: 1fr; }
}

/* Reduced motion accessibility */
@media (prefers-reduced-motion: reduce) {
  .feature-card:hover { transform: none; }
  .btn-cta.glow, .sticky-plus { animation: none; }
}

/* --- New: Social Proof / Trust row --- */
.trust-row { width: var(--section-container); margin: 0 auto; display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(14px,2.2vw,20px); align-items: center; }
.logo-line { display:flex; flex-wrap:wrap; gap:10px; }
.logo-chip { display:inline-flex; align-items:center; gap:8px; padding:8px 12px; border-radius:999px; background: rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.14); backdrop-filter: blur(10px); font-size:.85rem; }
.stat-bullets { display:grid; gap:8px; }
.stat-bullets .bullet { display:flex; align-items:center; gap:8px; opacity:.92; }
.stat-bullets .check { color:#9be39b; }

/* --- New: 2‑column Feature Grid --- */
.core-features { width: var(--section-container); margin: 0 auto; display:grid; grid-template-columns: 1fr 1fr; gap: clamp(16px,2.4vw,22px); }
.cf-item { display:grid; grid-template-columns: 1fr 1fr; gap: clamp(12px,2vw,16px); align-items:center; background: rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.14); border-radius:18px; padding: clamp(16px,2vw,20px); backdrop-filter: blur(12px); }
.cf-item:nth-child(odd) { grid-column: 1 / -1; grid-template-columns: 1fr 1fr; }
.cf-text h3 { font-size: clamp(16px,2.2vw,22px); margin-bottom:6px; }
.cf-text p { opacity:.9; margin-bottom:8px; }
.cf-text ul { list-style: none; display:grid; gap:6px; padding-left:0; margin-bottom:10px; }
.cf-text li { opacity:.92; }
.cf-cta { color:#fff; text-decoration:none; border-bottom:2px solid var(--accent); width:fit-content; }
.cf-visual { height: 160px; border-radius:14px; background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(0,0,0,.20)); border:1px solid rgba(255,255,255,.14); display:flex; align-items:center; justify-content:center; color:#A5ACB8; font-size:.9rem; }
@media (max-width: 900px){ .core-features { grid-template-columns: 1fr; } .cf-item { grid-template-columns: 1fr; } }

/* --- New: How it works --- */
.how-steps { width: var(--section-container); margin:0 auto; display:grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px,2.2vw,18px); }
.how-card { background: rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.14); border-radius:16px; padding: clamp(14px,2vw,18px); display:flex; flex-direction:column; gap:8px; align-items:flex-start; }
.how-card .badge { background: rgba(255,255,255,0.10); border:1px solid rgba(255,255,255,0.18); padding:4px 8px; border-radius:999px; font-size:.8rem; opacity:.95; }
@media (max-width: 800px){ .how-steps { grid-template-columns: 1fr; } }

/* --- New: Demo / Video --- */
.demo-wrap { width: var(--section-container); margin: 0 auto; }
.demo-box { position: relative; border-radius: 18px; overflow: hidden; border:1px solid rgba(255,255,255,0.14); background: rgba(255,255,255,0.06); box-shadow: 0 20px 60px rgba(0,0,0,.35); }
.demo-box video { display:block; width:100%; height: auto; }
.demo-box .poster { display:flex; align-items:center; justify-content:center; color:#A5ACB8; height:320px; }

/* --- New: Newsletter --- */
.newsletter { width: var(--section-container); margin: 0 auto; display:grid; grid-template-columns: 1.2fr .8fr; gap: clamp(12px,2vw,16px); align-items:center; }
.news-card { background: rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.14); border-radius:16px; padding: clamp(14px,2vw,18px); display:flex; gap:10px; }
.news-card input { flex:1; background: transparent; border:0; color:#fff; outline:none; font-size:1rem; }
.news-card button { background: linear-gradient(180deg, color-mix(in srgb, var(--accent) 76%, #fff 0%), var(--accent-2)); border:0; color:#fff; border-radius:999px; padding:10px 14px; cursor:pointer; box-shadow: 0 0 0 1px rgba(255,255,255,.12) inset, 0 8px 24px rgba(0,0,0,.35); }
