/* ═══════════════════════════════════════════════════════════════
   anlık. — Production Website
   Design: Pure monochrome. System font. OLED black.
   Exact match to iOS app Brand.swift tokens.
   ═══════════════════════════════════════════════════════════════ */

/* ── Brand Tokens (from Brand.swift) ── */
:root {
  --black: #000000;
  --dark-gray: rgba(255, 255, 255, 0.08);
  --surface-input: rgba(255, 255, 255, 0.08);
  --stroke-light: rgba(255, 255, 255, 0.08);
  --text-primary: rgba(255, 255, 255, 0.92);
  --text-secondary: rgba(255, 255, 255, 0.45);
  --text-tertiary: rgba(255, 255, 255, 0.3);
  --text-faint: rgba(255, 255, 255, 0.12);
  --card-bg: rgba(255, 255, 255, 0.04);
  --card-border: rgba(255, 255, 255, 0.06);
  --field-border: rgba(255, 255, 255, 0.15);

  --font: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', system-ui, sans-serif;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
}

/* ── Reset ── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font);
  background: var(--black);
  color: var(--text-primary);
  line-height: 1.5;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Nav ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 24px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav.scrolled {
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 0.5px solid var(--card-border);
}

.nav-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
}

.nav-brand {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -1px;
  color: white;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--text-primary);
}

.nav-cta {
  color: black !important;
  background: white;
  padding: 7px 18px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 13px;
  transition: opacity 0.2s;
}

.nav-cta:hover {
  opacity: 0.85;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 20px;
  padding: 8px;
  cursor: pointer;
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 24px 60px;
}

.hero-inner {
  max-width: 640px;
}

.hero-title {
  font-size: clamp(72px, 18vw, 120px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 0.9;
  color: white;
  margin-bottom: 12px;
}

.hero-tagline {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 48px;
}

.hero-desc {
  font-size: clamp(16px, 2vw, 18px);
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: white;
  color: black;
  border-radius: var(--radius);
  font-size: 17px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary:hover {
  opacity: 0.85;
  transform: scale(0.97);
}

.btn-primary:active {
  transform: scale(0.93);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  border: 0.5px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: scale(0.97);
}

.btn-secondary:active {
  transform: scale(0.93);
}

/* ── High-Fidelity Phone Mockup (Hero) ── */
.phone-section {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 0 24px 80px;
  margin-top: -40px;
  z-index: 10;
}

.hero-phone-glow {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
  filter: blur(60px);
  z-index: -1;
  pointer-events: none;
}

.phone-frame.hero-phone {
  width: 280px;
  height: 580px;
  background: #000;
  border-radius: 44px;
  padding: 12px;
  position: relative;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.1),
    inset 0 0 0 2px rgba(255, 255, 255, 0.05),
    0 40px 80px rgba(0, 0, 0, 0.8),
    0 20px 40px rgba(0, 0, 0, 0.4);
}

.phone-frame.hero-phone::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 44px;
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: #000;
  border-radius: 32px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

/* Simulate Camera Viewfinder Background */
.phone-screen.camera-view::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.9) 100%), url('assets/hero-camera.png') center/cover no-repeat;
  z-index: 0;
}

.phone-dynamic-island {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 28px;
  background: #000;
  border-radius: 14px;
  z-index: 20;
  box-shadow: inset 0 0 2px rgba(255, 255, 255, 0.2);
}



/* ── Section ── */
.section {
  padding: clamp(80px, 10vw, 140px) 0;
}

.section-label {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.1;
  margin-bottom: 12px;
}

.section-desc {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 460px;
}

.section-header {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 72px);
}

.section-header .section-desc {
  margin: 0 auto;
}

/* ── Tour Cards (AppTourView style) ── */
/* ── Sticky Phone Tour ── */
.tour-section {
  position: relative;
  overflow: clip;
}

.tour-layout {
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

.tour-steps {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40vh;
  /* Create space for scrolling */
  padding-bottom: 40vh;
}

.tour-step-item {
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: opacity 0.4s;
}

.tour-step-item:not(.active-step) {
  opacity: 0.25;
}

.tour-step-num {
  width: 28px;
  height: 28px;
  background: white;
  color: black;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
}

.tour-step-item h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  color: white;
}

