/* Itsamap Landing — Sunset-Branding 1:1 wie in der App */
:root {
  --bg: #0b0f1a;            /* Navy aus der App */
  --bg-deep: #070713;
  --card: #151b2c;
  --card-2: #1a2136;
  --glass: rgba(255, 255, 255, 0.08);
  --glass-soft: rgba(255, 255, 255, 0.05);
  --white: #ffffff;
  --text: #e9e4f5;
  --text-2: #b8b0ce;
  --muted: #6e6590;
  --sunset: #ff7a1a;
  --sunset-soft: #ff9e2c;
  --pink: #ff3d81;
  --mint: #4ecdc4;
  --radius: 18px;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

.wordmark {
  font-family: "Righteous", -apple-system, sans-serif;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.5px;
}
.wordmark .accent { color: var(--sunset-soft); }

/* ------- Glow orbs ------- */
.orb {
  position: fixed; border-radius: 50%; filter: blur(130px);
  opacity: 0.16; pointer-events: none; z-index: 0;
}
.orb-1 { width: 420px; height: 420px; background: var(--sunset); top: 12%; right: -180px; }
.orb-2 { width: 380px; height: 380px; background: var(--pink); bottom: 16%; left: -200px; opacity: 0.1; }

.wrap { position: relative; z-index: 1; max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* ------- Nav ------- */
nav { display: flex; align-items: center; justify-content: space-between; padding: 22px 0; }
nav .wordmark { font-size: 26px; text-decoration: none; }
nav .nav-cta {
  background: linear-gradient(135deg, var(--sunset), var(--pink));
  color: #fff; text-decoration: none; padding: 10px 20px; border-radius: 999px;
  font-size: 14px; font-weight: 800; box-shadow: 0 6px 22px rgba(255, 122, 26, 0.35);
}

/* ------- Hero ------- */
.hero {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px;
  align-items: center; padding: 56px 0 72px;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255, 122, 26, 0.14); color: var(--sunset-soft);
  font-size: 13px; font-weight: 800; letter-spacing: 0.4px;
  padding: 7px 14px; border-radius: 999px; margin-bottom: 20px;
}
.eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--mint);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

h1 {
  font-family: "Righteous", sans-serif; font-weight: 400;
  font-size: clamp(40px, 6vw, 60px); line-height: 1.08; color: var(--white);
}
h1 .accent { color: var(--sunset-soft); }
.hero p.sub { margin-top: 18px; font-size: 18px; color: var(--text-2); max-width: 480px; }
.hero p.sub strong { color: var(--white); }
.app-facts { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 18px; }
.app-facts span {
  background: var(--card); border: 1px solid var(--glass); border-radius: 999px;
  padding: 7px 14px; font-size: 13px; font-weight: 700; color: var(--text-2);
}

/* Waitlist form */
.waitlist { margin-top: 30px; max-width: 470px; }
.waitlist form { display: flex; gap: 10px; }
.waitlist input {
  flex: 1; min-width: 0; background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px; padding: 15px 18px; color: var(--white); font-size: 16px;
  outline: none; transition: border-color 0.2s, box-shadow 0.2s;
}
.waitlist input:focus { border-color: var(--sunset); box-shadow: 0 0 0 3px rgba(255, 122, 26, 0.15); }
.waitlist button {
  background: linear-gradient(135deg, var(--sunset), var(--pink));
  color: #fff; border: 0; border-radius: 14px; padding: 15px 22px;
  font-size: 15px; font-weight: 800; cursor: pointer; white-space: nowrap;
  transition: transform 0.15s; box-shadow: 0 8px 28px rgba(255, 122, 26, 0.35);
}
.waitlist button:hover { transform: translateY(-1px); }
.waitlist button:disabled { opacity: 0.6; cursor: default; transform: none; }
.waitlist .note { margin-top: 10px; font-size: 12px; color: var(--muted); letter-spacing: 0.2px; }
.waitlist .msg { margin-top: 12px; font-size: 14px; font-weight: 700; display: none; }
.waitlist .msg.ok { color: var(--mint); display: block; }
.waitlist .msg.err { color: var(--pink); display: block; }

