@import url('https://api.fontshare.com/v2/css?f[]=fk-grotesk-neue@300,400,500,600,700&display=swap');

:root {
  --radius: 0.875rem;
  --background: oklch(0.11 0.008 240);
  --foreground: oklch(0.98 0 0);
  --card: oklch(0.16 0.01 240);
  --card-foreground: oklch(0.98 0 0);
  --primary: oklch(0.82 0.13 200);
  --primary-foreground: oklch(0.11 0.008 240);
  --muted-foreground: oklch(0.65 0.015 240);
  --border: oklch(1 0 0 / 6%);
  --input: oklch(1 0 0 / 8%);

  /* Premium accent palette exactly matching the TSX */
  --gradient-cinematic:
    radial-gradient(ellipse 55% 45% at 30% 0%, oklch(0.55 0.16 200 / 0.28), transparent 60%),
    radial-gradient(ellipse 50% 45% at 75% 10%, oklch(0.55 0.18 295 / 0.22), transparent 60%),
    radial-gradient(ellipse 80% 60% at 50% 100%, oklch(0.25 0.08 240 / 0.4), transparent 70%);
  --gradient-spectrum: linear-gradient(110deg, oklch(0.82 0.13 200), oklch(0.7 0.18 295) 55%, oklch(0.82 0.14 75));
  --shadow-glow: 0 0 80px -10px oklch(0.82 0.13 200 / 0.45);
  --shadow-card: 0 1px 0 0 oklch(1 0 0 / 0.05) inset, 0 30px 60px -30px oklch(0 0 0 / 0.7);
  
  --font-sans: "FK Grotesk Neue", "FK Grotesk", "Inter", -apple-system, sans-serif;
  
  /* Provided Accent for your logo */
  --accent: #FF4F00;
}

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

body {
    background-color: var(--background);
    color: var(--foreground);
    font-family: var(--font-sans);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    position: relative;
    font-feature-settings: "ss01", "cv11";
}

/* Cinematic Background Gradient */
.cinematic-bg {
    position: fixed;
    inset: 0;
    z-index: -10;
    background: var(--gradient-cinematic);
    pointer-events: none;
}

/* Grain Effect */
.grain {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 50;
    opacity: 0.04;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.6'/></svg>");
}

/* Utilities */
.text-spectrum {
    background: var(--gradient-spectrum);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Navbar - Completely Transparent */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2.5rem 4rem;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 40;
    background: transparent;
    border-bottom: none;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 2.1rem;
    font-weight: 600;
    letter-spacing: -0.03em;
    text-transform: lowercase;
}

.nav-logo-wrapper {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-logo-mark {
    width: 100%;
    height: 100%;
    max-width: none;
    pointer-events: none;
    object-fit: contain;
}

.nav-contact {
    color: var(--muted-foreground);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.nav-contact:hover {
    color: var(--foreground);
}

/* Main Hero */
.hero {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10rem 1.5rem 4rem;
    position: relative;
    z-index: 10;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 1152px;
    width: 100%;
}

/* Provided Logo Layout */
.logo-container {
    display: flex;
    align-items: center; 
    gap: 28px; 
    margin-bottom: 3rem;
    animation: fade-in-up 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.logo-wrapper {
    width: 100px; 
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-mark {
    width: 250px; 
    height: 250px;
    max-width: none; 
    pointer-events: none; 
}

.main-brand {   
    font-size: 120px;
    font-weight: 700;
    letter-spacing: -0.05em; 
    line-height: 1;
    margin: 0;
    text-transform: lowercase;
    color: var(--foreground); 
    position: relative; 
    z-index: 2;
}

.dot-accent {
    color: var(--accent); 
    margin: 0 0.06em;
}

/* Matching the TSX hero heading */
.hero-heading {
    max-width: 64rem;
    font-size: clamp(2.75rem, 7vw, 5.75rem);
    font-weight: 300;
    line-height: 1.02;
    letter-spacing: -0.035em;
    color: var(--foreground);
    margin-bottom: 2rem;
    animation: fade-in-up 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    max-width: 36rem;
    line-height: 1.6;
    animation: fade-in-up 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
    margin-bottom: 4rem;
}

/* Waitlist Form */
.waitlist-form-container {
    width: 100%;
    max-width: 28rem;
    animation: fade-in-up 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.45s both;
}

.waitlist-prompt {
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    color: var(--muted-foreground);
    margin-bottom: 1rem;
    text-align: center;
}

.waitlist-prompt strong {
    color: var(--foreground);
    font-weight: 600;
}

.lang-flipper {
    display: inline-flex;
    min-width: 120px; /* Prevent jitter when word width changes */
    justify-content: flex-start;
}

#langWord {
    display: inline-block;
    transition: opacity 0.3s ease, transform 0.3s ease;
    font-weight: 600;
}

#langWord.fade-out {
    opacity: 0;
    transform: translateY(-5px);
}

#langWord.fade-in {
    opacity: 0;
    transform: translateY(5px);
}

.waitlist-form.card-layout {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(34, 34, 37, 0.65);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 2rem;
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
    text-align: left;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--muted-foreground);
    letter-spacing: 0.02em;
}

