/* ============================================
   Klluster Landing Page Styles
   ============================================ */

:root {
  --color-bg: #ffffff;
  --color-surface: #f8fafc;
  --color-text: #0f172a;
  --color-text-muted: #475569;
  --color-primary: #4f46e5;
  --color-primary-dark: #4338ca;
  --color-accent: #ec4899;
  --color-border: #e2e8f0;
  --radius: 1rem;
  --radius-lg: 1.5rem;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-transform: none;
}

/* Preserve casing on URLs, emails, code, and address strings */
a[href^="http"],
a[href^="mailto:"],
a[href^="tel:"],
code,
pre,
.preserve-case {
  text-transform: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}

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

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  letter-spacing: -0.02em;
}

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

.nav-links a {
  text-decoration: none;
  color: var(--color-text);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  transition: var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

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

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: var(--transition);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 8rem 0 6rem;
  background: radial-gradient(ellipse at top, #eef2ff 0%, #ffffff 60%);
}

.hero-shape {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.15), rgba(236, 72, 153, 0.1));
  border-radius: 50%;
  filter: blur(60px);
  animation: float 8s ease-in-out infinite;
}

.hero-shape-2 {
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.1), rgba(79, 70, 229, 0.15));
  border-radius: 50%;
  filter: blur(60px);
  animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-20px) scale(1.05); }
}