/* ------- Store badges (offizieller Look) ------- */
.store-badges { display: flex; gap: 14px; margin-top: 26px; flex-wrap: wrap; }
.store-badge {
  display: inline-flex; align-items: center; gap: 12px;
  background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px; overflow: visible;
  padding: 11px 18px 11px 15px; text-decoration: none; min-width: 175px;
  transition: border-color 0.25s, transform 0.2s, box-shadow 0.25s;
}
.store-badge:hover {
  border-color: rgba(255, 122, 26, 0.45); transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(255, 122, 26, 0.12);
}
.store-badge svg { width: 27px; height: 27px; flex-shrink: 0; }
.store-badge .lines { display: flex; flex-direction: column; line-height: 1.25; }
.store-badge .small { font-size: 10px; color: var(--muted); font-weight: 700; letter-spacing: 0.8px; text-transform: uppercase; }
.store-badge .big { font-size: 17px; color: #fff; font-weight: 700; letter-spacing: -0.2px; }
.store-badge.soon { position: relative; }
.store-badge.soon::after {
  content: "BALD"; position: absolute; top: -11px; right: -7px; z-index: 3;
  background: linear-gradient(135deg, var(--sunset), var(--pink));
  color: #fff; font-size: 9.5px; font-weight: 800; letter-spacing: 0.8px;
  line-height: 1.3; padding: 3px 9px 3px 10px; border-radius: 999px;
  border: 2px solid var(--bg);
  box-shadow: 0 4px 14px rgba(255, 61, 129, 0.35);
}

/* ------- Phone + App-Demo ------- */
.phone-col { display: flex; flex-direction: column; align-items: center; gap: 18px; position: relative; }

/* Schwebende Kategorie-Chips ums iPhone */
.float-chip {
  position: absolute; z-index: 5;
  background: rgba(21, 27, 44, 0.92); border: 1px solid var(--glass);
  border-radius: 999px; padding: 9px 16px; font-size: 13.5px; font-weight: 800; color: var(--text);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.45); backdrop-filter: blur(6px);
  animation: chipFloat 4.2s ease-in-out infinite; white-space: nowrap;
}
@keyframes chipFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
.fc1 { top: 36px; left: -14px; animation-delay: 0s; }
.fc2 { top: 150px; right: -26px; animation-delay: 0.7s; }
.fc3 { top: 318px; left: -52px; animation-delay: 1.4s; }
.fc4 { top: 452px; right: -60px; animation-delay: 2.1s; }
.fc5 { top: 548px; left: -6px; animation-delay: 2.8s; }
.phone {
  width: 210px; height: 440px; background: #000;
  border: 7px solid #1b1b24; border-radius: 34px;
  position: relative; box-shadow: 0 32px 70px rgba(0, 0, 0, 0.55), 0 0 0 1px #2c2c38;
  overflow: hidden;
}

/* Echte App-Screenshots */
.screen.shot { padding: 0; }
.screen.shot img { width: 100%; height: 100%; object-fit: cover; display: block; }
.blurbar {
  position: absolute; left: 18%; right: 18%; top: 22.4%; height: 3.2%;
  backdrop-filter: blur(7px); -webkit-backdrop-filter: blur(7px);
  background: rgba(11, 15, 26, 0.35); border-radius: 6px;
}
.phone .island {
  position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
  width: 92px; height: 26px; background: #000; border-radius: 999px; z-index: 50;
}
.viewport { position: absolute; inset: 0; background: var(--bg); }

/* Screens */
.screen {
  position: absolute; inset: 0; padding: 50px 14px 64px;
  opacity: 0; transform: translateX(9px); transition: opacity 0.45s ease, transform 0.45s ease;
  pointer-events: none; display: flex; flex-direction: column; overflow: hidden;
}
.screen.active { opacity: 1; transform: translateX(0); }
.screen.prev { transform: translateX(-9px); }