.form-input, .form-textarea {
    width: 100%;
    padding: 0.875rem 1.125rem;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    outline: none;
}

.form-input::placeholder, .form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-input:focus, .form-textarea:focus {
    border-color: rgba(255, 255, 255, 0.3);
    background-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.05);
}

.form-textarea {
    resize: vertical;
    min-height: 80px;
}

/* Fix browser autofill styling overriding dark background */
.form-input:-webkit-autofill,
.form-input:-webkit-autofill:hover, 
.form-input:-webkit-autofill:focus, 
.form-input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px #222225 inset !important;
    -webkit-text-fill-color: #ffffff !important;
    transition: background-color 5000s ease-in-out 0s;
}

.submit-btn {
    display: inline-flex;
    height: 3.25rem;
    padding: 0 1.5rem;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background-color: #f5f5f5;
    color: #111111;
    font-weight: 500;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.full-width-btn {
    width: 100%;
    margin-top: 0.5rem;
}

.submit-btn:hover {
    background-color: #ffffff;
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.success-message.card-layout {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 3rem 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(34, 34, 37, 0.65);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: var(--shadow-card);
    animation: fade-in 0.5s ease-out;
    margin: 0 auto;
    text-align: center;
}

.success-icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 8px;
    background-color: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    flex-shrink: 0;
}

.success-text {
    flex: 1;
    margin: 0 1rem;
}

.success-text h4 {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 1rem 0 0.5rem 0;
    letter-spacing: -0.01em;
}

.success-text p {
    color: #888888;
    font-size: 1rem;
    margin: 0 0 1.5rem 0;
}

.success-okay-btn {
    padding: 0 1.25rem;
    height: 2.25rem;
    border-radius: 6px;
    background-color: #f5f5f5;
    color: #111111;
    font-weight: 500;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.success-okay-btn:hover {
    background-color: #ffffff;
}

/* Footer */
.footer {
    position: relative;
    padding: 4rem 2rem 2rem;
    display: flex;
    justify-content: center;
    width: 100%;
    animation: fade-in-up 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.6s both;
}

.footer::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background-image: radial-gradient(var(--border) 1px, transparent 1px);
    background-size: 24px 24px;
    mask-image: linear-gradient(to bottom, transparent, black 20%);
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 20%);
}