.hero-title {
  font-size: clamp(1.5rem, 3.4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.gradient-text {
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  color: white;
  box-shadow: 0 4px 14px rgba(79, 70, 229, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(79, 70, 229, 0.45);
}

.btn-secondary {
  background: white;
  color: var(--color-text);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: var(--color-surface);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-large {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

/* Section titles */
.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.section-subtitle {
  text-align: center;
  color: var(--color-text-muted);
  max-width: 500px;
  margin: 0 auto 3rem;
  font-size: 1.05rem;
}

/* Features */
.features {
  padding: 6rem 0;
  background: var(--color-surface);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--color-border);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.feature-card p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* About */
.about {
  padding: 6rem 0;
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-content p {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.about-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 500;
}

.about-list li::before {
  content: '';
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(79, 70, 229, 0.3);
}

/* Phone mockup */
.phone-mockup {
  background: linear-gradient(135deg, #1e1b4b, #312e81);
  border-radius: 2.5rem;
  padding: 1rem;
  box-shadow: var(--shadow-xl);
  max-width: 320px;
  margin: 0 auto;
  transform: rotate(-3deg);
  transition: var(--transition);
}

.phone-mockup:hover {
  transform: rotate(0deg) scale(1.02);
}

.phone-screen {
  background: #0f172a;
  border-radius: 1.75rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-height: 400px;
  justify-content: flex-end;
}

.chat-bubble {
  padding: 0.75rem 1rem;
  border-radius: 1rem;
  font-size: 0.9rem;
  max-width: 85%;
  animation: popIn 0.5s ease-out both;
}

.chat-bubble.left {
  background: #1e293b;
  color: #e2e8f0;
  align-self: flex-start;
  border-bottom-left-radius: 0.25rem;
}

.chat-bubble.right {
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  color: white;
  align-self: flex-end;
  border-bottom-right-radius: 0.25rem;
}

@keyframes popIn {
  from { opacity: 0; transform: translateY(10px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* CTA Section */
.cta-section {
  padding: 6rem 0;
  text-align: center;
  background: linear-gradient(135deg, #eef2ff 0%, #fdf2f8 100%);
}

.cta-section h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.cta-section p {
  color: var(--color-text-muted);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

/* Footer */
.footer {
  background: var(--color-text);
  color: #94a3b8;
  padding: 2.6rem 0 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 1.6rem;
}

.footer-brand .logo {
  -webkit-text-fill-color: white;
  margin-bottom: 0.5rem;
  display: inline-block;
}

.footer-links h4 {
  color: white;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid #334155;
  padding-top: 0.9rem;
  text-align: center;
  font-size: 0.9rem;
}

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  color: white;
  border: none;
  font-size: 1.25rem;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(79, 70, 229, 0.35);
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* Legal pages */
.legal-page {
  padding-top: 80px;
}

.legal-content {
  padding: 3rem 0 5rem;
}

.legal-article {
  max-width: 800px;
  margin: 0 auto;
}

.legal-article h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--color-border);
}

.legal-article h2 {
  font-size: 1.35rem;
  font-weight: 600;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--color-primary);
}

.legal-article h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.legal-article p {
  margin-bottom: 1rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.legal-article ul {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.legal-article li {
  margin-bottom: 0.5rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.legal-article blockquote {
  border-left: 4px solid var(--color-primary);
  padding-left: 1rem;
  margin: 1.5rem 0;
  color: var(--color-text-muted);
  font-style: italic;
}

.legal-article hr {
  border: none;
  border-top: 1px solid var(--color-border);
  margin: 2rem 0;
}

.legal-article a {
  color: var(--color-primary);
  text-decoration: none;
}

.legal-article a:hover {
  text-decoration: underline;
}

.legal-article strong {
  color: var(--color-text);
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: white;
    flex-direction: column;
    padding: 6rem 2rem 2rem;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
    z-index: 999;
  }

  .nav-links.open {
    right: 0;
  }

  .mobile-menu-btn {
    display: flex;
    z-index: 1001;
  }

  .mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .about-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 280px;
  }
}

:root {
  --ink: #070706;
  --ink-soft: #12110d;
  --ink-card: rgba(19, 17, 11, 0.78);
  --gold: #f6d461;
  --gold-deep: #c99a2e;
  --gold-soft: #fff0b8;
  --cream: #fff8df;
  --muted-gold: #b9a870;
  --line-gold: rgba(246, 212, 97, 0.18);
  --glass: rgba(255, 255, 255, 0.08);
  --glass-strong: rgba(255, 255, 255, 0.13);
  --premium-shadow: 0 32px 90px rgba(0, 0, 0, 0.48);
  --gold-shadow: 0 18px 50px rgba(246, 212, 97, 0.18);
}

body.home-page {
  background:
    radial-gradient(circle at 20% 5%, rgba(246, 212, 97, 0.18), transparent 28rem),
    radial-gradient(circle at 88% 15%, rgba(201, 154, 46, 0.16), transparent 24rem),
    linear-gradient(180deg, #050504 0%, #0c0b08 42%, #11100c 100%);
  color: var(--cream);
  overflow-x: hidden;
}

.home-page::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent 86%);
}

.page-glow {
  position: fixed;
  width: 30rem;
  height: 30rem;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(80px);
  opacity: 0.44;
  z-index: -1;
}

.page-glow-one {
  top: -7rem;
  left: -8rem;
  background: rgba(246, 212, 97, 0.42);
}

.page-glow-two {
  right: -10rem;
  bottom: 8rem;
  background: rgba(201, 154, 46, 0.32);
}

.home-page .container {
  max-width: 1180px;
}

.home-page .navbar {
  padding: 1.1rem 0;
}

.home-page .navbar.scrolled,
.legal-page .navbar.scrolled,
.legal-page .navbar {
  background: rgba(7, 7, 6, 0.78);
  border-bottom: 1px solid var(--line-gold);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
}

.home-page .navbar.scrolled,
.legal-page .navbar.scrolled {
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.brand,
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--cream);
  font-size: 1.28rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  text-decoration: none;
  background: none;
  -webkit-text-fill-color: currentColor;
}

.brand-icon {
  width: 2.45rem;
  height: 2.45rem;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(246, 212, 97, 0.34), 0 10px 32px rgba(246, 212, 97, 0.19);
}

.home-page .nav-container {
  position: relative;
  gap: 0.55rem;
  max-width: none;
  padding: 0 1.5rem;
}

.home-page .nav-links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.6rem 0.7rem;
  gap: 0.3rem;
  border: 1px solid var(--line-gold);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.nav-trust {
  display: inline-flex;
  align-items: center;
  gap: 0.48rem;
  min-width: 0;
  padding: 0.45rem 0.7rem;
  border: 1px solid rgba(246, 212, 97, 0.28);
  border-radius: 999px;
  background: rgba(7, 7, 6, 0.82);
  color: rgba(255, 248, 223, 0.88);
  font-size: 0.76rem;
  font-weight: 900;
  white-space: nowrap;
  margin-right: auto;
  z-index: 5;
}

.nav-trust strong {
  color: var(--gold);
}

.nav-trust .india-flag {
  width: 1.7rem;
  height: 1.06rem;
}

.home-page .nav-links a,
.legal-page .nav-links a {
  color: rgba(255, 248, 223, 0.78);
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  font-size: 0.86rem;
}

.home-page .nav-links a::after,
.legal-page .nav-links a::after {
  display: none;
}

.home-page .nav-links a:hover,
.legal-page .nav-links a:hover {
  color: var(--gold);
  background: rgba(246, 212, 97, 0.09);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.7rem;
  padding: 0 1.1rem;
  border: 1px solid rgba(246, 212, 97, 0.3);
  border-radius: 999px;
  color: var(--ink);
  background: linear-gradient(135deg, var(--gold-soft), var(--gold), var(--gold-deep));
  font-weight: 800;
  font-size: 0.88rem;
  text-decoration: none;
  box-shadow: var(--gold-shadow);
  transition: var(--transition);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 62px rgba(246, 212, 97, 0.25);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  position: relative;
  z-index: 2;
}

.nav-cta-disabled {
  position: relative;
  cursor: not-allowed;
  color: rgba(255, 248, 223, 0.74);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.nav-cta-disabled:hover {
  transform: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.nav-cta-disabled::after,
.btn-disabled::after {
  content: attr(data-tooltip);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 0.7rem);
  z-index: 20;
  padding: 0.42rem 0.65rem;
  border: 1px solid rgba(246, 212, 97, 0.22);
  border-radius: 999px;
  color: var(--gold);
  background: rgba(7, 7, 6, 0.92);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 0.35rem);
  transition: var(--transition);
}

.nav-cta-disabled::after {
  top: calc(100% + 0.7rem);
  bottom: auto;
}

.nav-cta-disabled:hover::after,
.btn-disabled:hover::after {
  opacity: 1;
  transform: translate(-50%, 0);
}

.home-page .mobile-menu-btn span,
.legal-page .mobile-menu-btn span {
  background: var(--gold);
}

.home-page .hero {
  min-height: auto;
  padding: 6.2rem 0 4rem;
  text-align: left;
  background: transparent;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 4.6rem;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-trust {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1rem;
  padding: 0.58rem 0.82rem;
  border: 1px solid rgba(246, 212, 97, 0.24);
  border-radius: 999px;
  background: rgba(246, 212, 97, 0.08);
  color: rgba(255, 248, 223, 0.72);
  font-size: 0.82rem;
  font-weight: 800;
}

.hero-trust strong {
  color: var(--gold);
}

.hero-trust span {
  color: rgba(255, 248, 223, 0.66);
}

.india-flag {
  position: relative;
  width: 2.45rem;
  height: 1.55rem;
  flex: 0 0 auto;
  border-radius: 0.18rem;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
  transform-origin: left center;
  animation: flagWave 1.8s ease-in-out infinite;
}

.india-flag svg {
  width: 100%;
  height: 100%;
  display: block;
}

.india-flag::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.16), transparent 28%, rgba(0, 0, 0, 0.12) 52%, transparent 76%);
  animation: flagLight 1.8s ease-in-out infinite;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow {
  padding: 0.6rem 0.8rem;
  border: 1px solid var(--line-gold);
  border-radius: 999px;
  background: rgba(246, 212, 97, 0.07);
}

.eyebrow span {
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 22px var(--gold);
}

.home-page .hero-title {
  max-width: 760px;
  margin: 1.35rem 0 1.35rem;
  font-size: clamp(2.8rem, 6.4vw, 5.8rem);
  line-height: 0.96;
  letter-spacing: -0.065em;
  color: transparent;
  background: linear-gradient(135deg, var(--cream) 0%, #f7d565 48%, #fff8df 100%);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: 0 1.2rem 3rem rgba(246, 212, 97, 0.2);
  text-wrap: balance;
}

.home-page .hero-subtitle {
  max-width: 660px;
  margin: 0 0 2.1rem;
  color: rgba(255, 248, 223, 0.68);
  font-size: clamp(1.03rem, 1.7vw, 1.28rem);
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.95rem;
  align-items: center;
}

.home-page .btn {
  min-height: 3.4rem;
  padding: 0 1.55rem;
  border-radius: 999px;
  font-size: 0.96rem;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.home-page .btn-primary {
  color: #050504;
  background: linear-gradient(135deg, var(--gold-soft) 0%, var(--gold) 46%, var(--gold-deep) 100%);
  box-shadow: 0 22px 55px rgba(246, 212, 97, 0.22);
}

.home-page .btn-primary:hover {
  box-shadow: 0 28px 72px rgba(246, 212, 97, 0.32);
}

.home-page .btn-secondary {
  color: var(--cream);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--line-gold);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.home-page .btn-secondary:hover {
  background: rgba(246, 212, 97, 0.09);
}

.store-icon {
  width: 1.28rem;
  height: 1.28rem;
  flex: 0 0 auto;
}

.play-store-icon,
.app-store-icon {
  width: 1.42rem;
  height: 1.42rem;
}

.nav-cta .store-icon,
.btn .store-icon {
  margin-right: 0.56rem;
}

.home-page .btn-disabled {
  position: relative;
  cursor: not-allowed;
  opacity: 0.62;
}

.home-page .btn-disabled:hover {
  transform: none;
  background: rgba(255, 255, 255, 0.055);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
  max-width: 520px;
  margin-top: 1.8rem;
}

.hero-proof div {
  padding: 0.6rem 0.75rem;
  border: 1px solid var(--line-gold);
  border-radius: 0.9rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
}

.hero-proof strong,
.hero-proof span {
  display: block;
}

.hero-proof strong {
  color: var(--cream);
  font-size: 0.8rem;
  letter-spacing: 0.02em;
}

.hero-proof span {
  margin-top: 0.15rem;
  color: rgba(255, 248, 223, 0.55);
  font-size: 0.68rem;
  line-height: 1.25;
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 620px;
  perspective: 1100px;
}

.app-orbit {
  position: absolute;
  width: min(38vw, 30rem);
  height: min(38vw, 30rem);
  min-width: 18rem;
  min-height: 18rem;
}

.app-orbit::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(246, 212, 97, 0.12);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(246, 212, 97, 0.12), transparent 58%),
    conic-gradient(from 120deg, transparent, rgba(246, 212, 97, 0.28), transparent, rgba(255, 255, 255, 0.08), transparent);
  animation: slowSpin 24s linear infinite;
}

.app-showcase {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9.4rem;
  height: 9.4rem;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(246, 212, 97, 0.23);
  box-shadow: 0 28px 88px rgba(0, 0, 0, 0.42);
}

.showcase-icon {
  width: 7.3rem;
  height: 7.3rem;
  object-fit: cover;
  border-radius: 50%;
  position: relative;
  z-index: 2;
}

.showcase-pulse {
  position: absolute;
  inset: 1.2rem;
  border-radius: 50%;
  border: 1px solid rgba(246, 212, 97, 0.35);
  animation: pulseRing 2.8s ease-out infinite;
}

.phone-shell {
  position: relative;
  width: min(82vw, 22rem);
  padding: 0.82rem;
  border-radius: 2.6rem;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.28), rgba(246, 212, 97, 0.12) 26%, rgba(0, 0, 0, 0.85) 52%),
    #090806;
  border: 1px solid rgba(246, 212, 97, 0.28);
  box-shadow: var(--premium-shadow), inset 0 1px 0 rgba(255, 255, 255, 0.24);
  transform: rotateY(-11deg) rotateX(5deg) rotateZ(1deg);
  z-index: 2;
}

.phone-top {
  position: absolute;
  top: 1.35rem;
  left: 50%;
  width: 5rem;
  height: 1.05rem;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #070706;
  z-index: 4;
}

.home-page .phone-screen {
  min-height: 34rem;
  padding: 0;
  border-radius: 2rem;
  background: #070706;
  border: 1px solid rgba(246, 212, 97, 0.12);
  overflow: hidden;
}

.hero-screenshot {
  width: 100%;
  height: 100%;
  min-height: 34rem;
  border-radius: 1.88rem;
  display: block;
  object-fit: cover;
  object-position: top center;
}

.screen-header,
.feed-author,
.dashboard-profile {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.screen-header img,
.dashboard-profile img {
  width: 2.45rem;
  height: 2.45rem;
  border-radius: 50%;
  object-fit: cover;
}

.screen-header strong,
.dashboard-profile strong {
  display: block;
  color: var(--cream);
  font-size: 0.94rem;
}

.screen-header span,
.dashboard-profile span {
  display: block;
  color: rgba(255, 248, 223, 0.5);
  font-size: 0.73rem;
}

.story-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.7rem;
}

.story-row div {
  aspect-ratio: 1;
  border-radius: 1rem;
  background: linear-gradient(145deg, rgba(246, 212, 97, 0.95), rgba(201, 154, 46, 0.36));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.feed-card {
  padding: 1rem;
  border: 1px solid var(--line-gold);
  border-radius: 1.35rem;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.feed-author span {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
}

.feed-author strong,
.feed-author small {
  display: block;
}

.feed-author strong {
  color: var(--cream);
  font-size: 0.84rem;
}

.feed-author small {
  color: rgba(255, 248, 223, 0.45);
  font-size: 0.68rem;
}

.feed-card p {
  margin: 0.85rem 0;
  color: rgba(255, 248, 223, 0.72);
  font-size: 0.8rem;
  line-height: 1.55;
}

.feed-media {
  height: 7rem;
  border-radius: 1rem;
  background:
    radial-gradient(circle at 25% 30%, rgba(255, 248, 223, 0.42), transparent 2.5rem),
    linear-gradient(135deg, rgba(246, 212, 97, 0.8), rgba(69, 50, 12, 0.58), rgba(255, 255, 255, 0.08));
}

.message-stack {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.home-page .message {
  width: fit-content;
  max-width: 88%;
  padding: 0.72rem 0.9rem;
  border-radius: 1rem;
  color: var(--cream);
  font-size: 0.78rem;
  animation: popIn 0.7s ease both;
}

.home-page .message.left {
  background: rgba(255, 255, 255, 0.09);
  border-bottom-left-radius: 0.3rem;
}

.home-page .message.right {
  align-self: flex-end;
  color: #060504;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  border-bottom-right-radius: 0.3rem;
}

.orbital-card {
  position: absolute;
  z-index: 5;
  min-width: 7.8rem;
  max-width: 11.5rem;
  padding: 0.72rem 0.85rem;
  border: 1px solid var(--line-gold);
  border-radius: 1.1rem;
  background: rgba(7, 7, 6, 0.74);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.3);
}

.orbital-card span,
.orbital-card strong {
  display: block;
}

.orbital-card span {
  color: rgba(255, 248, 223, 0.5);
  font-size: 0.64rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.orbital-card strong {
  margin-top: 0.2rem;
  color: var(--gold);
  font-size: 0.86rem;
  line-height: 1.18;
}

.orbital-card-one {
  top: 4rem;
  right: 0.4rem;
  animation: floatCard 5.6s ease-in-out infinite;
}

.orbital-card-two {
  bottom: 5.8rem;
  left: 0.4rem;
  animation: floatCard 6.2s ease-in-out infinite reverse;
}

.orbital-card-three {
  top: 11rem;
  left: 0;
  animation: floatCard 6.8s ease-in-out infinite;
}

.orbital-card-four {
  top: 13.2rem;
  right: -0.5rem;
  animation: floatCard 6.4s ease-in-out infinite reverse;
}

.orbital-card-five {
  bottom: 14.5rem;
  left: -0.4rem;
  animation: floatCard 7s ease-in-out infinite;
}

.orbital-card-six {
  bottom: 14rem;
  right: 0.15rem;
  animation: floatCard 7.2s ease-in-out infinite reverse;
}

.orbital-card-seven {
  top: 1rem;
  left: 4.2rem;
  animation: floatCard 6s ease-in-out infinite;
}

.orbital-card-eight {
  bottom: 1.4rem;
  right: 4rem;
  animation: floatCard 6.6s ease-in-out infinite reverse;
}

.metrics {
  position: relative;
  margin-top: -1px;
  padding: 2rem 0 1.5rem;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.metric,
.offer-main,
.price-card,
.feature-card,
.experience-panel,
.dashboard-card,
.legal-card,
.cta-card {
  border: 1px solid var(--line-gold);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.035));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 28px 80px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.metric {
  min-height: 12rem;
  padding: 1.35rem;
  border-radius: 1.35rem;
}

.metric span,
.feature-number {
  display: inline-flex;
  color: var(--gold);
  font-weight: 900;
  letter-spacing: 0.1em;
}

.metric strong {
  display: block;
  margin-top: 1.9rem;
  color: var(--cream);
  font-size: 1.08rem;
}

.metric p {
  margin-top: 0.7rem;
  color: rgba(255, 248, 223, 0.56);
  font-size: 0.95rem;
}

.offer {
  position: relative;
  padding: 1.5rem 0 1.5rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(246, 212, 97, 0.14), transparent 24rem),
    radial-gradient(circle at 86% 70%, rgba(201, 154, 46, 0.1), transparent 24rem),
    rgba(255, 255, 255, 0.012);
}

.offer-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: 0.8rem;
  align-items: stretch;
}

.offer-main {
  position: relative;
  min-height: 26rem;
  padding: clamp(1.25rem, 3vw, 2.25rem);
  border-radius: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 18%, rgba(246, 212, 97, 0.22), transparent 17rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035));
}

.offer-main::before {
  content: "";
  position: absolute;
  inset: auto -14% -26% auto;
  width: 22rem;
  height: 22rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(246, 212, 97, 0.2), transparent 68%);
  pointer-events: none;
}

.offer-main h2 {
  position: relative;
  margin-top: 0.7rem;
  color: var(--cream);
  font-size: clamp(2rem, 4.4vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.07em;
  text-wrap: balance;
}

.offer-main p {
  position: relative;
  max-width: 620px;
  margin-top: 0.9rem;
  color: rgba(255, 248, 223, 0.64);
  font-size: 0.95rem;
  line-height: 1.68;
}

.offer-main .btn {
  position: relative;
  align-self: flex-start;
  margin-top: 2rem;
}

.offer-pricing {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.price-card {
  position: relative;
  min-height: 10.5rem;
  padding: 1rem;
  border-radius: 1.45rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  transition: var(--transition);
}

.price-card::before {
  content: "";
  position: absolute;
  inset: auto -22% -38% auto;
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(246, 212, 97, 0.16), transparent 70%);
  transition: var(--transition);
}

.price-brand,
.price-card span,
.price-card strong,
.price-card p,
.price-card small {
  position: relative;
  z-index: 2;
}

.price-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.brand-logo {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 0.72rem;
  flex: 0 0 auto;
  display: block;
  object-fit: contain;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22), 0 12px 32px rgba(0, 0, 0, 0.2);
}

.brand-logo svg {
  width: 100%;
  height: 100%;
  display: block;
}

.brand-logo-x {
  background: #000;
  padding: 0.6rem;
}

.brand-logo-instagram {
  background: radial-gradient(circle at 30% 100%, #feda75 0%, #fa7e1e 24%, #d62976 50%, #962fbf 76%, #4f5bd5 100%);
  padding: 0.5rem;
}

.brand-logo-facebook {
  background: #1877f2;
  padding: 0.45rem;
}

.brand-logo-linkedin {
  background: #0a66c2;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem;
}

.brand-logo-klluster {
  object-fit: cover;
  background: rgba(246, 212, 97, 0.14);
  padding: 0.18rem;
}

.price-card span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.price-card strong {
  color: var(--cream);
  font-size: clamp(1.65rem, 3.3vw, 2.65rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.price-card p {
  color: rgba(255, 248, 223, 0.54);
  font-size: 0.86rem;
  font-weight: 700;
}

.price-card small {
  color: var(--gold);
  font-size: 0.88rem;
  font-weight: 900;
}

.comparison-card {
  opacity: 0.82;
}

.premium-offer {
  grid-column: span 2;
  min-height: 12rem;
  border-color: rgba(246, 212, 97, 0.38);
  background:
    radial-gradient(circle at 18% 22%, rgba(246, 212, 97, 0.26), transparent 18rem),
    linear-gradient(135deg, rgba(246, 212, 97, 0.16), rgba(255, 255, 255, 0.045)),
    rgba(7, 7, 6, 0.62);
}

.premium-offer strong {
  color: var(--gold);
  font-size: clamp(3.2rem, 8vw, 5.5rem);
}

.price-card:hover {
  transform: translateY(-8px);
  border-color: rgba(246, 212, 97, 0.36);
  box-shadow: 0 38px 90px rgba(0, 0, 0, 0.28), 0 0 55px rgba(246, 212, 97, 0.08);
}

.price-card:hover::before {
  transform: scale(1.24);
}

.trust-section {
  padding: 1rem 0 2.5rem;
}

.trust-card {
  position: relative;
  padding: clamp(1.4rem, 4vw, 2.4rem);
  border: 1px solid rgba(246, 212, 97, 0.24);
  border-radius: 2rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 22%, rgba(246, 212, 97, 0.18), transparent 20rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035)),
    rgba(7, 7, 6, 0.48);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 28px 80px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.trust-card::before {
  content: "";
  position: absolute;
  inset: auto -10% -58% auto;
  width: 22rem;
  height: 22rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(246, 212, 97, 0.18), transparent 68%);
  pointer-events: none;
}

.trust-card h2,
.trust-card p,
.trust-card .section-kicker {
  position: relative;
  z-index: 2;
}

.trust-card h2 {
  margin-top: 0.75rem;
  color: var(--cream);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.trust-card p {
  max-width: 760px;
  margin-top: 1rem;
  color: rgba(255, 248, 223, 0.64);
  font-size: 1rem;
  line-height: 1.8;
}

.screenshots {
  position: relative;
  padding: 2.5rem 0 2rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(246, 212, 97, 0.16), transparent 24rem),
    radial-gradient(circle at 82% 74%, rgba(201, 154, 46, 0.12), transparent 26rem),
    rgba(255, 255, 255, 0.015);
}

.screenshots::before {
  content: "";
  position: absolute;
  inset: 4rem auto auto 50%;
  width: min(68rem, 86vw);
  height: min(68rem, 86vw);
  border: 1px solid rgba(246, 212, 97, 0.1);
  border-radius: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.screenshots-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 1.05rem;
  align-items: center;
}

.screenshot-card {
  position: relative;
  grid-column: span 2;
  min-height: 34rem;
  padding: 0.75rem;
  border: 1px solid rgba(246, 212, 97, 0.18);
  border-radius: 2.2rem;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(246, 212, 97, 0.18), rgba(255, 255, 255, 0.045)),
    rgba(7, 7, 6, 0.62);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 30px 90px rgba(0, 0, 0, 0.25);
  transition: var(--transition);
}

.screenshot-card::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 1.35rem;
  left: 50%;
  width: 5rem;
  height: 0.34rem;
  border-radius: 999px;
  background: rgba(255, 248, 223, 0.2);
  transform: translateX(-50%);
}

.screenshot-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 22%, rgba(0, 0, 0, 0.72));
  pointer-events: none;
}

