/* © 2026 RNV-TECH LLC. All rights reserved. Unauthorized copying or distribution prohibited. */

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

:root {
  --black:   #000000;
  --gold:    #D4AF37;
  --gold-lt: #e8c84a;
  --gold-dk: #a8891e;
  --white:   #FFFFFF;
  --gray-1:  #111111;
  --gray-2:  #1a1a1a;
  --gray-4:  #888888;
  --radius:  16px;
  --radius-lg: 24px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; line-height: 1.15; }

.gold-text {
  background: linear-gradient(135deg, var(--gold-dk) 0%, var(--gold) 45%, var(--gold-lt) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

/* ── LAYOUT ── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 2rem; }
section { padding: 6rem 0; }

/* ── GOLD LINE ── */
.gold-line {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, var(--gold-dk), var(--gold-lt));
  margin: 1.5rem auto; border-radius: 2px;
}
.gold-line.left { margin-left: 0; }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-dk), var(--gold), var(--gold-lt));
  color: var(--black);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(212,175,55,0.45);
  filter: brightness(1.08);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-outline:hover {
  background: rgba(212,175,55,0.08);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212,175,55,0.15);
}

/* ── CARDS ── */
.card {
  background: var(--gray-2);
  border: 1px solid rgba(212,175,55,0.12);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  transition: var(--transition);
}
.card:hover {
  border-color: rgba(212,175,55,0.35);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.2rem 0;
  background: rgba(0,0,0,0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212,175,55,0.08);
  transition: var(--transition);
}
nav.scrolled { padding: 0.8rem 0; background: rgba(0,0,0,0.96); }

.nav-inner { display: flex; align-items: center; justify-content: space-between; }

.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo-img { height: 44px; width: auto; object-fit: contain; }

.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 0.85rem; font-weight: 500;
  letter-spacing: 0.03em;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--gold); }
