/* ============================================================
   Veto — vetospam.app — Main Stylesheet
   Dark, modern, minimal
   ============================================================ */

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

:root {
  --bg:        #080A0D;
  --bg-2:      #0E1117;
  --bg-3:      #141820;
  --surface:   #1A1F2B;
  --surface-2: #222840;
  --border:    rgba(255,255,255,0.08);
  --accent:    #007AFF;
  --accent-2:  #0A84FF;
  --accent-glow: rgba(0,122,255,0.25);
  --text:      #F5F7FA;
  --text-2:    #A0AABB;
  --text-3:    #5A6478;
  --green:     #30D158;
  --font:      'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius:    16px;
  --radius-sm: 10px;
  --transition: 0.25s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img, video { display: block; max-width: 100%; }

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background var(--transition), backdrop-filter var(--transition);
}
.nav.scrolled {
  background: rgba(8,10,13,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo-img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}
.nav-logo-text {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.3px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  transition: color var(--transition);
}
.nav-link:hover { color: var(--text); }
.nav-cta {
  font-size: 14px;
  font-weight: 600;
  background: var(--accent);
  color: #fff;
  padding: 8px 20px;
  border-radius: 100px;
  transition: background var(--transition), transform var(--transition);
}
.nav-cta:hover { background: var(--accent-2); transform: translateY(-1px); }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 16px 24px 24px;
  background: rgba(8,10,13,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-mobile.open { display: flex; }
.nav-mobile-link {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-2);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}
.nav-mobile-link:last-child { border-bottom: none; }
.nav-mobile-link:hover { color: var(--text); }
.nav-mobile-cta {
  color: var(--accent);
  font-weight: 700;
  border-bottom: none;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}
.hero-video-container {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8,10,13,0.55) 0%,
    rgba(8,10,13,0.35) 40%,
    rgba(8,10,13,0.75) 80%,
    rgba(8,10,13,1) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  padding: 120px 24px 80px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(0,122,255,0.12);
  border: 1px solid rgba(0,122,255,0.25);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.hero-title {
  font-size: clamp(40px, 7vw, 80px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 20px;
}
.hero-title-accent {
  background: linear-gradient(135deg, #007AFF, #5AC8FA);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: clamp(16px, 2.5vw, 20px);
  color: var(--text-2);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.hero-pillars {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.pillar {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
  padding: 12px 18px;
  border-radius: var(--radius-sm);
}
.pillar-icon {
  font-size: 18px;
  line-height: 1;
}
.pillar-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}
.pillar-text strong {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}
.pillar-text span {
  font-size: 11px;
  color: var(--text-2);
}
.hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-3);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: fadeInUp 1s ease 2s both;
}
.scroll-arrow {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--text-3), transparent);
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translate(-50%, 10px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}

/* ── APP STORE BUTTON ── */
.btn-appstore {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #000;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 100px;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}
.btn-appstore:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.btn-appstore--large {
  font-size: 17px;
  padding: 18px 36px;
}
.appstore-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

/* ── STATS BAR ── */
.stats-bar {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 24px;
}
.stats-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 24px;
  flex-wrap: wrap;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}
.stat-number {
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -1px;
  background: linear-gradient(135deg, #fff, #A0AABB);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
}

/* ── SECTIONS ── */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 24px;
}
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 17px;
  color: var(--text-2);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── FEATURES GRID ── */
.features { background: var(--bg); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}
.feature-card--large {
  grid-column: span 3;
  grid-row: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 380px;
  overflow: hidden;
}
.feature-video-wrap {
  position: relative;
  overflow: hidden;
}
.feature-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.feature-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, var(--surface) 100%);
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: border-color var(--transition), transform var(--transition);
}
.feature-card:hover {
  border-color: rgba(0,122,255,0.3);
  transform: translateY(-2px);
}
.feature-card--large {
  padding: 0;
  overflow: hidden;
}
.feature-card-content {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.feature-icon-wrap {
  width: 44px;
  height: 44px;
  background: rgba(0,122,255,0.1);
  border: 1px solid rgba(0,122,255,0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--accent);
}
.feature-icon-wrap svg {
  width: 22px;
  height: 22px;
}
.feature-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.feature-desc {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.7;
}

/* ── HOW IT WORKS ── */
.how-it-works { background: var(--bg-2); }
.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}
.step {
  flex: 1;
  text-align: center;
  padding: 0 16px;
}
.step-number {
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -2px;
  background: linear-gradient(135deg, var(--accent), rgba(0,122,255,0.3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
  line-height: 1;
}
.step-title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}
.step-desc {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
}
.step-connector {
  flex-shrink: 0;
  width: 40px;
  height: 1px;
  background: var(--border);
  margin-top: 28px;
  position: relative;
}
.step-connector::after {
  content: '';
  position: absolute;
  right: -4px;
  top: -3px;
  width: 7px;
  height: 7px;
  border-top: 1px solid var(--border);
  border-right: 1px solid var(--border);
  transform: rotate(45deg);
}

/* ── PRIVACY SECTION ── */
.privacy-section { background: var(--bg); }
.privacy-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.privacy-text .section-title { text-align: left; }
.privacy-body {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: 16px;
}
.privacy-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}
.link-arrow {
  font-size: 15px;
  font-weight: 600;
  color: var(--accent);
  transition: color var(--transition);
}
.link-arrow:hover { color: var(--accent-2); }
.privacy-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.privacy-card-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  font-weight: 500;
}
.check-icon {
  width: 24px;
  height: 24px;
  background: rgba(48,209,88,0.12);
  border: 1px solid rgba(48,209,88,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--green);
  flex-shrink: 0;
}