.footer-content {
    width: 100%;
    max-width: 1152px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer .logo-container {
    margin-bottom: 2rem;
    gap: 8px;
}

.footer .logo-wrapper {
    width: 40px;
    height: 40px;
}

.footer .logo-mark {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer .main-brand {
    font-size: 32px;
    font-weight: 500;
    letter-spacing: -0.03em;
    text-shadow: none;
}

.footer .dot-accent {
    text-shadow: none;
}

.footer-bottom {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.footer-divider {
    height: 1px;
    width: 100%;
    background-color: var(--border);
    margin-bottom: 1.5rem;
}

.footer-copy-row {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    color: var(--muted-foreground);
    font-size: 0.85rem;
    opacity: 0.8;
}

.footer-copy-text {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    margin: 0;
}

.footer-dot {
    margin: 0 0.5rem;
    opacity: 0.5;
}

.footer-copy-row a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-copy-row a:hover {
    color: #ffffff;
}

.footer-copy-row .highlight {
    color: #ffffff;
    font-weight: 500;
}

/* New Landing Page Sections */
.section-container {
    width: 100%;
    max-width: 1152px;
    margin: 0 auto;
    padding: 7rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-header {
    text-align: center;
    margin-bottom: 4.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.section-badge {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0.5rem;
}

.badge-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent);
}

.section-title {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 300;
    letter-spacing: -0.04em;
    color: var(--foreground);
    line-height: 1.1;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--muted-foreground);
    max-width: 34rem;
    line-height: 1.6;
    font-weight: 300;
}

/* Glass Cards styling */
.glass-card {
    border-radius: 16px;
    border: 1px solid var(--border);
    background-color: rgba(34, 34, 37, 0.4);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: var(--shadow-card);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.glass-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    background-color: rgba(34, 34, 37, 0.55);
    transform: translateY(-4px);
    box-shadow: 0 30px 60px -20px oklch(0 0 0 / 0.8), 0 0 50px -10px oklch(0.82 0.13 200 / 0.15);
}

/* Features Bento Grid */
.features-section {
    width: 100%;
    position: relative;
    z-index: 10;
}

.features-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    width: 100%;
}

.bento-card {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 3rem 2.5rem;
    min-height: 320px;
    justify-content: space-between;
}

.bento-card.large {
    grid-column: span 2;
}

.bento-card.small {
    grid-column: span 1;
}

.bento-card-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: flex-start;
    gap: 0.875rem;
}

.bento-icon-wrapper {
    color: var(--accent);
    margin-bottom: 0.5rem;
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bento-icon-wrapper svg {
    stroke: var(--accent);
    filter: drop-shadow(0 0 6px rgba(255, 79, 0, 0.35));
    opacity: 0.9;
}

.feature-title {
    font-size: 1.35rem;
    font-weight: 400;
    color: var(--foreground);
    letter-spacing: -0.02em;
}

.feature-desc {
    font-size: 0.95rem;
    color: var(--muted-foreground);
    line-height: 1.6;
    font-weight: 300;
}

/* Bento Visual Elements */
.bento-visual-languages {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.lang-badge {
    font-size: 0.75rem;
    font-weight: 450;
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.lang-badge:hover {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
}

.bento-visual-latency {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    width: 100%;
}

.latency-track {
    height: 6px;
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 9999px;
    position: relative;
    display: flex;
    align-items: center;
}

.latency-fill {
    height: 100%;
    width: 45%;
    background: linear-gradient(90deg, var(--accent), var(--primary));
    border-radius: 9999px;
}

.latency-label {
    position: absolute;
    right: 55%;
    transform: translateX(50%);
    top: 12px;
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--primary);
    font-family: var(--font-sans);
    opacity: 0.8;
}

.bento-visual-sync {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
}

.sync-node {
    font-size: 0.75rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    color: var(--muted-foreground);
}

.sync-node.source {
    border-color: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.9);
}

.sync-node.target {
    border-color: var(--accent);
    color: #ffffff;
    box-shadow: 0 0 10px rgba(255, 79, 0, 0.15);
}

.sync-line {
    flex: 1;
    height: 1px;
    background: repeating-linear-gradient(90deg, rgba(255,255,255,0.08), rgba(255,255,255,0.08) 4px, transparent 4px, transparent 8px);
}

.bento-visual-flow {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
}

.flow-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0.75rem;
    border-radius: 8px;
    font-size: 0.8rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.flow-card.active {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
}

.flow-tag {
    font-size: 0.65rem;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--muted-foreground);
}

.flow-tag.intent {
    color: var(--accent);
}

.flow-arrow {
    color: var(--muted-foreground);
    font-weight: 300;
    opacity: 0.5;
}

/* How It Works Section */
.how-it-works {
    width: 100%;
    position: relative;
    z-index: 10;
}

.steps-flow {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 100%;
}

.step-card {
    padding: 3rem 2.25rem;
    display: flex;
    flex-direction: column;
    text-align: left;
    gap: 1rem;
}

.step-number {
    font-size: 3.5rem;
    font-weight: 200;
    background: var(--gradient-spectrum);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
    opacity: 0.65;
    font-family: var(--font-sans);
    letter-spacing: -0.05em;
}