.screenshot-card:nth-child(2),
.screenshot-card:nth-child(5) {
  transform: translateY(-1.6rem);
}

.screenshot-card:nth-child(4),
.screenshot-card:nth-child(6) {
  transform: translateY(1.6rem);
}

.screenshot-card:hover {
  border-color: rgba(246, 212, 97, 0.38);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 38px 110px rgba(0, 0, 0, 0.34),
    0 0 70px rgba(246, 212, 97, 0.1);
}

.screenshot-card:nth-child(2):hover,
.screenshot-card:nth-child(5):hover {
  transform: translateY(-2.2rem);
}

.screenshot-card:nth-child(4):hover,
.screenshot-card:nth-child(6):hover {
  transform: translateY(1rem);
}

.screenshot-card:not(:nth-child(2)):not(:nth-child(4)):not(:nth-child(5)):not(:nth-child(6)):hover {
  transform: translateY(-0.7rem);
}

.screenshot-card img {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  min-height: 32.5rem;
  border-radius: 1.55rem;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.65s ease;
}

.screenshot-card:hover img {
  transform: scale(1.035);
}

.screenshot-caption {
  position: absolute;
  left: 1.1rem;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 3;
  padding: 0.95rem;
  border: 1px solid rgba(246, 212, 97, 0.18);
  border-radius: 1.25rem;
  background: rgba(7, 7, 6, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.screenshot-caption span,
.screenshot-caption strong {
  display: block;
}

.screenshot-caption span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.screenshot-caption strong {
  margin-top: 0.34rem;
  color: var(--cream);
  font-size: 0.9rem;
  line-height: 1.42;
}

.home-page .features {
  padding: 6.5rem 0;
  background:
    radial-gradient(circle at 70% 0%, rgba(246, 212, 97, 0.11), transparent 29rem),
    rgba(255, 255, 255, 0.018);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 3.2rem;
  text-align: center;
}

.section-heading h2,
.experience-panel h2,
.cta-card h2 {
  margin: 0.75rem 0 0;
  color: var(--cream);
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 1;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

.section-heading p,
.experience-panel p,
.cta-card p {
  margin: 1.05rem auto 0;
  color: rgba(255, 248, 223, 0.62);
  font-size: 1rem;
  line-height: 1.8;
}

.home-page .features-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.home-page .feature-card {
  position: relative;
  min-height: 27rem;
  padding: 1.45rem;
  border-radius: 1.6rem;
  overflow: hidden;
}

.home-page .feature-card::before {
  content: "";
  position: absolute;
  inset: auto 1.2rem 1.2rem auto;
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(246, 212, 97, 0.2), transparent 70%);
  transition: var(--transition);
}

.home-page .feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(246, 212, 97, 0.36);
  box-shadow: 0 38px 90px rgba(0, 0, 0, 0.28), 0 0 55px rgba(246, 212, 97, 0.08);
}

.home-page .feature-card:hover::before {
  transform: scale(1.5);
}

.home-page .feature-card h3 {
  margin-top: 1.15rem;
  color: var(--cream);
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.home-page .feature-card p {
  color: rgba(255, 248, 223, 0.56);
  font-size: 0.94rem;
  line-height: 1.72;
}

.feature-preview {
  position: relative;
  height: 13rem;
  margin-top: 1.25rem;
  border: 1px solid rgba(246, 212, 97, 0.16);
  border-radius: 1.25rem;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.24);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.feature-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 44%, rgba(0, 0, 0, 0.36));
  pointer-events: none;
}

