/* =========================================================
   MODE — Premium Web Design & Development Studio
   Master stylesheet
   ========================================================= */

:root {
    /* Palette */
    --bg: #0A0A0A;
    --bg-2: #0F0F10;
    --panel: #141416;
    --panel-2: #1A1A1D;
    --border: #23232A;
    --border-strong: #2E2E36;
    --text: #F5F5F0;
    --text-dim: #A8A8A2;
    --text-mute: #6B6B66;
    --accent: #C6FF3D;
    --accent-2: #A5E52C;
    --accent-glow: rgba(198, 255, 61, 0.35);
    --danger: #FF5A5A;
    --success: #7CE38B;

    /* Type */
    --f-display: 'Syne', 'Manrope', system-ui, sans-serif;
    --f-body: 'Manrope', system-ui, sans-serif;

    /* Motion */
    --e-fast: 180ms cubic-bezier(.2,.7,.2,1);
    --e-med: 320ms cubic-bezier(.2,.7,.2,1);
    --e-slow: 620ms cubic-bezier(.2,.7,.2,1);

    /* Layout */
    --wrap: 1240px;
    --gutter: clamp(20px, 4vw, 40px);
    --radius: 14px;
    --radius-lg: 22px;
}

/* Base ================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: var(--f-body);
    font-size: 16px;
    line-height: 1.55;
    font-weight: 400;
    letter-spacing: -0.005em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

::selection { background: var(--accent); color: #0A0A0A; }

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

/* Typography ============================================= */
h1, h2, h3, h4, h5 {
    font-family: var(--f-display);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin: 0 0 0.4em;
}
h1 { font-size: clamp(2.6rem, 6.5vw, 5.6rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 4.4vw, 3.6rem); }
h3 { font-size: clamp(1.35rem, 2.2vw, 1.75rem); }
p  { color: var(--text-dim); margin: 0 0 1rem; }

.eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--f-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent);
}
.eyebrow::before {
    content: "";
    width: 26px; height: 1px;
    background: var(--accent);
    display: inline-block;
}
.txt-lime { color: var(--accent); }
.txt-dim  { color: var(--text-dim); }

/* Utility ================================================ */
.wrap {
    max-width: var(--wrap);
    margin: 0 auto;
    padding: 0 var(--gutter);
    width: 100%;
}
.section {
    padding: clamp(80px, 12vw, 160px) 0;
    position: relative;
}
.section--tight { padding: clamp(60px, 8vw, 110px) 0; }

.grid { display: grid; gap: 24px; }
.hidden { display: none !important; }

/* Buttons ================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    font-family: var(--f-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.02em;
    border-radius: 999px;
    transition: transform var(--e-fast), background var(--e-fast), color var(--e-fast), border-color var(--e-fast), box-shadow var(--e-med);
    border: 1px solid transparent;
    white-space: nowrap;
    cursor: pointer;
}
.btn .arrow { transition: transform var(--e-med); }
.btn:hover .arrow { transform: translateX(4px); }

.btn--primary {
    background: var(--accent);
    color: #0A0A0A;
    box-shadow: 0 0 0 0 var(--accent-glow);
}
.btn--primary:hover {
    background: #D6FF6A;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px -8px var(--accent-glow);
}

.btn--ghost {
    background: transparent;
    color: var(--text);
    border-color: var(--border-strong);
}
.btn--ghost:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}

.btn--sm { padding: 10px 18px; font-size: 12.5px; }

/* Header ================================================= */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 18px 0;
    background: rgba(10,10,10,0.55);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid transparent;
    transition: background var(--e-med), border-color var(--e-med), padding var(--e-med);
}
.site-header.is-scrolled {
    background: rgba(10,10,10,0.85);
    border-bottom-color: var(--border);
    padding: 12px 0;
}
.header-inner {
    display: flex; align-items: center; justify-content: space-between;
    gap: 20px;
}
.nav {
    display: flex; align-items: center; gap: 6px;
}
.nav a {
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dim);
    border-radius: 999px;
    transition: color var(--e-fast), background var(--e-fast);
    position: relative;
}
.nav a:hover, .nav a.is-active { color: var(--text); }
.nav a.nav-cta {
    background: var(--accent);
    color: #0A0A0A;
    font-weight: 600;
    margin-left: 10px;
}
.nav a.nav-cta:hover { background: #D6FF6A; }

/* Logo =================================================== */
.logo {
    display: inline-flex; align-items: center; gap: 12px;
    font-family: var(--f-display);
    font-weight: 700;
    font-size: 20px;
    letter-spacing: -0.02em;
    color: var(--text);
}
.logo-mark {
    width: 200px;
    height: 60px;
    display: block;
    object-fit: contain;
    flex-shrink: 0;
}
.logo-mark::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 55%, rgba(255,255,255,0.35) 60%, transparent 65%);
    transform: translateX(-100%);
    transition: transform var(--e-slow);
}
.logo:hover .logo-mark::after { transform: translateX(100%); }
.logo-dot { color: var(--accent); }