.step-title {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--foreground);
    letter-spacing: -0.02em;
}

.step-desc {
    font-size: 0.95rem;
    color: var(--muted-foreground);
    line-height: 1.6;
    font-weight: 300;
}

/* FAQ Section */
.faq-section {
    width: 100%;
    position: relative;
    z-index: 10;
}

.faq-accordion-wrapper {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border-radius: 12px;
    border: 1px solid var(--border);
    background-color: rgba(34, 34, 37, 0.25);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.12);
    background-color: rgba(34, 34, 37, 0.4);
}

.faq-question-btn {
    width: 100%;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    font-family: inherit;
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--foreground);
    text-align: left;
    cursor: pointer;
    transition: all 0.2s ease;
    outline: none;
    letter-spacing: -0.015em;
}

.faq-icon-box {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted-foreground);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.faq-question-btn:hover .faq-icon-box {
    background: rgba(255, 255, 255, 0.08);
    color: var(--foreground);
}

.faq-question-btn[aria-expanded="true"] .faq-icon-box {
    transform: rotate(180deg);
    background: var(--foreground);
    color: var(--background);
}

.faq-answer-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease-out;
    opacity: 0;
}

.faq-answer-content {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: var(--muted-foreground);
    font-size: 0.975rem;
    line-height: 1.6;
    font-weight: 300;
}

/* Bottom CTA Section */
.bottom-cta {
    width: 100%;
    padding: 4rem 2rem 8rem 2rem;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 10;
}

.cta-card {
    width: 100%;
    max-width: 1152px;
    padding: 6rem 3rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, oklch(0.82 0.13 200 / 0.12), transparent 70%);
    pointer-events: none;
}

.cta-title {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 300;
    letter-spacing: -0.035em;
    color: var(--foreground);
    max-width: 42rem;
    line-height: 1.15;
}

.cta-desc {
    font-size: 1.15rem;
    color: var(--muted-foreground);
    max-width: 32rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    font-weight: 300;
}

.scroll-to-waitlist-btn {
    font-weight: 600;
    padding: 0 2.5rem;
    font-size: 1rem;
    height: 3.5rem;
    box-shadow: 0 4px 24px oklch(1 0 0 / 0.08);
}

/* Animations */
@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(24px);
        filter: blur(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0px);
    }
}

@keyframes fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero {
        padding: 7rem 1.5rem 4rem;
    }

    .navbar {
        padding: 1.25rem 1.5rem;
    }

    .nav-brand {
        font-size: 1.3rem;
        gap: 8px;
    }

    .nav-logo-wrapper {
        width: 32px;
        height: 32px;
    }

    .nav-contact {
        font-size: 0.75rem;
    }
    
    .hero .logo-container {
        display: none;
    }
    
    .hero-heading {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }

    .waitlist-form-container {
        max-width: 100%;
    }

    .waitlist-form.card-layout {
        padding: 1.5rem;
    }

    .form-input, .form-textarea {
        font-size: 0.9rem;
    }

    .submit-btn {
        height: 3rem;
        font-size: 0.9rem;
    }
    
    .footer {
        padding: 3rem 1.5rem 1.5rem;
    }

    .footer-copy-row {
        justify-content: center;
    }

    .footer-copy-text {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
        justify-content: center;
    }

    .footer-dot {
        display: none;
    }

    /* Section Mobile Overrides */
    .section-container {
        padding: 4rem 1rem;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    .features-bento, .steps-flow {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .bento-card.large, .bento-card.small {
        grid-column: span 1;
        min-height: auto;
    }

    .bento-card, .step-card {
        padding: 2.25rem 1.75rem;
    }

    .cta-card {
        padding: 3.5rem 1.5rem;
        border-radius: 16px;
    }

    .scroll-to-waitlist-btn {
        width: 100%;
    }

    .faq-question-btn {
        font-size: 1rem;
        padding: 1.25rem 1rem;
    }

    .faq-answer-content {
        padding: 0 1rem 1.25rem 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .success-message {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .success-text {
        margin: 0;
    }
    
    .success-okay-btn {
        width: 100%;
    }
}