.feature-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.65s ease;
}

.home-page .feature-card:hover .feature-preview img {
  transform: scale(1.06);
}

.experience {
  padding: 0.5rem 0 2rem;
}

.experience-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 1rem;
  align-items: stretch;
}

.experience-panel,
.dashboard-card {
  border-radius: 2rem;
  padding: clamp(1.4rem, 4vw, 2.4rem);
}

.experience-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.experience-list {
  display: grid;
  gap: 0.85rem;
  margin-top: 2rem;
}

.experience-list div {
  padding: 1rem;
  border: 1px solid var(--line-gold);
  border-radius: 1.1rem;
  background: rgba(0, 0, 0, 0.18);
}

.experience-list strong,
.experience-list span {
  display: block;
}

.experience-list strong {
  color: var(--cream);
}

.experience-list span {
  margin-top: 0.22rem;
  color: rgba(255, 248, 223, 0.55);
  font-size: 0.9rem;
}

.dashboard-card {
  min-height: 32rem;
  background:
    radial-gradient(circle at 20% 20%, rgba(246, 212, 97, 0.18), transparent 14rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035));
}

.app-showcase-card {
  position: relative;
  min-height: 42rem;
  overflow: hidden;
}

.app-showcase-card::before {
  content: "";
  position: absolute;
  inset: 12% 8% auto auto;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(246, 212, 97, 0.2), transparent 70%);
  filter: blur(4px);
}