/* Hamburger ============================================== */
.burger {
    display: none;
    width: 42px; height: 42px;
    border: 1px solid var(--border-strong);
    border-radius: 12px;
    align-items: center; justify-content: center;
    flex-direction: column;
    gap: 5px;
    transition: border-color var(--e-fast);
}
.burger span {
    width: 18px; height: 1.5px;
    background: var(--text);
    border-radius: 2px;
    transition: transform var(--e-med), opacity var(--e-fast);
}
.burger.is-open span:nth-child(1) { transform: translateY(3.25px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-3.25px) rotate(-45deg); }

/* Mobile nav ============================================= */
.mobile-nav {
    position: fixed;
    inset: 0;
    z-index: 90;
    background: rgba(10,10,10,0.96);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 110px var(--gutter) 60px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity var(--e-med), transform var(--e-med);
}
.mobile-nav.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
.mobile-nav a {
    font-family: var(--f-display);
    font-size: 32px;
    font-weight: 600;
    color: var(--text);
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    display: flex; justify-content: space-between; align-items: center;
    transition: color var(--e-fast), padding var(--e-fast);
}
.mobile-nav a:hover { color: var(--accent); padding-left: 8px; }
.mobile-nav a::after { content: "→"; opacity: 0; transition: opacity var(--e-fast); }
.mobile-nav a:hover::after { opacity: 1; }
.mobile-nav a.nav-cta {
    color: var(--accent);
    border-color: var(--accent);
    margin-top: 12px;
}

/* HERO =================================================== */
.hero {
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: clamp(30px, 6vw, 80px);
    align-items: center;
}
.hero h1 {
    letter-spacing: -0.035em;
}
.hero h1 .lime { color: var(--accent); font-style: italic; font-weight: 500; }
.hero-sub {
    max-width: 520px;
    font-size: 1.05rem;
    color: var(--text-dim);
    margin: 24px 0 40px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-meta {
    display: flex;
    gap: 44px;
    margin-top: 70px;
    padding-top: 30px;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
}
.hero-meta .stat { display: flex; flex-direction: column; }
.hero-meta .stat b {
    font-family: var(--f-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--text);
    letter-spacing: -0.02em;
}
.hero-meta .stat span {
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-mute);
    margin-top: 4px;
}

/* Hero visual — abstract UI */
.hero-visual {
    position: relative;
    aspect-ratio: 1 / 1.05;
    max-width: 520px;
    justify-self: end;
    width: 100%;
}
.hv-card {
    position: absolute;
    background: linear-gradient(180deg, var(--panel), var(--panel-2));
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 22px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 30px 60px -30px rgba(0,0,0,0.6);
}
.hv-1 {
    top: 0; left: 0; right: 22%;
    height: 55%;
    background:
        radial-gradient(circle at 78% 20%, var(--accent-glow) 0%, transparent 60%),
        linear-gradient(180deg, var(--panel), var(--panel-2));
    overflow: hidden;
}
.hv-1 .browser-bar { display: flex; gap: 6px; }
.hv-1 .browser-bar i { width: 10px; height: 10px; border-radius: 50%; background: var(--border-strong); display: block; }
.hv-1 .glyph {
    position: absolute;
    left: 22px; right: 22px; bottom: 22px;
    height: 60%;
    background:
        linear-gradient(180deg, transparent 0 60%, rgba(198,255,61,0.08) 60%),
        repeating-linear-gradient(90deg, var(--border) 0 1px, transparent 1px 44px);
    border-radius: 10px;
    display: flex; align-items: flex-end;
    padding: 14px;
    gap: 8px;
}
.hv-1 .glyph span {
    flex: 1;
    background: var(--accent);
    border-radius: 4px 4px 0 0;
    opacity: 0.9;
}
.hv-1 .glyph span:nth-child(1) { height: 22%; opacity: 0.35; }
.hv-1 .glyph span:nth-child(2) { height: 44%; opacity: 0.5; }
.hv-1 .glyph span:nth-child(3) { height: 68%; opacity: 0.75; }
.hv-1 .glyph span:nth-child(4) { height: 92%; }
.hv-1 .glyph span:nth-child(5) { height: 54%; opacity: 0.6; }
.hv-1 .glyph span:nth-child(6) { height: 34%; opacity: 0.4; }