.tour-step-item p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.tour-sticky-visual {
  flex: 1;
  position: sticky;
  top: 15vh;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}

.tour-phone-wrapper {
  perspective: 1000px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.tour-phone {
  width: 280px;
  height: 580px;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* UI Layer transitions */
.phone-ui-layer {
  position: absolute;
  inset: 0;
  padding: 16px 14px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease, transform 0.5s ease;
  transform: translateY(10px);
}

.tour-phone[data-active-step="1"] .step-1-ui,
.tour-phone[data-active-step="2"] .step-2-ui,
.tour-phone[data-active-step="3"] .step-3-ui,
.tour-phone[data-active-step="4"] .step-4-ui {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.tour-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
  transform: scale(0.96) translateY(10px);
  z-index: 5;
}

.tour-phone[data-active-step="1"] .step-1-svg,
.tour-phone[data-active-step="2"] .step-2-svg,
.tour-phone[data-active-step="3"] .step-3-svg,
.tour-phone[data-active-step="4"] .step-4-svg {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1) translateY(0);
}





/* ── Features — Bento Grid ── */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.bento-card {
  background: var(--card-bg);
  border-radius: var(--radius-xl);
  border: 0.5px solid var(--card-border);
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
  transition: background 0.3s, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  position: relative;
}

.bento-card:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-4px);
}

.bento-full {
  grid-column: 1 / -1;
}

.bento-grid {
  grid-template-columns: repeat(6, 1fr);
}

.bento-card:nth-child(1) {
  grid-column: span 3;
}

.bento-card:nth-child(2) {
  grid-column: span 3;
}

.bento-card:nth-child(3) {
  grid-column: span 2;
}

.bento-card:nth-child(4) {
  grid-column: span 2;
}

.bento-card:nth-child(5) {
  grid-column: span 2;
}

.bento-card:nth-child(6) {
  grid-column: 1 / -1;
}

.bento-title {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.3px;
  color: white;
  margin-bottom: 4px;
}

.bento-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.55;
}

.bento-demo {
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-top: 20px;
}

/* — Camera demo — */
.bento-cam-demo {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.cam-viewfinder {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.02) url('assets/hero-camera.png') center/cover no-repeat;
  border: 0.5px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.cam-crosshair {
  width: 40px;
  height: 40px;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  border-radius: 2px;
  animation: camPulse 2.5s ease-in-out infinite;
}

@keyframes camPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.4;
  }

  50% {
    transform: scale(1.15);
    opacity: 0.8;
  }
}

.cam-viewfinder::before {
  content: 'REC';
  position: absolute;
  top: 8px;
  right: 10px;
  font-size: 8px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.25);
  letter-spacing: 1px;
}

.cam-lens-bar {
  display: flex;
  gap: 4px;
}

.cam-lens {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.3);
  padding: 3px 10px;
  border-radius: 100px;
  transition: all 0.3s;
}

.cam-lens.active {
  background: rgba(255, 255, 255, 0.12);
  color: white;
}

/* — Strip demo — */
.bento-strip-demo {
  display: flex;
  gap: 10px;
  width: 100%;
}

.strip-card {
  flex: 1;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
  border: 0.5px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  animation: stripSlide 3s ease-in-out infinite;
}

.strip-card-2 {
  animation-delay: 0.5s;
}

@keyframes stripSlide {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }
}

.strip-photo {
  width: 100%;
  aspect-ratio: 3/4;
  background-color: rgba(255, 255, 255, 0.02);
  background-size: cover;
  background-position: center;
}

.strip-photo.arda {
  background-image: url('assets/strip-1.png');
}

.strip-photo.selin {
  background-image: url('assets/strip-2.png');
}

.strip-meta {
  display: flex;
  justify-content: space-between;
  padding: 6px 8px;
}

.strip-user {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
}

.strip-time {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.25);
}

/* — Streak demo — */
.bento-streak-demo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.streak-flame {
  font-size: 36px;
  animation: flamePulse 1.5s ease-in-out infinite;
}