.showcase-phone {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(246, 212, 97, 0.2);
  border-radius: 2rem;
  background:
    linear-gradient(145deg, rgba(246, 212, 97, 0.16), rgba(255, 255, 255, 0.04)),
    rgba(7, 7, 6, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 34px 92px rgba(0, 0, 0, 0.3);
}

.showcase-phone img {
  width: 100%;
  height: 100%;
  padding: 0.58rem;
  border-radius: inherit;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.showcase-phone-main {
  left: 8%;
  top: 6%;
  width: min(54%, 20rem);
  height: 34rem;
  transform: rotate(-3deg);
}

.showcase-phone-float {
  right: 7%;
  top: 24%;
  width: min(42%, 16rem);
  height: 28rem;
  transform: rotate(7deg);
}

.showcase-note {
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 1.5rem;
  z-index: 3;
  padding: 1rem;
  border: 1px solid rgba(246, 212, 97, 0.18);
  border-radius: 1.25rem;
  background: rgba(7, 7, 6, 0.74);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.showcase-note span,
.showcase-note strong {
  display: block;
}

.showcase-note span {
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.showcase-note strong {
  margin-top: 0.38rem;
  color: var(--cream);
  line-height: 1.45;
}

.dashboard-header {
  display: flex;
  gap: 0.45rem;
  margin-bottom: 2rem;
}

.dashboard-header span {
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 50%;
  background: rgba(246, 212, 97, 0.8);
}

.dashboard-profile img {
  width: 3.8rem;
  height: 3.8rem;
}

.dashboard-bars {
  display: grid;
  gap: 0.9rem;
  margin: 2.3rem 0;
}

.dashboard-bars span {
  display: block;
  height: 0.85rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), rgba(246, 212, 97, 0.13));
  box-shadow: 0 10px 36px rgba(246, 212, 97, 0.14);
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.dashboard-grid div {
  min-height: 8rem;
  padding: 1.1rem;
  border: 1px solid var(--line-gold);
  border-radius: 1.25rem;
  background: rgba(0, 0, 0, 0.2);
}

.dashboard-grid strong,
.dashboard-grid span {
  display: block;
}

.dashboard-grid strong {
  color: var(--gold);
  font-size: 2rem;
  letter-spacing: -0.05em;
}

.dashboard-grid span {
  color: rgba(255, 248, 223, 0.56);
  font-size: 0.86rem;
}

.about-founders {
  margin-top: 0;
}

.founder-heading {
  margin-bottom: 0.85rem;
}

.founder-heading h2 {
  font-size: clamp(1.45rem, 3vw, 2.35rem);
}

.founder-heading p {
  margin-top: 0.65rem;
  line-height: 1.5;
  font-size: 0.92rem;
}

.founders {
  padding: 0;
  background:
    radial-gradient(circle at 18% 24%, rgba(246, 212, 97, 0.13), transparent 24rem),
    radial-gradient(circle at 82% 72%, rgba(201, 154, 46, 0.12), transparent 22rem);
}

.founders-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.founder-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(130px, 0.72fr) minmax(0, 1fr);
  gap: 0.65rem;
  align-items: stretch;
  min-height: 17rem;
  padding: 0.6rem;
  border: 1px solid var(--line-gold);
  border-radius: 1.55rem;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035)),
    rgba(7, 7, 6, 0.46);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 30px 90px rgba(0, 0, 0, 0.22);
  transition: var(--transition);
}