/* In-App-Bausteine (1:1-Optik) */
.app-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.app-header .wordmark { font-size: 20px; }
.loc-pill {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--card); border: 1px solid var(--glass);
  border-radius: 999px; padding: 5px 10px; font-size: 10.5px; font-weight: 700; color: var(--text-2);
}
.search-row { display: flex; gap: 8px; margin-bottom: 10px; }
.search-box {
  flex: 1; display: flex; align-items: center; gap: 7px;
  background: var(--card); border: 1px solid var(--glass);
  border-radius: 13px; padding: 9px 12px; color: var(--muted); font-size: 12px;
}
.filter-btn {
  width: 38px; border-radius: 13px; background: var(--card);
  border: 1px solid var(--glass); display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: var(--text-2);
}
.swipe-cta {
  background: linear-gradient(120deg, var(--sunset), var(--pink));
  border-radius: 15px; padding: 11px 13px; display: flex; align-items: center; gap: 9px;
  margin-bottom: 13px; box-shadow: 0 8px 22px rgba(255, 61, 129, 0.3);
}
.swipe-cta .t { font-size: 12.5px; font-weight: 800; color: #fff; line-height: 1.3; }
.swipe-cta .s { font-size: 10.5px; color: rgba(255, 255, 255, 0.85); font-weight: 600; }
.sec-title { font-size: 12px; font-weight: 800; color: var(--white); margin: 2px 0 8px; display: flex; align-items: center; gap: 6px; }
.cards-row { display: flex; gap: 9px; }
.ev-card {
  flex: 1; background: var(--card); border: 1px solid var(--glass-soft);
  border-radius: 14px; overflow: hidden; position: relative;
}
.ev-thumb { height: 72px; position: relative; }
.ev-thumb.a { background: linear-gradient(135deg, #ff7a1a, #ff3d81); }
.ev-thumb.b { background: linear-gradient(135deg, #5b3fd4, #ff3d81); }
.ev-thumb.c { background: linear-gradient(135deg, #0e7a6e, #4ecdc4); }
.ev-thumb .glyph { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 26px; }
.ev-heart {
  position: absolute; top: 6px; right: 6px; width: 22px; height: 22px; border-radius: 50%;
  background: rgba(11, 15, 26, 0.55); border: 1px solid var(--glass);
  display: flex; align-items: center; justify-content: center; font-size: 10px;
}
.ev-body { padding: 7px 9px 9px; }
.ev-title { font-size: 11px; font-weight: 800; color: var(--white); line-height: 1.25; }
.ev-meta { font-size: 9.5px; color: var(--muted); font-weight: 600; margin-top: 2px; }
.badge-live {
  display: inline-block; background: rgba(255, 61, 129, 0.18); color: var(--pink);
  font-size: 8.5px; font-weight: 800; padding: 2px 7px; border-radius: 999px; margin-bottom: 4px;
}

/* Tab-Bar (3 Tabs wie in der App) */
.tabbar {
  position: absolute; left: 12px; right: 12px; bottom: 12px;
  background: rgba(21, 27, 44, 0.92); border: 1px solid var(--glass);
  border-radius: 18px; display: flex; padding: 8px 6px; backdrop-filter: blur(8px); z-index: 40;
}
.tab { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 2px; font-size: 9px; font-weight: 700; color: var(--muted); }
.tab svg { width: 17px; height: 17px; stroke: currentColor; }
.tab.on { color: var(--sunset-soft); }

/* Swipe-Screen */
.swipe-head { text-align: center; margin: 4px 0 10px; }
.swipe-head .t { font-family: "Righteous", sans-serif; font-size: 19px; color: var(--white); }
.swipe-head .s { font-size: 10.5px; color: var(--muted); font-weight: 600; margin-top: 2px; }
.deck { position: relative; flex: 1; }
.deck-card {
  position: absolute; inset: 0; background: var(--card); border: 1px solid var(--glass);
  border-radius: 20px; overflow: hidden; display: flex; flex-direction: column;
}
.deck-card.back { transform: scale(0.94) translateY(12px); opacity: 0.5; }
.deck-card.front { transform: rotate(4deg) translateX(14px); animation: deckSwing 3.2s ease-in-out infinite; }
@keyframes deckSwing {
  0%, 100% { transform: rotate(0deg) translateX(0); }
  40% { transform: rotate(4deg) translateX(16px); }
  70% { transform: rotate(-2.5deg) translateX(-10px); }
}
.deck-img { flex: 1; background: linear-gradient(160deg, #ff7a1a 0%, #ff3d81 70%, #5b3fd4 110%); position: relative; }
.deck-img .glyph { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 52px; }
.stamp {
  position: absolute; top: 16px; left: 12px; transform: rotate(-12deg);
  border: 2.5px solid var(--mint); color: var(--mint); font-weight: 900; font-size: 15px;
  padding: 3px 10px; border-radius: 8px; letter-spacing: 1px; background: rgba(11, 15, 26, 0.35);
}
.deck-info { padding: 10px 12px 12px; }
.deck-title { font-size: 14px; font-weight: 800; color: var(--white); }
.deck-meta { font-size: 10.5px; color: var(--text-2); font-weight: 600; margin-top: 3px; }
.deck-chip {
  display: inline-block; margin-top: 7px; background: rgba(255, 122, 26, 0.16); color: var(--sunset-soft);
  font-size: 9.5px; font-weight: 800; padding: 3px 9px; border-radius: 999px;
}
.swipe-btns { display: flex; justify-content: center; gap: 26px; padding: 12px 0 2px; }
.sw-btn {
  width: 46px; height: 46px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 19px; border: 1px solid var(--glass); background: var(--card);
}
.sw-btn.like { background: linear-gradient(135deg, var(--pink), #c2255f); border: 0; box-shadow: 0 8px 22px rgba(255, 61, 129, 0.4); }

/* Match-Screen */
.match-bg { position: absolute; inset: 0; background: radial-gradient(circle at 50% 30%, rgba(255, 122, 26, 0.22), transparent 60%), var(--bg-deep); }
.match-inner { position: relative; flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding-bottom: 20px; }
.discs { display: flex; margin-bottom: 14px; }
.disc {
  width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 24px; border: 3px solid var(--bg-deep);
}
.disc.heart { background: linear-gradient(135deg, var(--pink), #c2255f); margin-right: -12px; z-index: 2; animation: discPop 3.2s ease-in-out infinite; }
.disc.pin { background: linear-gradient(135deg, var(--sunset), #d95f00); animation: discPop 3.2s 0.12s ease-in-out infinite; }
@keyframes discPop { 0%, 100% { transform: scale(1); } 12% { transform: scale(1.14); } 24% { transform: scale(1); } }
.match-title { font-family: "Righteous", sans-serif; font-size: 30px; color: var(--white); }
.match-title .accent { color: var(--sunset-soft); }
.match-sub { font-size: 11px; color: var(--text-2); font-weight: 600; margin-top: 4px; }
.match-chip {
  display: inline-block; margin-top: 12px; background: rgba(255, 61, 129, 0.16); color: var(--pink);
  font-size: 11px; font-weight: 800; padding: 5px 13px; border-radius: 999px;
}
.match-ev {
  margin-top: 16px; background: var(--card); border: 1px solid var(--glass); border-radius: 15px;
  padding: 11px 14px; text-align: left; transform: rotate(-2deg); width: 84%;
}
.match-ev .t { font-size: 12.5px; font-weight: 800; color: var(--white); }
.match-ev .m { font-size: 10px; color: var(--muted); font-weight: 600; margin-top: 2px; }
.match-cta {
  margin-top: 16px; width: 84%; background: linear-gradient(135deg, var(--sunset), var(--pink));
  color: #fff; font-weight: 800; font-size: 12.5px; text-align: center;
  border-radius: 999px; padding: 11px 0; box-shadow: 0 8px 24px rgba(255, 122, 26, 0.4);
}
.match-skip { margin-top: 10px; font-size: 10.5px; color: var(--muted); font-weight: 600; }

/* Karten-Screen */
.mapview {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 65% 30%, rgba(91, 63, 212, 0.18), transparent 45%),
    radial-gradient(circle at 30% 65%, rgba(255, 122, 26, 0.1), transparent 40%),
    linear-gradient(#101626, #0b0f1a);
}
.mapview::before {
  content: ""; position: absolute; inset: 0; opacity: 0.16;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.25) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.25) 1px, transparent 1px);
  background-size: 44px 44px;
}
.radius-circle {
  position: absolute; left: 50%; top: 46%; transform: translate(-50%, -50%);
  width: 200px; height: 200px; border-radius: 50%;
  border: 1.5px solid rgba(255, 122, 26, 0.5); background: rgba(255, 122, 26, 0.07);
}
.me-dot {
  position: absolute; left: 50%; top: 46%; transform: translate(-50%, -50%);
  width: 13px; height: 13px; border-radius: 50%; background: var(--sunset);
  border: 2.5px solid #fff; box-shadow: 0 0 0 6px rgba(255, 122, 26, 0.25);
}
.pin {
  position: absolute; width: 26px; height: 26px; border-radius: 50% 50% 50% 4px;
  transform: rotate(45deg); display: flex; align-items: center; justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.85); animation: pinBob 2.6s ease-in-out infinite;
}
.pin span { transform: rotate(-45deg); font-size: 11px; }
.pin.p1 { background: var(--pink); left: 36%; top: 30%; }
.pin.p2 { background: var(--sunset); left: 60%; top: 40%; animation-delay: 0.4s; }
.pin.p3 { background: #5b3fd4; left: 44%; top: 56%; animation-delay: 0.8s; }
.pin.p4 { background: var(--mint); left: 68%; top: 60%; animation-delay: 1.2s; }
@keyframes pinBob { 0%, 100% { margin-top: 0; } 50% { margin-top: -5px; } }
.map-card {
  position: absolute; left: 14px; right: 14px; bottom: 64px;
  background: rgba(21, 27, 44, 0.95); border: 1px solid var(--glass);
  border-radius: 15px; padding: 10px 12px; display: flex; gap: 10px; align-items: center;
}
.map-card .thumb {
  width: 44px; height: 44px; border-radius: 11px; flex-shrink: 0;
  background: linear-gradient(135deg, #ff7a1a, #ff3d81);
  display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.map-card .t { font-size: 11.5px; font-weight: 800; color: var(--white); }
.map-card .m { font-size: 9.5px; color: var(--muted); font-weight: 600; margin-top: 1px; }

/* Story-Dots unterm Phone */
.demo-nav { display: flex; gap: 7px; align-items: center; position: relative; z-index: 1; }
.demo-dot {
  width: 7px; height: 7px; padding: 0; border: 0; border-radius: 999px;
  background: rgba(255, 255, 255, 0.18); cursor: pointer;
  transition: width 0.35s ease, background 0.35s ease;
}
.demo-dot.on {
  width: 26px;
  background: linear-gradient(90deg, var(--sunset), var(--pink));
}

/* ------- Sections ------- */
section { padding: 64px 0; }
.section-title {
  font-family: "Righteous", sans-serif; font-weight: 400;
  font-size: clamp(28px, 4vw, 38px); color: var(--white); text-align: center;
}
.section-sub { text-align: center; color: var(--text-2); margin-top: 10px; font-size: 16px; }

/* Kategorien (Tourguide) */
.cats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 44px; }
.cat {
  background: var(--card); border: 1px solid var(--glass); border-radius: var(--radius);
  padding: 26px 22px; transition: transform 0.2s, border-color 0.2s;
}
.cat:hover { transform: translateY(-3px); border-color: rgba(255, 122, 26, 0.4); }
.cat-icon {
  width: 46px; height: 46px; border-radius: 14px; font-size: 22px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 14px;
}
.cat h3 { color: var(--white); font-size: 16.5px; margin-bottom: 6px; }
.cat p { color: var(--text-2); font-size: 14px; line-height: 1.55; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 44px; }
.step { background: var(--card); border: 1px solid var(--glass); border-radius: var(--radius); padding: 28px 22px; }
.step .num {
  width: 38px; height: 38px; border-radius: 12px; display: flex; align-items: center; justify-content: center;
  font-weight: 800; color: var(--sunset-soft); background: rgba(255, 122, 26, 0.14); font-size: 16px; margin-bottom: 16px;
}
.step h3 { color: var(--white); font-size: 18px; margin-bottom: 8px; }
.step p { color: var(--text-2); font-size: 14.5px; }

.vibes { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 40px; }
.vibe {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--card); border: 1px solid var(--glass); border-radius: 999px;
  padding: 11px 20px; font-size: 15px; font-weight: 700; color: var(--text);
}

.final {
  background:
    radial-gradient(circle at 30% 0%, rgba(255, 122, 26, 0.18), transparent 55%),
    radial-gradient(circle at 80% 100%, rgba(255, 61, 129, 0.16), transparent 55%),
    var(--card);
  border: 1px solid var(--glass); border-radius: 28px;
  padding: 56px 28px; text-align: center;
}
.final .store-badges { justify-content: center; margin-top: 30px; }

footer {
  border-top: 1px solid var(--glass); padding: 36px 0 48px; margin-top: 40px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  flex-wrap: wrap; color: var(--muted); font-size: 14px;
}
footer a { color: var(--text-2); text-decoration: none; margin-left: 18px; }
footer a:hover { color: var(--white); }

/* ------- Legal ------- */
.legal { max-width: 760px; margin: 0 auto; padding: 40px 0 80px; }
.legal h1 { font-size: 36px; margin-bottom: 28px; }
.legal h2 { color: var(--white); font-size: 20px; margin: 32px 0 10px; }
.legal p, .legal li { color: var(--text-2); font-size: 15px; }
.legal ul { padding-left: 22px; margin: 10px 0; }
.legal .placeholder { color: var(--sunset-soft); font-weight: 700; }
.back { display: inline-block; margin-bottom: 24px; color: var(--text-2); text-decoration: none; font-size: 14px; }
.back:hover { color: var(--white); }

/* ------- One-Pager-Layout (Premium) ------- */
@keyframes rise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes phoneFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-2.5px); }
}

.one { display: flex; flex-direction: column; align-items: center; padding-top: 44px; }
.one-head { text-align: center; max-width: 600px; animation: rise 0.7s 0.05s ease both; }
.overline {
  margin-top: 22px; font-size: 12px; font-weight: 700; letter-spacing: 3.5px;
  text-transform: uppercase; color: var(--muted);
}
.tagline {
  font-size: clamp(15px, 2.2vw, 18px); font-weight: 600; color: #ffffff;
  letter-spacing: 0.3px; text-align: center; margin-top: 12px;
}
.brand-row {
  display: flex; align-items: center; justify-content: center;
  gap: clamp(12px, 1.8vw, 18px); margin-top: 6px;
}
.hero-logo {
  height: clamp(50px, 7.5vw, 66px); width: auto; border-radius: 24%;
  flex-shrink: 0; box-shadow: 0 12px 34px rgba(255, 61, 129, 0.3);
}
.hero-mark {
  font-size: clamp(44px, 7vw, 60px); line-height: 1; margin: 0;
  font-weight: 400; color: var(--white);
}
.hero-mark .accent { color: #ff9e2c; }
.one-head .accent {
  background: linear-gradient(100deg, var(--sunset-soft), var(--pink));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.brk { display: none; }

.one .phone-col { margin-top: 26px; gap: 16px; animation: rise 0.7s 0.15s ease both; }
.one .phone-col::before {
  content: ""; position: absolute; z-index: 0; top: 30px; left: 50%;
  width: 360px; height: 360px; transform: translateX(-50%);
  background: radial-gradient(circle, rgba(255, 122, 26, 0.32), rgba(255, 61, 129, 0.14) 55%, transparent 72%);
  filter: blur(46px); pointer-events: none;
}
.one .phone { animation: phoneFloat 7s ease-in-out infinite; }

.one-badges { justify-content: center; margin-top: 24px; flex-wrap: nowrap; animation: rise 0.7s 0.25s ease both; }
.one-sub {
  text-align: center; margin: 16px auto 0; font-size: 14px; font-weight: 500;
  color: var(--text-2); max-width: 430px; padding: 0 8px; animation: rise 0.7s 0.32s ease both;
}
.one-waitlist { margin-top: 18px; width: 100%; max-width: 440px; text-align: center; animation: rise 0.7s 0.4s ease both; }
.one-waitlist .note { text-align: center; }
.one-footer {
  border-top: 1px solid var(--glass); margin-top: 34px; padding: 22px 0 30px;
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px; color: var(--muted); font-size: 13.5px;
}
.one-footer a { color: var(--text-2); text-decoration: none; margin-left: 16px; }
.one-footer a:hover { color: var(--white); }

/* ------- Mobile ------- */
@media (max-width: 880px) {
  .orb { display: none; }
  .one { padding-top: 28px; }
  .waitlist { margin-left: auto; margin-right: auto; }
  .waitlist form { flex-direction: column; }
  .store-badges { justify-content: center; }
}
@media (max-width: 520px) {
  .cats { grid-template-columns: 1fr; }
  .brk { display: block; }
  .one-badges { gap: 10px; }
  .one-badges .store-badge { min-width: 0; padding: 9px 14px 9px 12px; gap: 9px; }
  .one-badges .store-badge .big { font-size: 15.5px; }
  .one-badges .store-badge svg { width: 23px; height: 23px; }
}