.hv-2 {
    bottom: 0; right: 0; left: 30%;
    height: 42%;
}
.hv-2 h4 {
    font-family: var(--f-body);
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-mute);
    margin: 0 0 14px;
    font-weight: 600;
}
.hv-2 .row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 10px 0;
    border-top: 1px dashed var(--border);
    font-size: 13px;
    color: var(--text-dim);
}
.hv-2 .row b { color: var(--accent); font-weight: 600; }

.hv-3 {
    position: absolute;
    top: 42%;
    left: -14px;
    width: 148px;
    background: var(--accent);
    color: #0A0A0A;
    padding: 16px 18px;
    border-radius: 16px;
    border: none;
    box-shadow: 0 20px 40px -12px var(--accent-glow);
    animation: float 5s ease-in-out infinite;
}
.hv-3 .num {
    font-family: var(--f-display);
    font-size: 34px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.03em;
}
.hv-3 .lbl { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.75; margin-top: 4px; display: block; }

@keyframes float {
    0%,100% { transform: translateY(0); }
    50%     { transform: translateY(-10px); }
}

/* Marquee ================================================ */
.marquee {
    padding: 40px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    background: var(--bg-2);
}
.marquee-track {
    display: flex; gap: 70px;
    white-space: nowrap;
    animation: scroll 32s linear infinite;
    font-family: var(--f-display);
    font-size: clamp(1.4rem, 3vw, 2rem);
    color: var(--text-dim);
}
.marquee-track span { display: inline-flex; align-items: center; gap: 70px; }
.marquee-track span::after { content: "●"; color: var(--accent); font-size: 0.6em; }
@keyframes scroll { to { transform: translateX(-50%); } }

/* Section head =========================================== */
.section-head {
    display: flex; justify-content: space-between; align-items: flex-end;
    gap: 40px;
    margin-bottom: 70px;
    flex-wrap: wrap;
}
.section-head h2 { max-width: 720px; }
.section-head p { max-width: 380px; margin: 0; }

/* Services =============================================== */
.services {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.service {
    background: var(--bg);
    padding: clamp(30px, 4vw, 48px);
    position: relative;
    overflow: hidden;
    transition: background var(--e-med);
    cursor: pointer;
}
.service::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(600px circle at var(--mx,50%) var(--my,50%), rgba(198,255,61,0.06), transparent 40%);
    opacity: 0;
    transition: opacity var(--e-med);
    pointer-events: none;
}
.service:hover::before { opacity: 1; }
.service:hover { background: var(--panel); }
.service .num {
    font-family: var(--f-display);
    font-size: 14px;
    font-weight: 500;
    color: var(--accent);
    letter-spacing: 0.14em;
}
.service h3 {
    margin: 28px 0 14px;
    font-size: clamp(1.5rem, 2.4vw, 2rem);
    transition: transform var(--e-med);
}
.service:hover h3 { transform: translateX(4px); }
.service p { margin: 0 0 24px; max-width: 460px; }
.service .service-arrow {
    width: 46px; height: 46px;
    border-radius: 50%;
    border: 1px solid var(--border-strong);
    display: inline-flex; align-items: center; justify-content: center;
    transition: background var(--e-fast), color var(--e-fast), border-color var(--e-fast), transform var(--e-fast);
    color: var(--text-dim);
}
.service:hover .service-arrow {
    background: var(--accent);
    color: #0A0A0A;
    border-color: var(--accent);
    transform: rotate(-45deg);
}

/* Portfolio ============================================== */
.portfolio {
    display: grid;
    gap: 24px;
}
.pf-card {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: stretch;
    transition: transform var(--e-med), border-color var(--e-med);
}
.pf-card:hover { transform: translateY(-4px); border-color: var(--border-strong); }
.pf-card:nth-child(even) { grid-template-columns: 1fr 1.2fr; }
.pf-card:nth-child(even) .pf-visual { order: 2; }