@keyframes flamePulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.15) rotate(5deg);
  }
}

.streak-count {
  font-size: 36px;
  font-weight: 800;
  color: white;
  letter-spacing: -1px;
  line-height: 1;
}

.streak-label {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* — Chat demo — */
.bento-chat-demo {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.chat-bubble {
  font-size: 12px;
  padding: 7px 12px;
  border-radius: 14px;
  max-width: 85%;
  line-height: 1.4;
}

.chat-in {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.7);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
  animation: chatFadeIn 2s ease-in-out infinite;
}

.chat-out {
  background: rgba(255, 255, 255, 0.12);
  color: white;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
  animation: chatFadeIn 2s ease-in-out infinite 0.6s;
}

@keyframes chatFadeIn {

  0%,
  100% {
    opacity: 0.6;
    transform: translateY(0);
  }

  50% {
    opacity: 1;
    transform: translateY(-2px);
  }
}

.chat-reactions {
  display: flex;
  gap: 4px;
  margin-top: 4px;
}

.chat-react {
  font-size: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 0.5px solid rgba(255, 255, 255, 0.06);
  border-radius: 100px;
  padding: 2px 6px;
}

/* — Quest demo — */
.bento-quest-demo {
  width: 100%;
}

.quest-card {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 100%), url('assets/quest-coffee.png') center/cover no-repeat;
  border: 0.5px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 14px 16px;
  animation: questPulse 4s ease-in-out infinite;
}

@keyframes questPulse {

  0%,
  100% {
    border-color: rgba(255, 255, 255, 0.06);
  }

  50% {
    border-color: rgba(255, 255, 255, 0.15);
  }
}

.quest-cat {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 6px;
}

.quest-text {
  font-size: 16px;
  font-weight: 600;
  font-style: italic;
  color: rgba(255, 255, 255, 0.7);
}

/* — Badge demo — */
.bento-badge-demo {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.badge-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 0.5px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.badge-item:hover .badge-circle {
  transform: scale(1.15) rotate(-5deg);
}

.badge-name {
  font-size: 10px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.35);
}

.badge-locked {
  opacity: 0.35;
}

/* ── Widget Showcase (WidgetDemoView style) ── */
.widget-section {
  overflow: hidden;
}

.widget-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.widget-text h3 {
  font-size: clamp(24px, 4vw, 34px);
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.15;
  margin-bottom: 16px;
}

.widget-text p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 20px;
}

.widget-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.widget-list-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
}

.widget-list-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  flex-shrink: 0;
}

.widget-demo {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 14px;
}

.widget-card {
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.04);
  border: 0.5px solid var(--card-border);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.widget-card:hover {
  transform: translateY(-6px);
}

.widget-small {
  width: 150px;
  height: 150px;
}

.widget-large {
  width: 150px;
  height: 316px;
}

.widget-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 12px;
}

.widget-brand-label {
  font-size: 10px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.35);
  text-align: right;
}

.widget-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.widget-city {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}

.widget-dist {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.35);
}


/* ── Download CTA ── */
.download {
  text-align: center;
  padding: clamp(80px, 10vw, 140px) 0;
}

.download-title {
  font-size: clamp(36px, 7vw, 56px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1;
  margin-bottom: 16px;
  color: white;
}

.download-desc {
  font-size: 16px;
  color: var(--text-secondary);
  margin: 0 auto 36px;
  max-width: 400px;
  line-height: 1.65;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  background: var(--card-bg);
  border: 0.5px solid var(--card-border);
  border-radius: var(--radius);
  transition: background 0.2s, transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.store-badge:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: scale(0.97);
}

.store-badge:active {
  transform: scale(0.93);
}

.store-badge svg {
  width: 24px;
  height: 24px;
  fill: white;
}

.store-text {
  text-align: left;
}

.store-label {
  font-size: 10px;
  color: var(--text-secondary);
  line-height: 1;
}

.store-name {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
}

/* ── Footer (Settings version footer) ── */
.footer {
  border-top: 0.5px solid var(--card-border);
  padding: 40px 0 28px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 32px;
}

.footer-brand {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -1px;
  color: rgba(255, 255, 255, 0.1);
}

.footer-brand-desc {
  font-size: 13px;
  color: var(--text-tertiary);
  max-width: 260px;
  line-height: 1.55;
  margin-top: 6px;
}

.footer-columns {
  display: flex;
  gap: 48px;
}

.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col a {
  font-size: 13px;
  color: var(--text-tertiary);
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--text-primary);
}