.founder-card::before {
  content: "";
  position: absolute;
  inset: auto -18% -28% auto;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(246, 212, 97, 0.22), transparent 68%);
  transition: var(--transition);
}

.founder-card:hover {
  transform: translateY(-5px);
  border-color: rgba(246, 212, 97, 0.34);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28), 0 0 54px rgba(246, 212, 97, 0.07);
}

.founder-card:hover::before {
  transform: scale(1.18);
}

.founder-card-featured {
  background:
    radial-gradient(circle at 24% 22%, rgba(246, 212, 97, 0.19), transparent 16rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
    rgba(7, 7, 6, 0.52);
}

.founder-image-wrap {
  position: relative;
  z-index: 2;
  height: 100%;
  min-height: 13.5rem;
  border-radius: 1.15rem;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(246, 212, 97, 0.22), rgba(255, 255, 255, 0.04));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.founder-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(7, 7, 6, 0.76));
}

.founder-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(1.02) contrast(1.03);
  transition: transform 0.6s ease;
}

.founder-card:hover .founder-image {
  transform: scale(1.045);
}

.founder-content {
  position: relative;
  z-index: 2;
  align-self: start;
  padding: 1.25rem 0.75rem 0.35rem 0;
}

.founder-content span {
  display: inline-flex;
  padding: 0.28rem 0.48rem;
  border: 1px solid rgba(246, 212, 97, 0.24);
  border-radius: 999px;
  color: var(--gold);
  background: rgba(246, 212, 97, 0.08);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.founder-credential {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.65rem;
  padding: 0.5rem 0.62rem;
  border: 1px solid rgba(246, 212, 97, 0.18);
  border-radius: 0.85rem;
  background: rgba(255, 248, 223, 0.06);
  color: var(--cream);
}

.founder-credential img {
  /* Lock dimensions so external SVGs without intrinsic size cannot inflate on mobile */
  width: 1.85rem;
  height: 1.85rem;
  min-width: 1.85rem;
  min-height: 1.85rem;
  max-width: 1.85rem;
  max-height: 1.85rem;
  flex: 0 0 1.85rem;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  padding: 0.25rem;
  border-radius: 0.55rem;
  background: rgba(255, 255, 255, 0.9);
  display: block;
}

/* Allow the credential text to truncate gracefully so the badge can't be pushed wider than its row */
.founder-credential div {
  min-width: 0;
}

.founder-credential strong,
.founder-credential small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.founder-credential-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.85rem;
  height: 1.85rem;
  flex: 0 0 auto;
  border-radius: 0.55rem;
  background: linear-gradient(135deg, rgba(246, 212, 97, 0.26), rgba(201, 154, 46, 0.16));
  color: var(--gold);
}

.founder-credential-icon svg {
  width: 1.18rem;
  height: 1.18rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.founder-education {
  margin-top: 0.5rem;
}

.founder-credential div {
  display: flex;
  flex-direction: column;
  gap: 0.08rem;
}

.founder-credential strong {
  font-size: 0.72rem;
  line-height: 1.1;
}

.founder-credential small {
  color: rgba(255, 248, 223, 0.58);
  font-size: 0.64rem;
  font-weight: 800;
  line-height: 1.1;
}

.founder-content h3 {
  margin-top: 0.7rem;
  color: var(--cream);
  font-size: clamp(1.18rem, 2.25vw, 1.75rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

.founder-content p {
  margin-top: 0.32rem;
  color: rgba(255, 248, 223, 0.64);
  font-size: 0.78rem;
  font-weight: 700;
}

.founder-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.7rem;
  padding: 0.5rem 0.7rem;
  border: 1px solid rgba(246, 212, 97, 0.24);
  border-radius: 999px;
  color: var(--cream);
  background: rgba(255, 255, 255, 0.055);
  font-size: 0.78rem;
  font-weight: 900;
  text-decoration: none;
  transition: var(--transition);
}

.linkedin-icon {
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
}

.founder-link:hover {
  color: var(--ink);
  background: linear-gradient(135deg, var(--gold-soft), var(--gold), var(--gold-deep));
  transform: translateY(-2px);
  box-shadow: 0 18px 45px rgba(246, 212, 97, 0.18);
}

.safety {
  padding: 6rem 0;
  background: rgba(255, 255, 255, 0.018);
}

.safety-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 1rem;
  align-items: center;
}

.safety .section-heading {
  margin: 0;
  text-align: left;
}

.legal-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.safety-showcase {
  display: grid;
  grid-template-columns: minmax(220px, 0.68fr) minmax(0, 1fr);
  gap: 1rem;
  align-items: stretch;
}

.safety-phone {
  position: relative;
  min-height: 31rem;
  padding: 0.7rem;
  border: 1px solid rgba(246, 212, 97, 0.2);
  border-radius: 2rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(246, 212, 97, 0.16), transparent 15rem),
    rgba(7, 7, 6, 0.62);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 30px 90px rgba(0, 0, 0, 0.24);
}

.safety-phone::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 1.2rem;
  left: 50%;
  width: 4.6rem;
  height: 0.34rem;
  border-radius: 999px;
  background: rgba(255, 248, 223, 0.18);
  transform: translateX(-50%);
}