.nav-cta { padding: 0.6rem 1.4rem; font-size: 0.8rem; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: var(--transition);
}
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none; flex-direction: column; gap: 0;
  padding: 1rem 0;
  border-top: 1px solid rgba(212,175,55,0.1);
  margin-top: 1rem;
}
.mobile-menu a {
  color: rgba(255,255,255,0.8); text-decoration: none;
  font-size: 0.95rem; font-weight: 500;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .btn { margin-top: 1rem; text-align: center; }

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding-top: 6rem;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(212,175,55,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(212,175,55,0.05) 0%, transparent 50%);
}
.hero-banner-bg {
  position: absolute; inset: 0;
  background-image: url('images/banner.png');
  background-size: cover; background-position: center 30%;
  opacity: 0.12;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
  position: relative; z-index: 1;
}
.hero-label {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(212,175,55,0.08);
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: 50px;
  padding: 0.4rem 1rem;
  font-size: 0.75rem; font-weight: 600;
  color: var(--gold); letter-spacing: 0.1em;
  text-transform: uppercase; margin-bottom: 1.5rem;
}
.hero-label::before {
  content: ''; width: 6px; height: 6px;
  border-radius: 50%; background: var(--gold);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.hero h1 { font-size: clamp(2.8rem, 5vw, 4.5rem); font-weight: 800; line-height: 1.1; margin-bottom: 1.5rem; }
.hero-sub { font-size: 1.15rem; color: rgba(255,255,255,0.65); line-height: 1.7; margin-bottom: 2.5rem; max-width: 480px; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-visual { position: relative; }

/* ── APP MOCKUP ── */
.app-mockup {
  background: var(--gray-2);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 28px; padding: 2rem;
  box-shadow: 0 40px 100px rgba(0,0,0,0.8), 0 0 0 1px rgba(212,175,55,0.05), inset 0 1px 0 rgba(255,255,255,0.05);
}
.app-mockup::before {
  content: ''; position: absolute;
  top: -1px; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.mockup-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 1px solid rgba(255,255,255,0.06); }
.mockup-icon { width: 40px; height: 40px; background: linear-gradient(135deg, var(--gold-dk), var(--gold)); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.mockup-icon svg { width: 21px; height: 21px; color: var(--black); }
.mockup-title { font-weight: 600; font-size: 0.9rem; }
.mockup-sub { font-size: 0.7rem; color: var(--gray-4); }
.voice-wave { display: flex; align-items: center; gap: 4px; justify-content: center; margin: 1.5rem 0; }
.wave-bar { width: 4px; background: linear-gradient(to top, var(--gold-dk), var(--gold)); border-radius: 4px; animation: wave 1.2s ease-in-out infinite; }
.wave-bar:nth-child(1)  { height: 16px; animation-delay: 0s; }
.wave-bar:nth-child(2)  { height: 28px; animation-delay: 0.1s; }
.wave-bar:nth-child(3)  { height: 40px; animation-delay: 0.2s; }
.wave-bar:nth-child(4)  { height: 52px; animation-delay: 0.3s; }
.wave-bar:nth-child(5)  { height: 36px; animation-delay: 0.4s; }
.wave-bar:nth-child(6)  { height: 48px; animation-delay: 0.5s; }
.wave-bar:nth-child(7)  { height: 60px; animation-delay: 0.6s; }
.wave-bar:nth-child(8)  { height: 44px; animation-delay: 0.7s; }
.wave-bar:nth-child(9)  { height: 32px; animation-delay: 0.8s; }
.wave-bar:nth-child(10) { height: 20px; animation-delay: 0.9s; }
.wave-bar:nth-child(11) { height: 40px; animation-delay: 1.0s; }
.wave-bar:nth-child(12) { height: 28px; animation-delay: 1.1s; }
@keyframes wave {
  0%, 100% { transform: scaleY(0.5); opacity: 0.6; }
  50% { transform: scaleY(1); opacity: 1; }
}
.mockup-output { background: rgba(0,0,0,0.4); border: 1px solid rgba(212,175,55,0.1); border-radius: 12px; padding: 1rem; margin-top: 1rem; }
.mockup-output-label { font-size: 0.65rem; font-weight: 600; color: var(--gold); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.5rem; }
.mockup-pill { display: inline-flex; align-items: center; gap: 0.35rem; background: rgba(212,175,55,0.12); border: 1px solid rgba(212,175,55,0.2); color: var(--gold); font-size: 0.7rem; font-weight: 500; padding: 0.25rem 0.7rem; border-radius: 50px; margin: 0.2rem 0.2rem 0.2rem 0; }
.mockup-pill svg { width: 13px; height: 13px; flex-shrink: 0; }

/* ── SECTION HEADER ── */
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header h2 { font-size: clamp(2rem, 3.5vw, 3rem); margin-bottom: 1rem; }
.section-header p { color: rgba(255,255,255,0.6); max-width: 560px; margin: 0 auto; line-height: 1.8; }

/* ── ABOUT ── */
#about { background: var(--gray-1); border-top: 1px solid rgba(212,175,55,0.08); border-bottom: 1px solid rgba(212,175,55,0.08); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-text h2 { font-size: clamp(2rem, 3.5vw, 2.8rem); margin-bottom: 1.5rem; }
.about-text p { color: rgba(255,255,255,0.65); line-height: 1.8; margin-bottom: 1.25rem; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.stat-card { background: var(--gray-2); border: 1px solid rgba(212,175,55,0.12); border-radius: var(--radius); padding: 1.75rem; text-align: center; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 700; background: linear-gradient(135deg, var(--gold-dk), var(--gold-lt)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-label { font-size: 0.75rem; color: var(--gray-4); font-weight: 500; margin-top: 0.25rem; }

/* ── MYSECRETARY ── */
.app-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(212,175,55,0.1); border: 1px solid rgba(212,175,55,0.3); border-radius: 50px; padding: 0.4rem 1rem; font-size: 0.7rem; font-weight: 700; color: var(--gold); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 1.25rem; }
.app-badge svg { width: 15px; height: 15px; }
.app-hero-card { background: linear-gradient(135deg, #111 0%, #1a1a1a 50%, #111 100%); border: 1px solid rgba(212,175,55,0.25); border-radius: 32px; padding: 4rem; margin-bottom: 3rem; position: relative; overflow: hidden; }
.app-hero-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.app-hero-card::after { content: ''; position: absolute; bottom: -100px; right: -100px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(212,175,55,0.06) 0%, transparent 70%); border-radius: 50%; }
.app-hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; position: relative; z-index: 1; }
.app-hero-card h2 { font-size: clamp(2rem, 3vw, 3rem); margin-bottom: 1rem; }
.app-hero-card p { color: rgba(255,255,255,0.65); line-height: 1.8; margin-bottom: 2rem; }
.feature-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2rem; }
.feature-tag { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: 50px; padding: 0.35rem 0.9rem; font-size: 0.75rem; color: rgba(255,255,255,0.7); font-weight: 500; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.feature-card { background: var(--gray-2); border: 1px solid rgba(212,175,55,0.1); border-radius: var(--radius); padding: 2rem; transition: var(--transition); }
.feature-card:hover { border-color: rgba(212,175,55,0.3); transform: translateY(-3px); box-shadow: 0 16px 48px rgba(0,0,0,0.5); }
.feature-icon { width: 48px; height: 48px; background: linear-gradient(135deg, rgba(212,175,55,0.15), rgba(212,175,55,0.05)); border: 1px solid rgba(212,175,55,0.2); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; margin-bottom: 1.25rem; color: var(--gold); }
.feature-icon svg { width: 24px; height: 24px; }
.feature-card h4 { font-family: 'Inter', sans-serif; font-size: 0.9rem; font-weight: 600; margin-bottom: 0.5rem; }
.feature-card p { font-size: 0.82rem; color: rgba(255,255,255,0.55); line-height: 1.6; }

/* ── AUDIENCE ── */
#audience { background: var(--gray-1); border-top: 1px solid rgba(212,175,55,0.08); }
.audience-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; margin-top: 3rem; }
.audience-card { background: var(--gray-2); border: 1px solid rgba(212,175,55,0.1); border-radius: var(--radius); padding: 1.75rem 1.25rem; text-align: center; transition: var(--transition); cursor: default; }
.audience-card:hover { border-color: var(--gold); background: rgba(212,175,55,0.05); transform: translateY(-4px); }
.audience-icon { color: var(--gold); margin-bottom: 0.85rem; display: flex; justify-content: center; }
.audience-icon svg { width: 34px; height: 34px; }
.audience-card h4 { font-family: 'Inter', sans-serif; font-size: 0.8rem; font-weight: 600; color: rgba(255,255,255,0.85); }
.value-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 2rem; margin-top: 4rem; }
.value-item { text-align: center; }
.value-number { font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 800; background: linear-gradient(135deg, var(--gold-dk), var(--gold-lt)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; display: block; }
.value-desc { font-size: 0.85rem; color: rgba(255,255,255,0.55); margin-top: 0.25rem; }

/* ── LAUNCH CTA ── */
#cta { background: var(--black); position: relative; overflow: hidden; }
#cta::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 50% at 50% 50%, rgba(212,175,55,0.07) 0%, transparent 65%); }
.cta-card { background: var(--gray-2); border: 1px solid rgba(212,175,55,0.25); border-radius: 32px; padding: 5rem 4rem; text-align: center; position: relative; z-index: 1; }
.cta-card::before { content: ''; position: absolute; top: 0; left: 10%; right: 10%; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.cta-badge { display: inline-flex; align-items: center; gap: 0.6rem; background: rgba(212,175,55,0.1); border: 1px solid rgba(212,175,55,0.3); border-radius: 50px; padding: 0.5rem 1.25rem; font-size: 0.75rem; font-weight: 700; color: var(--gold); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 2rem; }
.cta-badge svg { width: 16px; height: 16px; }
.cta-card h2 { font-size: clamp(2rem, 4vw, 3.5rem); margin-bottom: 1.25rem; }
.cta-card p { color: rgba(255,255,255,0.65); max-width: 560px; margin: 0 auto 2.5rem; line-height: 1.8; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── WHATS NEXT ── */
#whats-next { background: var(--gray-1); border-top: 1px solid rgba(212,175,55,0.08); }
.suite-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; margin-bottom: 4rem; }
.suite-text h2 { font-size: clamp(2rem, 3.5vw, 2.8rem); margin-bottom: 1.25rem; }
.suite-text p { color: rgba(255,255,255,0.65); line-height: 1.8; margin-bottom: 1.5rem; }
.suite-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.suite-card { background: var(--gray-2); border: 1px solid rgba(212,175,55,0.08); border-radius: var(--radius); padding: 2rem; transition: var(--transition); }
.suite-card.flagship { border-color: rgba(212,175,55,0.3); }
.suite-card:hover { border-color: rgba(212,175,55,0.25); transform: translateY(-3px); }
.suite-card-badge { display: inline-block; font-size: 0.6rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.2rem 0.6rem; border-radius: 50px; margin-bottom: 1rem; }
.badge-live { background: rgba(212,175,55,0.15); color: var(--gold); border: 1px solid rgba(212,175,55,0.3); }
.badge-soon { background: rgba(255,255,255,0.06); color: var(--gray-4); border: 1px solid rgba(255,255,255,0.1); }
.suite-card h4 { font-family: 'Inter', sans-serif; font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.suite-card p { font-size: 0.8rem; color: rgba(255,255,255,0.5); line-height: 1.6; }
.suite-icon { color: var(--gold); margin-bottom: 1rem; }
.suite-icon svg { width: 30px; height: 30px; }

/* ── FOUNDER ── */
#founder { background: var(--black); }
.founder-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.founder-portrait { display: flex; justify-content: center; }
.portrait-wrapper { position: relative; width: 280px; }
.portrait-ring { width: 280px; height: 280px; border-radius: 50%; background: linear-gradient(135deg, var(--gold-dk), var(--gold), var(--gold-lt)); padding: 3px; box-shadow: 0 0 60px rgba(212,175,55,0.25), 0 24px 60px rgba(0,0,0,0.7); }
.portrait-inner { width: 100%; height: 100%; border-radius: 50%; background: var(--gray-2); overflow: hidden; }
.portrait-inner img { width: 100%; height: 100%; object-fit: cover; object-position: center top; border-radius: 50%; }
.portrait-badge { position: absolute; bottom: 10px; right: -10px; background: var(--gray-1); border: 1px solid rgba(212,175,55,0.3); border-radius: 12px; padding: 0.6rem 1rem; text-align: center; }
.portrait-badge-name { font-size: 0.75rem; font-weight: 700; color: var(--white); }
.portrait-badge-role { font-size: 0.65rem; color: var(--gold); font-weight: 500; }
.founder-text h2 { font-size: clamp(2rem, 3vw, 2.8rem); margin-bottom: 1.25rem; }
.founder-text p { color: rgba(255,255,255,0.65); line-height: 1.8; margin-bottom: 1.25rem; }
.founder-quote { background: var(--gray-2); border-left: 3px solid var(--gold); border-radius: 0 12px 12px 0; padding: 1.5rem 2rem; margin: 2rem 0; font-family: 'Playfair Display', serif; font-size: 1.1rem; font-style: italic; color: rgba(255,255,255,0.85); line-height: 1.7; }

/* ── LAUNCH ── */
#launch { background: var(--gray-1); border-top: 1px solid rgba(212,175,55,0.08); }
.launch-card { background: var(--gray-2); border: 1px solid rgba(212,175,55,0.2); border-radius: 32px; padding: 5rem 4rem; text-align: center; position: relative; overflow: hidden; }
.launch-card::before { content: ''; position: absolute; top: 0; left: 10%; right: 10%; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.launch-card h2 { font-size: clamp(2rem, 3.5vw, 3rem); margin-bottom: 1rem; }
.launch-card p { color: rgba(255,255,255,0.6); max-width: 520px; margin: 0 auto 2.5rem; line-height: 1.8; }
.signup-form { display: flex; max-width: 500px; margin: 0 auto; background: rgba(0,0,0,0.5); border: 1.5px solid rgba(212,175,55,0.25); border-radius: 50px; padding: 4px; transition: border-color var(--transition); }
.signup-form:focus-within { border-color: var(--gold); }
.signup-form input { flex: 1; background: transparent; border: none; outline: none; padding: 0.85rem 1.25rem; color: var(--white); font-family: 'Inter', sans-serif; font-size: 0.9rem; }
.signup-form input::placeholder { color: var(--gray-4); }
.signup-form button { padding: 0.75rem 1.75rem; border-radius: 50px; font-size: 0.85rem; white-space: nowrap; }
.launch-perks { display: flex; justify-content: center; gap: 2rem; margin-top: 2rem; flex-wrap: wrap; }
.perk { display: flex; align-items: center; gap: 0.4rem; font-size: 0.8rem; color: rgba(255,255,255,0.5); }
.perk::before { content: '✓'; color: var(--gold); font-weight: 700; }

/* ── CONTACT ── */
#contact { background: var(--black); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.contact-info h2 { font-size: clamp(2rem, 3vw, 2.8rem); margin-bottom: 1.25rem; }
.contact-info p { color: rgba(255,255,255,0.65); line-height: 1.8; margin-bottom: 2rem; }
.contact-links { display: flex; flex-direction: column; gap: 1rem; }
.contact-link { display: flex; align-items: center; gap: 1rem; text-decoration: none; color: rgba(255,255,255,0.75); font-size: 0.9rem; transition: color var(--transition); padding: 0.5rem 0; }
.contact-link:hover { color: var(--gold); }
.contact-link-icon { width: 40px; height: 40px; background: var(--gray-2); border: 1px solid rgba(212,175,55,0.15); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1rem; }
.contact-form-wrap { display: flex; flex-direction: column; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.form-label { font-size: 0.75rem; font-weight: 600; color: var(--gray-4); letter-spacing: 0.05em; }
.form-input { background: var(--gray-2); border: 1px solid rgba(212,175,55,0.12); border-radius: 12px; padding: 0.9rem 1.2rem; color: var(--white); font-family: 'Inter', sans-serif; font-size: 0.9rem; outline: none; transition: border-color var(--transition); }
.form-input:focus { border-color: rgba(212,175,55,0.4); }
.form-input::placeholder { color: var(--gray-4); }
textarea.form-input { resize: vertical; min-height: 120px; }

/* ── FOOTER ── */
footer { background: var(--gray-1); border-top: 1px solid rgba(212,175,55,0.12); padding: 3rem 0; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 2rem; }
.footer-brand { display: flex; flex-direction: column; gap: 0.25rem; }
.footer-logo-img { height: 52px; width: auto; object-fit: contain; margin-bottom: 0.25rem; }
.page-hero-logo { height: clamp(130px, 18vw, 190px); width: auto; display: block; margin: 0 auto 1.5rem; }
.story-content { max-width: 780px; margin: 0 auto; }
.story-content p { color: rgba(255,255,255,0.7); line-height: 1.9; margin-bottom: 1.6rem; font-size: 1.05rem; }
.story-callout { font-family: 'Playfair Display', serif; font-size: clamp(1.4rem, 2.5vw, 1.8rem); font-weight: 700; color: var(--gold); line-height: 1.5; margin: 2.5rem 0; padding-left: 1.5rem; border-left: 2px solid var(--gold); }
.suite-logo { height: clamp(110px, 15vw, 160px); width: auto; display: block; margin: 0 auto 1.25rem; }
.footer-tagline { font-size: 0.75rem; color: var(--gray-4); font-style: italic; }
.footer-email { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-top: 0.25rem; }
.footer-email a { color: var(--gold); text-decoration: none; }
.footer-email a:hover { text-decoration: underline; }
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-links a { font-size: 0.8rem; color: rgba(255,255,255,0.45); text-decoration: none; transition: color var(--transition); }
.footer-links a:hover { color: var(--gold); }
.footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.25); }
.footer-social { display: flex; gap: 0.85rem; margin-top: 0.75rem; }
.footer-social a { display: flex; align-items: center; justify-content: center; width: 34px; height: 34px; border: 1px solid rgba(212,175,55,0.25); border-radius: 9px; color: rgba(255,255,255,0.55); transition: color var(--transition), border-color var(--transition); }
.footer-social a:hover { color: var(--gold); border-color: var(--gold); }
.footer-social .social-svg { width: 17px; height: 17px; }
.contact-link-icon .social-svg { width: 19px; height: 19px; }

/* ── FADE IN ── */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── UTILITY ── */
.mt-2 { margin-top: 1rem; }
.page-hero { min-height: 40vh; display: flex; align-items: flex-end; padding: 8rem 0 4rem; position: relative; overflow: hidden; background: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(212,175,55,0.1) 0%, transparent 60%); }
.page-hero h1 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800; margin-bottom: 1rem; }
.page-hero p { color: rgba(255,255,255,0.6); font-size: 1.1rem; max-width: 560px; line-height: 1.7; }

/* ── LEGAL PAGES (Privacy & Terms) ── */
.legal-tabs {
  display: flex; gap: 1rem; flex-wrap: wrap;
  margin-bottom: 3rem;
}
.legal-tab {
  display: inline-block;
  padding: 0.7rem 1.6rem;
  border-radius: 50px;
  font-size: 0.85rem; font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: rgba(255,255,255,0.7);
  background: var(--gray-2);
  border: 1px solid rgba(212,175,55,0.15);
  transition: var(--transition);
}
.legal-tab:hover, .legal-tab.active {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(212,175,55,0.06);
}
.legal-card {
  background: var(--gray-2);
  border: 1px solid rgba(212,175,55,0.15);
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  position: relative;
  overflow: hidden;
  margin-bottom: 3rem;
}
.legal-card::before {
  content: ''; position: absolute;
  top: 0; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.legal-updated {
  display: inline-block;
  background: rgba(212,175,55,0.08);
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: 50px;
  padding: 0.35rem 1rem;
  font-size: 0.72rem; font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 2rem;
}
.legal-card h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 0.5rem;
}
.legal-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem; font-weight: 700;
  color: var(--gold);
  margin: 2.5rem 0 0.75rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.legal-card h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem; font-weight: 600;
  color: rgba(255,255,255,0.9);
  margin: 1.5rem 0 0.5rem;
}
.legal-card p {
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  font-size: 0.92rem;
  margin-bottom: 1rem;
}
.legal-card ul {
  list-style: none;
  margin: 0.75rem 0 1.25rem;
}
.legal-card ul li {
  color: rgba(255,255,255,0.65);
  font-size: 0.92rem;
  line-height: 1.8;
  padding-left: 1.4rem;
  position: relative;
  margin-bottom: 0.4rem;
}
.legal-card ul li::before {
  content: '◆';
  position: absolute; left: 0;
  color: var(--gold);
  font-size: 0.6rem;
  top: 0.45rem;
}
.legal-card a { color: var(--gold); text-decoration: none; }
.legal-card a:hover { text-decoration: underline; }
.legal-card strong { color: rgba(255,255,255,0.9); }
.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.25rem 0 1.5rem;
  font-size: 0.88rem;
}
.legal-table th {
  text-align: left;
  background: rgba(212,175,55,0.08);
  color: var(--gold);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.85rem 1.2rem;
  border: 1px solid rgba(212,175,55,0.15);
}
.legal-table td {
  padding: 0.85rem 1.2rem;
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}
.legal-note {
  background: rgba(212,175,55,0.05);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  font-style: italic;
  line-height: 1.7;
  margin-top: 2rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
}
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .about-grid, .suite-intro, .founder-grid, .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .audience-grid { grid-template-columns: repeat(3, 1fr); }
  .app-hero-inner { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  section { padding: 4rem 0; }
  .feature-grid { grid-template-columns: 1fr; }
  .suite-grid { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: 1fr 1fr; }
  .value-row { grid-template-columns: 1fr; gap: 1.5rem; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .cta-card, .launch-card { padding: 3rem 2rem; }
  .app-hero-card { padding: 2.5rem; }
  .signup-form { border-radius: 16px; flex-direction: column; gap: 0.5rem; }
  .signup-form button { border-radius: 12px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-brand { align-items: center; }
  .footer-links { justify-content: center; }
  .footer-social { justify-content: center; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; }
  .portrait-wrapper { width: 220px; }
  .portrait-ring { width: 220px; height: 220px; }
  .portrait-inner img { object-position: center 15%; }
  .cta-actions { flex-direction: column; align-items: center; }
  .legal-card { padding: 2rem 1.5rem; }
  .legal-table { display: block; overflow-x: auto; }
}
@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .audience-grid { grid-template-columns: 1fr 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
}