.footer-bottom {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 0.5px solid rgba(255, 255, 255, 0.04);
  text-align: center;
  font-size: 12px;
  color: var(--text-faint);
}

/* ── Feature Sections (Phone + Text Layout) ── */
.feature-section { overflow: hidden; }

.feature-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.feature-layout-reverse { direction: rtl; }
.feature-layout-reverse > * { direction: ltr; }

.feature-text h3 {
  font-size: clamp(24px, 4vw, 34px);
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.15;
  margin-bottom: 16px;
}

.feature-text p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 20px;
}

.feature-phone {
  display: flex;
  justify-content: center;
}

.feature-phone-frame {
  width: 280px;
  height: 580px;
  background: #000;
  border-radius: 44px;
  padding: 12px;
  position: relative;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.1),
    inset 0 0 0 2px rgba(255,255,255,0.05),
    0 40px 80px rgba(0,0,0,0.8),
    0 20px 40px rgba(0,0,0,0.4);
}

.feature-phone-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 44px;
  box-shadow: inset 0 0 20px rgba(255,255,255,0.05);
  pointer-events: none;
}

.feature-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
}

/* Tier Flow */
.tier-flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
}

.tier-pill {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  padding: 4px 10px;
  border-radius: 100px;
  background: rgba(255,255,255,0.06);
  border: 0.5px solid rgba(255,255,255,0.08);
  white-space: nowrap;
}

.tier-pill-max {
  color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.15);
}

.tier-sep {
  font-size: 10px;
  color: rgba(255,255,255,0.15);
}

@media (max-width: 768px) {
  .feature-layout {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .feature-layout-reverse { direction: ltr; }
  .feature-phone-frame {
    width: 220px;
    height: 450px;
    border-radius: 34px;
  }
  .feature-phone-frame .phone-screen { border-radius: 26px; }
  .tier-flow { justify-content: center; }
}

/* ── Trust Banner ── */
.trust-banner { padding: clamp(40px, 6vw, 80px) 0; }

.trust-grid {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 100px;
}

.trust-icon {
  font-size: 28px;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.04);
  border: 0.5px solid rgba(255,255,255,0.06);
  border-radius: 16px;
}

.trust-label {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  text-align: center;
  white-space: nowrap;
}

@media (max-width: 480px) {
  .trust-grid { gap: 16px; }
  .trust-item { min-width: 80px; }
  .trust-icon { width: 48px; height: 48px; font-size: 24px; border-radius: 14px; }
}

/* ── Scroll Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-d1 {
  transition-delay: 0.08s;
}

.reveal-d2 {
  transition-delay: 0.16s;
}

.reveal-d3 {
  transition-delay: 0.24s;
}

.reveal-d4 {
  transition-delay: 0.32s;
}

.reveal-d5 {
  transition-delay: 0.40s;
}

.reveal-d6 {
  transition-delay: 0.48s;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-links.open {
    display: flex;
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: flex-start;
    padding: 32px;
    gap: 20px;
  }

  .nav-links.open a {
    font-size: 18px;
  }

  .nav-toggle {
    display: block;
  }

  .tour-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .bento-grid {
    grid-template-columns: 1fr;
  }

  .bento-card:nth-child(1),
  .bento-card:nth-child(2),
  .bento-card:nth-child(3),
  .bento-card:nth-child(4),
  .bento-card:nth-child(5),
  .bento-card:nth-child(6) {
    grid-column: span 1;
  }

  .widget-layout {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .widget-list {
    align-items: center;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .phone-frame {
    width: 220px;
    height: 450px;
    border-radius: 34px;
  }

  .phone-screen {
    border-radius: 26px;
  }

  .footer-columns {
    gap: 32px;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .tour-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
  }

  .footer-columns {
    flex-direction: column;
    gap: 24px;
  }

}