.safety-phone img {
  width: 100%;
  height: 100%;
  min-height: 29.5rem;
  border-radius: 1.45rem;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.legal-card {
  display: flex;
  min-height: 15rem;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.35rem;
  border-radius: 1.45rem;
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

.legal-card:hover {
  transform: translateY(-8px);
  border-color: rgba(246, 212, 97, 0.36);
}

.legal-card span {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.legal-card strong {
  color: var(--cream);
  font-size: 1.12rem;
  line-height: 1.45;
}

.home-page .cta-section {
  padding: 6rem 0;
  background: transparent;
}

.cta-card {
  display: grid;
  place-items: center;
  max-width: 980px;
  padding: clamp(2rem, 6vw, 4.5rem);
  border-radius: 2.5rem;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(246, 212, 97, 0.26), transparent 22rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.04));
}

.cta-card img {
  width: 5.4rem;
  height: 5.4rem;
  margin-bottom: 1.2rem;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(246, 212, 97, 0.34), 0 24px 75px rgba(246, 212, 97, 0.18);
}

.cta-card .hero-actions {
  justify-content: center;
  margin-top: 2rem;
}

.home-page .footer,
.legal-page .footer {
  background:
    radial-gradient(circle at 18% 0%, rgba(246, 212, 97, 0.11), transparent 20rem),
    #050504;
  border-top: 1px solid var(--line-gold);
}

.home-page .footer-grid,
.legal-page .footer-grid {
  grid-template-columns: 1.7fr 0.8fr 0.8fr 1fr;
}

.footer-brand-link {
  margin-bottom: 0.7rem;
}

.home-page .footer-brand p,
.legal-page .footer-brand p,
.home-page .footer-links li,
.legal-page .footer-links li,
.home-page .footer-bottom,
.legal-page .footer-bottom {
  color: rgba(255, 248, 223, 0.54);
}

.home-page .footer-links h4,
.legal-page .footer-links h4 {
  color: var(--gold);
}

.home-page .footer-links a,
.legal-page .footer-links a {
  color: rgba(255, 248, 223, 0.62);
}

.home-page .footer-links a:hover,
.legal-page .footer-links a:hover {
  color: var(--gold);
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-social-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1cm;
}

.footer-social-icon {
  width: 1.45rem;
  height: 1.45rem;
  border-radius: 0.42rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: #fff;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

.footer-social-icon svg {
  width: 0.86rem;
  height: 0.86rem;
  display: block;
}

.footer-social-icon-x {
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.footer-social-icon-instagram {
  background: radial-gradient(circle at 30% 100%, #feda75 0%, #fa7e1e 24%, #d62976 50%, #962fbf 76%, #4f5bd5 100%);
}

.footer-social-icon-linkedin {
  background: #0a66c2;
}

.home-page .footer-bottom,
.legal-page .footer-bottom {
  border-top-color: var(--line-gold);
}

.home-page .back-to-top,
.legal-page .back-to-top {
  color: #050504;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold), var(--gold-deep));
  box-shadow: 0 18px 48px rgba(246, 212, 97, 0.2);
}

.home-page .reveal {
  opacity: 0;
  transform: translateY(28px) scale(0.98);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.home-page .reveal.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.legal-page {
  background:
    radial-gradient(circle at 20% 0%, rgba(246, 212, 97, 0.13), transparent 28rem),
    #fbf7ea;
  color: #151208;
}

.legal-page .legal-content {
  padding-top: 4rem;
}

.legal-page .legal-article {
  max-width: 880px;
  padding: clamp(1.4rem, 4vw, 3rem);
  border: 1px solid rgba(201, 154, 46, 0.22);
  border-radius: 1.8rem;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 30px 90px rgba(90, 66, 10, 0.1);
}

.legal-page .legal-article h1,
.legal-page .legal-article strong {
  color: #151208;
}

.legal-page .legal-article h2,
.legal-page .legal-article a {
  color: #9b741d;
}

.legal-page .legal-article p,
.legal-page .legal-article li,
.legal-page .legal-article blockquote {
  color: #51462c;
}

.legal-page .legal-article hr,
.legal-page .legal-article h1 {
  border-color: rgba(201, 154, 46, 0.2);
}

@keyframes slowSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulseRing {
  0% {
    transform: scale(0.8);
    opacity: 0.75;
  }
  100% {
    transform: scale(1.72);
    opacity: 0;
  }
}

@keyframes floatCard {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -16px, 0);
  }
}

@keyframes flagWave {
  0%, 100% {
    transform: perspective(80px) rotateY(-10deg) skewY(0deg);
  }
  50% {
    transform: perspective(80px) rotateY(12deg) skewY(-3deg);
  }
}

@keyframes flagLight {
  0%, 100% {
    transform: translateX(-18%);
  }
  50% {
    transform: translateX(18%);
  }
}

@media (max-width: 1024px) {
  .hero-grid,
  .offer-grid,
  .experience-grid,
  .safety-grid,
  .safety-showcase {
    grid-template-columns: 1fr;
  }

  .home-page .hero {
    padding-top: 6rem;
  }

  .hero-visual {
    min-height: 560px;
  }

  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-page .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .screenshots-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .screenshot-card {
    grid-column: span 1;
    min-height: 31rem;
  }

  .screenshot-card img {
    min-height: 29.5rem;
  }

  .screenshot-card:nth-child(n) {
    transform: none;
  }

  .app-showcase-card {
    min-height: 39rem;
  }

  .showcase-phone-main {
    width: min(58%, 19rem);
  }

  .showcase-phone-float {
    width: min(44%, 15rem);
  }

  .founders-grid,
  .founder-card {
    grid-template-columns: 1fr;
  }

  .founder-image-wrap {
    min-height: 14.5rem;
  }

  .home-page .footer-grid,
  .legal-page .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

}

@media (max-width: 1199px) and (min-width: 769px) {
  .nav-trust {
    display: none;
  }
}

@media (max-width: 768px) {
  .home-page .navbar,
  .legal-page .navbar {
    background: rgba(7, 7, 6, 0.84);
    border-bottom: 1px solid var(--line-gold);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }

  .home-page .nav-links,
  .legal-page .nav-links {
    width: min(82%, 22rem);
    position: fixed;
    left: auto;
    transform: translateX(100%);
    background: rgba(7, 7, 6, 0.96);
    border-left: 1px solid var(--line-gold);
    border-radius: 0;
    align-items: stretch;
  }

  .nav-trust {
    flex: 1;
    justify-content: flex-end;
    overflow: hidden;
    font-size: 0.68rem;
    position: static;
    transform: none;
  }

  .home-page .nav-links a,
  .legal-page .nav-links a {
    display: block;
    padding: 0.9rem 1rem;
  }

  .nav-actions {
    display: none;
  }

  .home-page .hero {
    padding: 5.5rem 0 3rem;
  }

  .home-page .hero-title {
    font-size: clamp(1.65rem, 6.5vw, 2.35rem);
  }

  .metrics-grid,
  .offer-pricing,
  .home-page .features-grid,
  .screenshots-grid,
  .founders-grid,
  .legal-cards,
  .dashboard-grid,
  .home-page .footer-grid,
  .legal-page .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-proof {
    gap: 0.4rem;
    max-width: 100%;
  }

  .offer-main {
    min-height: auto;
  }

  .premium-offer {
    grid-column: span 1;
  }

  .hero-proof div {
    padding: 0.5rem 0.55rem;
    border-radius: 0.75rem;
  }

  .hero-proof strong {
    font-size: 0.72rem;
  }

  .hero-proof span {
    font-size: 0.62rem;
  }

  .hero-actions {
    align-items: stretch;
  }

  .home-page .btn {
    max-width: none;
  }

  .hero-visual {
    min-height: 520px;
  }

  .phone-shell {
    transform: none;
  }

  .orbital-card {
    display: none;
  }

  .section-heading {
    text-align: left;
  }

  .section-heading h2,
  .experience-panel h2,
  .cta-card h2 {
    font-size: clamp(2.15rem, 12vw, 3.3rem);
  }

  .home-page .feature-card {
    min-height: auto;
  }

  .home-page .feature-card h3 {
    margin-top: 1.15rem;
  }

  .feature-preview {
    height: 15rem;
  }

  .screenshot-card,
  .screenshot-card:nth-child(n),
  .screenshot-card:nth-child(n):hover {
    min-height: auto;
    transform: none;
  }

  .screenshot-card img {
    min-height: auto;
    aspect-ratio: 9 / 19.5;
  }

  .screenshot-caption {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin-top: 0.75rem;
  }

  .app-showcase-card {
    min-height: auto;
    padding-bottom: 1.4rem;
  }

  .showcase-phone,
  .showcase-note {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    height: auto;
    min-height: auto;
    transform: none;
  }

  .showcase-phone + .showcase-phone,
  .showcase-note {
    margin-top: 1rem;
  }

  .showcase-phone img {
    min-height: auto;
    aspect-ratio: 9 / 16;
  }

  .safety-phone {
    min-height: auto;
  }

  .safety-phone img {
    min-height: auto;
    aspect-ratio: 9 / 16;
  }

  .founder-card {
    min-height: auto;
  }

  .founder-image-wrap {
    min-height: 13.5rem;
  }

  /* Company chips remain inline so Google + Swiggy can share a row.
     Education chip always breaks to its own line. */
  .founder-credential.founder-education {
    display: flex;
    width: fit-content;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .home-page .container {
    padding: 0 1rem;
  }

  .brand,
  .logo {
    font-size: 1.1rem;
  }

  .brand-icon {
    width: 2.15rem;
    height: 2.15rem;
  }

  .home-page .hero-subtitle {
    font-size: 0.98rem;
  }

  .hero-visual {
    min-height: 470px;
  }

  .home-page .phone-screen {
    min-height: 31rem;
  }

  .app-showcase {
    width: 7.4rem;
    height: 7.4rem;
  }

  .showcase-icon {
    width: 5.8rem;
    height: 5.8rem;
  }
}

.premium-legal {
  background:
    radial-gradient(circle at 18% 0%, rgba(246, 212, 97, 0.18), transparent 28rem),
    radial-gradient(circle at 86% 16%, rgba(201, 154, 46, 0.14), transparent 24rem),
    linear-gradient(180deg, #050504 0%, #0d0b07 48%, #11100c 100%);
  color: var(--cream);
  padding-top: 0;
  overflow-x: hidden;
}

.premium-legal .nav-container {
  position: relative;
  gap: 0.55rem;
  max-width: none;
  padding: 0 1.5rem;
}

.premium-legal .nav-links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.6rem 0.7rem;
  gap: 0.3rem;
  border: 1px solid var(--line-gold);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.premium-legal .legal-content {
  padding: 0 0 5.5rem;
}

.legal-hero {
  padding: 5.4rem 0 3.2rem;
}

.legal-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: 1rem;
  align-items: stretch;
}

.legal-hero-copy,
.legal-summary-card,
.legal-sticky-card,
.premium-legal .legal-article {
  border: 1px solid var(--line-gold);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 28px 86px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.legal-hero-copy {
  min-height: 22rem;
  padding: clamp(1.6rem, 5vw, 3.4rem);
  border-radius: 2.4rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    radial-gradient(circle at 15% 20%, rgba(246, 212, 97, 0.2), transparent 18rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035));
}

.legal-hero-copy h1 {
  margin-top: 0.9rem;
  color: var(--cream);
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 0.92;
  letter-spacing: -0.08em;
  text-wrap: balance;
}

.legal-hero-copy p {
  max-width: 720px;
  margin-top: 1.2rem;
  color: rgba(255, 248, 223, 0.66);
  font-size: clamp(1rem, 1.7vw, 1.18rem);
  line-height: 1.85;
}

.legal-summary-card {
  min-height: 22rem;
  padding: 1.4rem;
  border-radius: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.legal-summary-card span,
.legal-sticky-card span {
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.legal-summary-card strong,
.legal-sticky-card strong {
  display: block;
  color: var(--cream);
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.legal-summary-card p,
.legal-sticky-card p {
  color: rgba(255, 248, 223, 0.58);
  line-height: 1.7;
}

.legal-document {
  padding-bottom: 1rem;
}

.legal-shell {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}

.legal-sidebar {
  position: relative;
}

.legal-sticky-card {
  position: sticky;
  top: 6.7rem;
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: 1.45rem;
}

.legal-sticky-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0 1rem;
  border: 1px solid rgba(246, 212, 97, 0.22);
  border-radius: 999px;
  color: var(--gold);
  background: rgba(246, 212, 97, 0.07);
  font-size: 0.86rem;
  font-weight: 800;
  text-decoration: none;
  transition: var(--transition);
}

.legal-sticky-card a:hover {
  color: #050504;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  transform: translateY(-2px);
}

.premium-legal .legal-article {
  max-width: none;
  padding: clamp(1.5rem, 4vw, 3.2rem);
  border-radius: 2rem;
  color: rgba(255, 248, 223, 0.72);
}

.premium-legal .legal-article h1 {
  display: none;
}

.premium-legal .legal-article h2 {
  margin-top: 3rem;
  margin-bottom: 1rem;
  padding-top: 1rem;
  color: var(--gold);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
  border-top: 1px solid rgba(246, 212, 97, 0.16);
}

.premium-legal .legal-article h2:first-of-type {
  margin-top: 1.2rem;
}

.premium-legal .legal-article h3 {
  margin-top: 1.8rem;
  color: var(--cream);
  font-size: 1.08rem;
  letter-spacing: -0.02em;
}

.premium-legal .legal-article p,
.premium-legal .legal-article li {
  color: rgba(255, 248, 223, 0.64);
  font-size: 0.98rem;
  line-height: 1.82;
}

.premium-legal .legal-article p {
  margin-bottom: 0.85rem;
}

.premium-legal .legal-article ul {
  margin: 0.8rem 0 1.4rem;
  padding-left: 1.2rem;
}

.premium-legal .legal-article li {
  margin-bottom: 0.48rem;
  padding-left: 0.25rem;
}

.premium-legal .legal-article li::marker {
  color: var(--gold);
}

.premium-legal .legal-article strong {
  color: var(--cream);
}

.premium-legal .legal-article a {
  color: var(--gold);
  text-decoration: none;
}

.premium-legal .legal-article a:hover {
  text-decoration: underline;
}

.premium-legal .legal-article blockquote {
  margin: 1.4rem 0;
  padding: 1rem 1.15rem;
  border: 1px solid rgba(246, 212, 97, 0.22);
  border-left: 4px solid var(--gold);
  border-radius: 1rem;
  color: rgba(255, 248, 223, 0.7);
  background: rgba(246, 212, 97, 0.065);
}

.premium-legal .legal-article hr {
  border: none;
  border-top: 1px solid rgba(246, 212, 97, 0.16);
  margin: 2rem 0;
}

@media (max-width: 1024px) {
  .legal-hero-grid,
  .legal-shell {
    grid-template-columns: 1fr;
  }

  .legal-sticky-card {
    position: static;
  }
}

@media (max-width: 768px) {
  .premium-legal .nav-links {
    width: min(82%, 22rem);
    position: fixed;
    left: auto;
    transform: translateX(100%);
    background: rgba(7, 7, 6, 0.96);
    border-left: 1px solid var(--line-gold);
    border-radius: 0;
    align-items: stretch;
  }

  .legal-hero {
    padding: 3.8rem 0 1.5rem;
  }

  .legal-hero-copy,
  .legal-summary-card,
  .premium-legal .legal-article {
    border-radius: 1.45rem;
  }

  .legal-hero-copy,
  .legal-summary-card {
    min-height: auto;
  }

  .home-page .nav-links.open,
  .legal-page .nav-links.open,
  .premium-legal .nav-links.open {
    right: 0;
    transform: translateX(0);
  }
}