.pf-visual {
    aspect-ratio: 4/3;
    background: var(--bg);
    position: relative;
    overflow: hidden;
    display: flex; align-items: center; justify-content: center;
}
.pf-visual::before {
    content: "";
    position: absolute; inset: 0;
    background: repeating-linear-gradient(0deg, transparent 0 39px, rgba(255,255,255,0.02) 39px 40px);
    pointer-events: none;
}
.pf-visual .mockup {
    width: 78%;
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, var(--panel-2), var(--panel));
    border-radius: 10px;
    border: 1px solid var(--border);
    box-shadow: 0 40px 80px -40px rgba(0,0,0,0.7);
    padding: 12px;
    display: flex; flex-direction: column; gap: 8px;
}
.pf-visual .mockup .dots { display: flex; gap: 4px; }
.pf-visual .mockup .dots i { width: 7px; height: 7px; border-radius: 50%; background: var(--border-strong); }
.pf-visual .mockup .body {
    flex: 1;
    border-radius: 6px;
    background:
        linear-gradient(180deg, rgba(198,255,61,0.15), transparent 40%),
        repeating-linear-gradient(0deg, transparent 0 10px, rgba(255,255,255,0.03) 10px 11px);
    position: relative;
}
.pf-card--01 .mockup .body { background: linear-gradient(140deg, #1e3a2b, #0e1f18); }
.pf-card--02 .mockup .body { background: linear-gradient(140deg, #2d1e3a, #1a1027); }
.pf-card--03 .mockup .body { background: linear-gradient(140deg, #3a2e1e, #1f1710); }

.pf-body {
    padding: clamp(30px, 3.5vw, 48px);
    display: flex; flex-direction: column; justify-content: space-between;
    gap: 20px;
}
.pf-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.pf-tags span {
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 6px 12px;
    border: 1px solid var(--border-strong);
    border-radius: 999px;
    color: var(--text-dim);
}
.pf-body h3 { margin: 20px 0 12px; }
.pf-body p { margin: 0; }

/* Process ================================================ */
.process {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.process-step {
    background: linear-gradient(180deg, var(--panel), var(--bg));
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 34px 28px;
    position: relative;
    overflow: hidden;
    transition: transform var(--e-med), border-color var(--e-med);
}
.process-step:hover { transform: translateY(-6px); border-color: var(--accent); }
.process-step .step-num {
    font-family: var(--f-display);
    font-size: 4rem;
    font-weight: 300;
    line-height: 1;
    color: var(--accent);
    letter-spacing: -0.05em;
    margin-bottom: 30px;
}
.process-step h3 { margin: 0 0 10px; font-size: 1.4rem; }
.process-step p { margin: 0; font-size: 0.95rem; }

/* About ================================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(30px, 6vw, 80px);
    align-items: center;
}
.about-visual {
    aspect-ratio: 1/1;
    background: linear-gradient(135deg, var(--panel), var(--bg));
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    display: flex; align-items: center; justify-content: center;
}

.about-visual .big-M {
    position: relative;
    font-family: var(--f-display);
    font-size: clamp(10rem, 24vw, 20rem);
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 1px var(--accent);
    letter-spacing: -0.05em;
    line-height: 0.8;
}
.about-copy p { font-size: 1.05rem; margin-bottom: 20px; color: var(--text-dim); }
.about-copy p strong { color: var(--text); font-weight: 600; }
.about-values {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 30px;
}
.about-values li {
    list-style: none;
    padding: 14px 18px;
    border: 1px solid var(--border);
    border-radius: 12px;
    font-size: 14px;
    color: var(--text);
    display: flex; align-items: center; gap: 10px;
}
.about-values li::before { content: "◇"; color: var(--accent); }

.founder-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* About aur Founder section ke beech ka extra gap */
#founder {
    padding-top: 0px;
}

/* CTA ==================================================== */
.cta-section {
    padding: clamp(60px, 10vw, 130px) 0;
}
.cta {
    background:
        radial-gradient(circle at 20% 30%, rgba(198,255,61,0.12), transparent 55%),
        linear-gradient(160deg, var(--panel), var(--bg-2));
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: clamp(50px, 8vw, 100px) clamp(30px, 6vw, 80px);
    text-align: left;
    position: relative;
    overflow: hidden;
}
.cta h2 {
    font-size: clamp(2rem, 5vw, 4rem);
    max-width: 780px;
    margin-bottom: 30px;
}
.cta h2 .lime { color: var(--accent); font-style: italic; font-weight: 500; }
.cta p { max-width: 560px; margin-bottom: 40px; }

/* Footer ================================================= */
.site-footer {
    background: var(--bg-2);
    border-top: 1px solid var(--border);
    padding: 80px 0 30px;
    position: relative;
}
.footer-top {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}
.footer-brand p { max-width: 320px; margin: 20px 0 24px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 40px; height: 40px;
    border: 1px solid var(--border-strong);
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 14px;
    color: var(--text-dim);
    transition: background var(--e-fast), color var(--e-fast), border-color var(--e-fast);
}
.footer-social a:hover { background: var(--accent); color: #0A0A0A; border-color: var(--accent); }
.footer-col h4 {
    font-family: var(--f-body);
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-mute);
    font-weight: 600;
    margin-bottom: 20px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.footer-col a { color: var(--text-dim); font-size: 14px; transition: color var(--e-fast); }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 24px;
    display: flex; justify-content: space-between; align-items: center;
    gap: 20px; flex-wrap: wrap;
    font-size: 12.5px;
    color: var(--text-mute);
    letter-spacing: 0.02em;
}

/* Appointment page ======================================= */
.page-hero {
    padding: 180px 0 60px;
    text-align: left;
}
.page-hero h1 { max-width: 900px; }
.page-hero p { max-width: 620px; font-size: 1.1rem; margin-top: 24px; }

.form-wrap {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 60px;
    padding-bottom: 120px;
    align-items: start;
}
.form-card {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: clamp(30px, 4vw, 50px);
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}
.form-row--full { grid-template-columns: 1fr; }
.field { display: flex; flex-direction: column; }
.field label {
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-mute);
    margin-bottom: 10px;
    font-weight: 600;
}
.field input, .field select, .field textarea {
    background: var(--bg);
    border: 1px solid var(--border-strong);
    color: var(--text);
    padding: 14px 16px;
    border-radius: 12px;
    font-family: inherit;
    font-size: 15px;
    transition: border-color var(--e-fast), background var(--e-fast);
    width: 100%;
    outline: none;
}
.field input:focus, .field select:focus, .field textarea:focus {
    border-color: var(--accent);
    background: var(--bg-2);
}
.field textarea { min-height: 140px; resize: vertical; }
.field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--text-dim) 50%), linear-gradient(135deg, var(--text-dim) 50%, transparent 50%); background-position: calc(100% - 20px) center, calc(100% - 14px) center; background-size: 6px 6px, 6px 6px; background-repeat: no-repeat; padding-right: 40px; }
.field.has-error input, .field.has-error select, .field.has-error textarea {
    border-color: var(--danger);
}
.field-error {
    color: var(--danger);
    font-size: 12px;
    margin-top: 6px;
    display: none;
}
.field.has-error .field-error { display: block; }
.form-submit {
    display: flex; justify-content: space-between; align-items: center;
    gap: 20px; flex-wrap: wrap;
    margin-top: 10px;
}
.form-note { font-size: 12px; color: var(--text-mute); max-width: 260px; }

.form-alert {
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 24px;
    font-size: 14px;
    display: flex; align-items: center; gap: 12px;
}
.form-alert--success { background: rgba(124,227,139,0.08); border: 1px solid rgba(124,227,139,0.3); color: var(--success); }
.form-alert--error   { background: rgba(255,90,90,0.08); border: 1px solid rgba(255,90,90,0.3); color: var(--danger); }

.form-side .side-card {
    background: linear-gradient(180deg, var(--panel), var(--bg-2));
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 34px;
    margin-bottom: 20px;
}
.form-side h4 {
    font-family: var(--f-body);
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-mute);
    font-weight: 600;
    margin: 0 0 20px;
}
.form-side ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 16px; }
.form-side li { display: flex; gap: 14px; font-size: 14px; color: var(--text-dim); }
.form-side li b { color: var(--accent); font-weight: 600; min-width: 22px; font-family: var(--f-display); font-size: 18px; }

/* Reveal on scroll ======================================= */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 700ms cubic-bezier(.2,.7,.2,1), transform 700ms cubic-bezier(.2,.7,.2,1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal[data-delay="1"] { transition-delay: 80ms; }
.reveal[data-delay="2"] { transition-delay: 160ms; }
.reveal[data-delay="3"] { transition-delay: 240ms; }
.reveal[data-delay="4"] { transition-delay: 320ms; }

/* Cursor accent (optional decorative) */
.grain {
    pointer-events: none;
    position: fixed; inset: 0;
    z-index: 1;
    opacity: 0.05;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' /%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' /%3E%3C/svg%3E");
}

.mockup .body {
    overflow: hidden;
}

.mockup .body img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: top;
}

.pf-link {
    display: inline-flex;
    margin-top: 22px;
    color: var(--accent);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.25s ease;
}

.pf-link:hover {
    border-bottom-color: var(--accent);
    transform: translateX(4px);
}