/* style.css - V7 (Cloneforce Standard) */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Inter:wght@400;500;600&display=swap');

:root {
    --bg-main: #060608;
    --bg-surface: #0f0f13;
    --bg-surface-2: #16161a;
    --text-main: #ffffff;
    --text-dim: #a1a1aa;
    --text-muted: #71717a;
    --brand: #f59e0b;
    --brand-2: #eab308;
    --line: rgba(255, 255, 255, 0.08);
    --line2: rgba(255, 255, 255, 0.15);
    --btn-bg: #ffffff;
    --btn-fg: #000000;
}

[data-theme="light"] {
    --bg-main: #fcfcfc;
    --bg-surface: #ffffff;
    --bg-surface-2: #f4f4f5;
    --text-main: #09090b;
    --text-dim: #52525b;
    --text-muted: #a1a1aa;
    --brand: #d97706;
    --brand-2: #b45309;
    --line: rgba(0, 0, 0, 0.08);
    --line2: rgba(0, 0, 0, 0.15);
    --btn-bg: #09090b;
    --btn-fg: #ffffff;
}

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

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    transition: background-color 0.3s ease;
}

h1, h2, h3, h4 { font-family: 'Outfit', serif; font-weight: 500; letter-spacing: -0.02em; }

/* Navbar */
header {
    position: sticky; top: 0; z-index: 50;
    border-bottom: 1px solid var(--line);
    background: rgba(6, 6, 8, 0.85); /* Fallback for older phones */
    background: color-mix(in srgb, var(--bg-main) 80%, transparent);
    backdrop-filter: saturate(150%) blur(12px);
    -webkit-backdrop-filter: saturate(150%) blur(12px);
}
    -webkit-backdrop-filter: saturate(150%) blur(12px);
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; height: 68px; }

.logo { font-size: 18px; font-weight: 600; display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--text-main); }
.logo-dot { width: 18px; height: 18px; border-radius: 50%; background: radial-gradient(circle at 30% 30%, #F2C77A, #E8A24A 55%, #8a5a1f 100%); box-shadow: 0 6px 18px rgba(232,162,74,0.25); }

.nav-links { display: flex; align-items: center; gap: 28px; font-size: 14px; }
.nav-links a { color: var(--text-dim); text-decoration: none; transition: color 0.2s; }
.nav-links a:hover { color: var(--text-main); }

.btn-contact { border: 1px solid var(--line2); border-radius: 99px; padding: 8px 14px; color: var(--text-main); transition: background 0.2s; }
.btn-contact:hover { background: var(--bg-surface); }
.btn-theme { background: transparent; border: none; cursor: pointer; color: var(--text-dim); }

/* Hero */
.hero { position: relative; padding: 120px 0 80px; overflow: hidden; text-align: left; }
.grad-hero { position: absolute; top: -20%; left: -10%; width: 120%; height: 700px; background: radial-gradient(ellipse at center, rgba(232,162,74,0.15) 0%, transparent 60%); filter: blur(60px); z-index: -1; pointer-events: none; }
.hero-pill { display: inline-flex; align-items: center; gap: 10px; border: 1px solid var(--line2); background: var(--bg-surface); padding: 8px 14px; border-radius: 99px; font-size: 13px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-dim); margin-bottom: 28px; }
.pill-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--brand); box-shadow: 0 0 0 4px rgba(232,162,74,0.18); }
.hero h1 { font-size: clamp(44px, 7vw, 88px); line-height: 1.02; margin-bottom: 24px; color: var(--text-main); }
.hero h1 em { font-style: italic; color: var(--brand-2); }
.hero p { font-size: 19px; color: var(--text-dim); max-width: 640px; line-height: 1.6; margin-bottom: 36px; }
.hero-btns { display: flex; gap: 14px; }
.btn-primary { background: var(--btn-bg); color: var(--btn-fg); padding: 0 24px; height: 48px; border-radius: 99px; display: inline-flex; align-items: center; font-weight: 500; font-size: 15px; text-decoration: none; transition: transform 0.2s, opacity 0.2s; }
.btn-primary:hover { transform: translateY(-1px); opacity: 0.9; }