/* ── DOWNLOAD CTA ── */
.download-section {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.download-inner {
  text-align: center;
  padding: 120px 24px;
}
.download-logo {
  width: 96px;
  height: 96px;
  border-radius: 22px;
  margin: 0 auto 32px;
  box-shadow: 0 16px 48px rgba(0,122,255,0.3);
}
.download-title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  letter-spacing: -2px;
  margin-bottom: 12px;
}
.download-subtitle {
  font-size: 18px;
  color: var(--text-2);
  margin-bottom: 40px;
}
.download-fine-print {
  margin-top: 16px;
  font-size: 13px;
  color: var(--text-3);
}

/* ── FOOTER ── */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 40px 24px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-logo {
  width: 28px;
  height: 28px;
  border-radius: 7px;
}
.footer-brand-name {
  font-size: 15px;
  font-weight: 700;
}
.footer-links {
  display: flex;
  gap: 24px;
}
.footer-link {
  font-size: 13px;
  color: var(--text-3);
  transition: color var(--transition);
}
.footer-link:hover { color: var(--text); }
.footer-copy {
  font-size: 12px;
  color: var(--text-3);
  width: 100%;
  text-align: center;
  margin-top: 8px;
}

/* ── INNER PAGE STYLES (privacy, terms, support) ── */
.page-hero {
  padding: 120px 24px 60px;
  text-align: center;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.page-hero-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 12px;
}
.page-hero-subtitle {
  font-size: 16px;
  color: var(--text-2);
}
.page-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 60px 24px 100px;
}
.page-content h2 {
  font-size: 22px;
  font-weight: 700;
  margin: 40px 0 12px;
  letter-spacing: -0.3px;
}
.page-content h3 {
  font-size: 17px;
  font-weight: 600;
  margin: 28px 0 8px;
  color: var(--text);
}
.page-content p {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: 16px;
}
.page-content ul, .page-content ol {
  padding-left: 24px;
  margin-bottom: 16px;
}
.page-content li {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: 6px;
}
.page-content a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.page-content strong {
  color: var(--text);
  font-weight: 600;
}
.page-content .last-updated {
  font-size: 13px;
  color: var(--text-3);
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

/* Support form */
.support-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  margin-top: 40px;
}
.form-group {
  margin-bottom: 20px;
}
.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: var(--font);
  font-size: 15px;
  padding: 12px 16px;
  transition: border-color var(--transition);
  outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--accent);
}
.form-textarea {
  min-height: 140px;
  resize: vertical;
}
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235A6478' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px;
  padding-right: 40px;
}
.form-submit {
  width: 100%;
  background: var(--accent);
  color: #fff;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 700;
  padding: 14px;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.form-submit:hover {
  background: var(--accent-2);
  transform: translateY(-1px);
}
.form-success {
  display: none;
  text-align: center;
  padding: 32px;
  color: var(--green);
  font-size: 16px;
  font-weight: 600;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-card--large { grid-column: span 1; grid-template-columns: 1fr; }
  .feature-video-wrap { height: 220px; }
  .feature-video-overlay { background: linear-gradient(to bottom, transparent 60%, var(--surface) 100%); }
  .steps { flex-direction: column; align-items: center; }
  .step-connector { width: 1px; height: 32px; margin: 0; }
  .step-connector::after { display: none; }
  .privacy-inner { grid-template-columns: 1fr; gap: 40px; }
  .stat-divider { display: none; }
  .footer-inner { flex-direction: column; align-items: center; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
}
@media (max-width: 600px) {
  .hero-pillars { flex-direction: column; align-items: center; }
  .pillar { width: 100%; max-width: 300px; }
  .support-form { padding: 24px; }
}