/* Sections */
.section { padding: 96px 0; border-top: 1px solid var(--line); }
.section-tag { font-size: 12px; text-transform: uppercase; letter-spacing: 0.16em; color: var(--brand); display: block; margin-bottom: 16px; }
.section-title { font-size: clamp(32px, 4.6vw, 54px); line-height: 1.05; margin-bottom: 16px; }
.section-desc { font-size: 19px; color: var(--text-dim); max-width: 640px; margin-bottom: 64px; }

/* Bento Grid */
.bento-grid { display: grid; gap: 20px; grid-template-columns: repeat(3, 1fr); }
.bento-card { background: var(--bg-surface); border: 1px solid var(--line); border-radius: 22px; padding: 28px; transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s; display: flex; flex-direction: column; }
.bento-card:hover { transform: translateY(-2px); border-color: var(--line2); background: var(--bg-surface-2); }
.bento-num { font-family: 'Outfit', serif; font-size: 26px; font-style: italic; color: var(--brand); margin-bottom: 16px; }
.bento-card h3 { font-size: 28px; margin-bottom: 12px; }
.bento-card p { font-size: 15.5px; color: var(--text-dim); margin-bottom: 24px; line-height: 1.6; }
.bento-img { width: 100%; height: 240px; object-fit: cover; border-radius: 12px; margin-top: auto; }

/* Founder Section */
.founder-grid { display: grid; gap: 64px; grid-template-columns: 1.3fr 0.9fr; align-items: start; }
.founder-text p { font-size: 21px; font-style: italic; color: var(--text-main); font-family: 'Outfit', serif; line-height: 1.35; margin-bottom: 20px; }
.founder-text p.dim { font-size: 16px; color: var(--text-dim); font-family: 'Inter', sans-serif; font-style: normal; }
.founder-sidebar { background: linear-gradient(to bottom, var(--bg-surface-2), var(--bg-surface)); border: 1px solid var(--line2); border-radius: 22px; padding: 28px; position: sticky; top: 92px; }

/* Form */
.form-row { display: flex; gap: 16px; }
.contact-form { background: var(--bg-surface); border: 1px solid var(--line2); border-radius: 18px; padding: 32px; max-width: 560px; margin: 0 auto; }
.form-group { margin-bottom: 16px; text-align: left; }
.form-label { display: block; font-size: 12px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-muted); margin-bottom: 6px; }
.form-input { width: 100%; height: 44px; background: var(--bg-main); border: 1px solid var(--line2); border-radius: 8px; padding: 0 14px; color: var(--text-main); outline: none; transition: border-color 0.2s; font-family: 'Inter', sans-serif; }
.form-input:focus { border-color: var(--brand); }
textarea.form-input { height: auto; padding: 12px 14px; resize: vertical; min-height: 120px; }

/* Halo */
.mouse-halo { position: fixed; top: 0; left: 0; width: 600px; height: 600px; background: radial-gradient(circle, var(--brand) 0%, transparent 60%); border-radius: 50%; transform: translate(-50%, -50%); pointer-events: none; opacity: 0.08; filter: blur(80px); z-index: 0; mix-blend-mode: screen; transition: opacity 0.5s; }
[data-theme="light"] .mouse-halo { mix-blend-mode: multiply; opacity: 0.05; }

/* Responsive */
@media (max-width: 1024px) {
    .bento-grid { grid-template-columns: repeat(2, 1fr); }
    .founder-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 60px; }
}
@media (max-width: 768px) {
    .form-row { flex-direction: column; gap: 0; }
    .bento-grid { grid-template-columns: 1fr; }
    .nav-links { display: none; }
    .hero h1 { font-size: 44px; }
    .section { padding: 64px 0; }
    .founder-sidebar { position: static; }
}

/* Modals */
.modal { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.6); backdrop-filter: blur(8px); z-index: 1000; justify-content: center; align-items: center; }
.modal.active { display: flex; }
.modal-content { background: var(--bg-surface); padding: 40px; border-radius: 22px; border: 1px solid var(--line); width: 90%; max-width: 350px; text-align: center; position: relative; }
.close-modal { position: absolute; top: 15px; right: 20px; cursor: pointer; color: var(--text-muted); font-size: 1.2rem; }
