@font-face { font-family: 'Geom'; src: url('Geom-Regular.woff2') format('woff2'); font-weight: 400; font-display: swap; }
@font-face { font-family: 'Geom'; src: url('Geom-Medium.woff2') format('woff2'); font-weight: 500; font-display: swap; }
@font-face { font-family: 'Geom'; src: url('Geom-SemiBold.woff2') format('woff2'); font-weight: 600; font-display: swap; }
@font-face { font-family: 'Geom'; src: url('Geom-Bold.woff2') format('woff2'); font-weight: 700; font-display: swap; }
@font-face { font-family: 'Geom'; src: url('Geom-Black.woff2') format('woff2'); font-weight: 900; font-display: swap; }

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

:root {
    --bg:     #f0efe9;
    --bg2:    #e8e7e1;
    --white:  #ffffff;
    --black:  #121212;
    --grey:   #666660;
    --grey2:  #9e9e98;
    --border: #d0cfc8;
    --green:  #72F14F;
    --blue:   #2B75FF;
    --red:    #EB5D4D;
    --yellow: #FFF04D;
    --pink:   #A53DFF;
    --font:   'Geom', sans-serif;
    --ease:   cubic-bezier(0.4, 0, 0.2, 1);
}

html { -webkit-font-smoothing: antialiased; scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--bg); color: var(--black); overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
button { border: none; background: none; cursor: pointer; font-family: var(--font); }

/* ===== CURSOR ===== */
.cursor { position: fixed; width: 8px; height: 8px; background: var(--black); pointer-events: none; z-index: 9999; top: 0; left: 0; }
.cursor-ring { position: fixed; width: 36px; height: 36px; border: 1.5px solid rgba(0,0,0,0.2); pointer-events: none; z-index: 9998; top: 0; left: 0; transition: width 0.2s, height 0.2s, border-color 0.2s; }

/* ===== BUTTONS ===== */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 28px; font-size: 13px; font-weight: 600; letter-spacing: 0.02em; transition: all 0.2s var(--ease); cursor: pointer; font-family: var(--font); }
.btn-nav { padding: 9px 20px; background: var(--black); color: #fff; font-size: 12px; transition: background 0.15s; }
.btn-nav:hover { background: #2a2a2a; }
.btn-dark { background: var(--black); color: #fff; }
.btn-dark:hover { background: #2a2a2a; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,0,0,0.15); }
.btn-ghost { background: rgba(255,255,255,0.1); color: #fff; border: 1.5px solid rgba(255,255,255,0.3); backdrop-filter: blur(8px); }
.btn-ghost:hover { background: rgba(255,255,255,0.22); }
.btn-green { background: var(--green); color: var(--black); }
.btn-green:hover { filter: brightness(0.92); transform: translateY(-1px); }
.btn-sm { padding: 9px 18px; font-size: 12px; }

/* ===== NAV ===== */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 900; background: rgba(240,239,233,0.88); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid transparent; transition: border-color 0.3s; }
.nav.scrolled { border-bottom-color: var(--border); }
.nav-inner { max-width: 1100px; margin: 0 auto; padding: 0 40px; height: 58px; display: flex; align-items: center; justify-content: space-between; }
.nav-logo img { height: 22px; transition: opacity 0.2s; }
.nav-logo:hover img { opacity: 0.6; }
.nav-links { display: flex; gap: 28px; }
.nav-links a { font-size: 13px; font-weight: 450; color: var(--grey); transition: color 0.15s; }
.nav-links a:hover { color: var(--black); }

/* ===== HERO ===== */
.hero { min-height: 100vh; display: flex; align-items: center; padding: 100px 40px 80px; text-align: center; position: relative; overflow: hidden; background: var(--black); }
.hero-video-bg { position: absolute; inset: 0; z-index: 0; }
.hero-video-bg video { width: 100%; height: 100%; object-fit: cover; }
.hero-video-bg::after { content: ''; position: absolute; inset: 0; background: rgba(10,10,10,0.6); }
.hero-video-bg::before { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 220px; z-index: 2; background: linear-gradient(to bottom, transparent, var(--bg)); }
.hero-inner { position: relative; z-index: 2; max-width: 860px; margin: 0 auto; }

.hero-tag { display: inline-flex; align-items: center; gap: 8px; padding: 5px 14px; border: 1px solid rgba(255,255,255,0.2); background: rgba(255,255,255,0.08); font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.8); margin-bottom: 40px; backdrop-filter: blur(8px); opacity: 0; animation: rise 0.7s 0.1s var(--ease) forwards; }
.tag-pip { width: 6px; height: 6px; background: var(--green); flex-shrink: 0; animation: pip 2s infinite; }
@keyframes pip { 0%,100%{opacity:1} 50%{opacity:0.3} }

.hero-h1 { font-size: clamp(54px, 8vw, 94px); font-weight: 700; line-height: 1.05; letter-spacing: -0.04em; color: #fff; margin-bottom: 28px; opacity: 0; animation: rise 0.7s 0.2s var(--ease) forwards; }
.cycle-wrap { display: inline-block; min-width: 370px; text-align: left; white-space: nowrap; }
.cycle-word { display: inline-block; color: var(--green); transition: opacity 0.28s, transform 0.28s; }

.hero-p { font-size: 18px; color: rgba(255,255,255,0.65); max-width: 520px; margin: 0 auto 44px; line-height: 1.75; opacity: 0; animation: rise 0.7s 0.3s var(--ease) forwards; }
.hero-btns { display: flex; gap: 12px; justify-content: center; margin-bottom: 72px; opacity: 0; animation: rise 0.7s 0.4s var(--ease) forwards; }
.hero-metrics { display: flex; align-items: stretch; justify-content: center; border: 1px solid rgba(255,255,255,0.15); background: rgba(255,255,255,0.06); backdrop-filter: blur(12px); opacity: 0; animation: rise 0.7s 0.5s var(--ease) forwards; }
.hero-metric { padding: 22px 40px; display: flex; flex-direction: column; gap: 5px; border-right: 1px solid rgba(255,255,255,0.12); }
.hero-metric:last-child { border-right: none; }
.hm-val { font-size: 36px; font-weight: 700; letter-spacing: -0.04em; color: #fff; }
.hm-label { font-size: 11px; color: rgba(255,255,255,0.45); letter-spacing: 0.04em; }

@keyframes rise { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* ===== TICKER ===== */
.ticker { border-top: 1px solid var(--black); border-bottom: 1px solid var(--black); background: var(--black); overflow: hidden; padding: 13px 0; }
.ticker-track { display: flex; gap: 36px; white-space: nowrap; animation: tick 30s linear infinite; width: max-content; }
.ticker-track span { font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.85); }
.ticker-track .sep { color: var(--green); font-size: 9px; }
@keyframes tick { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===== INTRO STATEMENT ===== */
.intro-statement { padding: 100px 0 80px; background: var(--bg); }
.intro-inner { max-width: 800px; margin: 0 auto; padding: 0 40px; text-align: center; }
.intro-text { font-size: clamp(20px, 2.8vw, 28px); line-height: 1.65; font-weight: 400; color: var(--grey); letter-spacing: -0.01em; margin-bottom: 48px; }
.intro-rule { height: 1px; background: var(--border); margin-bottom: 32px; }
.intro-tags { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.intro-tags span { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--grey2); padding: 5px 12px; border: 1px solid var(--border); }

/* ===== SHARED EDITORIAL LAYOUT ===== */
.ed-inner { max-width: 1100px; margin: 0 auto; padding: 0 40px; }
.ed-header { margin-bottom: 56px; }
.ed-eyebrow { display: block; font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--grey2); margin-bottom: 16px; }
.ed-title { font-size: clamp(36px, 5vw, 60px); font-weight: 700; letter-spacing: -0.035em; line-height: 1.1; margin-bottom: 16px; }
.ed-sub { font-size: 16px; color: var(--grey); line-height: 1.7; max-width: 480px; }

/* ===== SERVICES EDITORIAL ===== */
.services-editorial { padding: 100px 0; background: var(--bg); }
.svc-list { border-top: 1px solid var(--black); }
.svc-row { border-bottom: 1px solid var(--border); overflow: hidden; }
.svc-row-head {
    display: flex; align-items: center; gap: 24px;
    padding: 28px 0; cursor: pointer;
    transition: background 0.15s;
}
.svc-row:hover .svc-row-head { background: transparent; }
.svc-row-num { font-size: 12px; font-weight: 600; color: var(--grey2); letter-spacing: 0.08em; min-width: 40px; }
.svc-row-name { font-size: clamp(20px, 2.5vw, 28px); font-weight: 600; letter-spacing: -0.02em; flex: 1; transition: color 0.2s; }
.svc-row-tag { font-size: 11px; color: var(--grey2); font-weight: 500; letter-spacing: 0.04em; white-space: nowrap; }
.svc-row-toggle { width: 32px; height: 32px; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 20px; color: var(--grey2); transition: all 0.2s var(--ease); font-weight: 300; flex-shrink: 0; }
.svc-row.open .svc-row-toggle { transform: rotate(45deg); border-color: var(--black); color: var(--black); }
.svc-row.open .svc-row-name { color: var(--black); }

.svc-row-body { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.svc-row.open .svc-row-body { max-height: 400px; }
.svc-row-content { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; padding: 0 0 36px 64px; }
.svc-row-content p { font-size: 15px; color: var(--grey); line-height: 1.75; }
.svc-row-content ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.svc-row-content ul li { font-size: 13px; color: var(--grey); padding-left: 16px; position: relative; }
.svc-row-content ul li::before { content: '→'; position: absolute; left: 0; color: var(--grey2); font-size: 11px; }

/* ===== PLATFORM ===== */
.platform-section { padding: 100px 0; background: var(--bg2); }
.plat-list { border-top: 1px solid var(--border); }
.plat-row { display: flex; align-items: center; gap: 0; border-bottom: 1px solid var(--border); transition: background 0.2s var(--ease), transform 0.2s; cursor: default; }
.plat-row:hover { background: var(--black); transform: translateX(4px); }
.plat-row:hover .plat-num { color: var(--green); border-right-color: rgba(255,255,255,0.1); }
.plat-row:hover .plat-body h4 { color: #fff; }
.plat-row:hover .plat-body p { color: rgba(255,255,255,0.45); }
.plat-row:hover .plat-arr { color: var(--green); transform: translateX(6px); }
.plat-num { font-size: 12px; font-weight: 600; letter-spacing: 0.1em; color: var(--grey2); padding: 32px 28px; min-width: 90px; border-right: 1px solid var(--border); transition: color 0.2s, border-color 0.2s; }
.plat-body { padding: 32px 36px; flex: 1; }
.plat-body h4 { font-size: 18px; font-weight: 600; letter-spacing: -0.02em; margin-bottom: 5px; transition: color 0.2s; }
.plat-body p { font-size: 13px; color: var(--grey); line-height: 1.6; transition: color 0.2s; }
.plat-arr { padding: 32px 28px; font-size: 18px; color: var(--border); transition: all 0.2s var(--ease); }

/* ===== RESULTS ===== */
.results-section { padding: 100px 0; background: var(--bg); }
.results-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); }
.r-card { background: var(--bg); padding: 44px 36px; display: flex; flex-direction: column; gap: 10px; transition: background 0.2s; }
.r-card:hover { background: var(--white); }
.r-wide { grid-column: span 2; }
.r-dark { background: var(--black) !important; }
.r-dark:hover { background: #1e1e1e !important; }
.r-val { font-size: 60px; font-weight: 700; letter-spacing: -0.05em; line-height: 1; }
.r-wide .r-val { font-size: 80px; color: var(--green); }
.r-dark .r-val { color: var(--yellow); }
.r-label { font-size: 13px; color: var(--grey); line-height: 1.5; }
.r-dark .r-label { color: rgba(255,255,255,0.4); }
.r-cta { margin-top: 16px; display: inline-flex; }

/* ===== PROCESS ===== */
.process-section { padding: 100px 0; background: var(--bg2); }
.proc-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--border); }
.proc-item { padding: 44px 28px; border-right: 1px solid var(--border); position: relative; overflow: hidden; transition: background 0.3s; }
.proc-item:last-child { border-right: none; }
.proc-item::after { content: ''; position: absolute; inset: 0; background: var(--black); transform: scaleY(0); transform-origin: bottom; transition: transform 0.32s var(--ease); z-index: 0; }
.proc-item:hover::after { transform: scaleY(1); }
.proc-item > * { position: relative; z-index: 1; }
.proc-item:hover .proc-n { color: var(--green); }
.proc-item:hover h4 { color: #fff; }
.proc-item:hover p { color: rgba(255,255,255,0.45); }
.proc-n { font-size: 52px; font-weight: 700; color: var(--border); letter-spacing: -0.05em; margin-bottom: 20px; transition: color 0.3s; }
.proc-item h4 { font-size: 15px; font-weight: 600; margin-bottom: 10px; transition: color 0.3s; }
.proc-item p { font-size: 13px; color: var(--grey); line-height: 1.65; transition: color 0.3s; }

/* ===== CONTACT ===== */
.contact-section { padding: 100px 0; background: var(--bg); }
.cform { max-width: 580px; margin: 0 auto; text-align: left; }
.cform-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.cform-field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 14px; }
.cform-field label { font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--grey2); }
.cform-field input, .cform-field textarea, .cform-field select { padding: 12px 16px; border: 1px solid var(--border); font-family: var(--font); font-size: 14px; background: var(--white); color: var(--black); outline: none; transition: border-color 0.15s; -webkit-appearance: none; }
.cform-field input:focus, .cform-field textarea:focus, .cform-field select:focus { border-color: var(--black); }
.cform-field input::placeholder, .cform-field textarea::placeholder { color: var(--grey2); }
.cform-submit { width: 100%; padding: 16px; font-size: 14px; font-weight: 600; background: var(--black); color: #fff; letter-spacing: 0.02em; transition: all 0.2s; margin-top: 6px; cursor: pointer; font-family: var(--font); border: none; }
.cform-submit:hover { background: #2a2a2a; }
.cform-submit.success { background: var(--green); color: var(--black); }

/* ===== FOOTER ===== */
.footer { background: var(--black); color: rgba(255,255,255,0.9); padding: 60px 0 36px; }
.footer-inner { max-width: 1100px; margin: 0 auto; padding: 0 40px; }
.footer-top { display: flex; flex-direction: column; align-items: center; gap: 14px; margin-bottom: 48px; text-align: center; }
.footer-top img { filter: brightness(10); height: 22px; }
.footer-top p { font-size: 13px; color: rgba(255,255,255,0.35); max-width: 360px; line-height: 1.6; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; font-size: 12px; color: rgba(255,255,255,0.3); }
.footer-lnks { display: flex; gap: 20px; }
.footer-lnks a { color: rgba(255,255,255,0.3); transition: color 0.15s; }
.footer-lnks a:hover { color: rgba(255,255,255,0.8); }

/* ===== SCROLL REVEAL ===== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .results-grid { grid-template-columns: repeat(2, 1fr); }
    .r-wide { grid-column: span 2; }
    .proc-grid { grid-template-columns: repeat(2, 1fr); }
    .proc-item { border-bottom: 1px solid var(--border); }
    .nav-links { display: none; }
    .svc-row-tag { display: none; }
}
@media (max-width: 600px) {
    .hero { padding: 100px 20px 60px; }
    .hero-btns { flex-direction: column; align-items: center; }
    .hero-metrics { flex-direction: column; }
    .hero-metric { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); }
    .hero-metric:last-child { border-bottom: none; }
    .ed-inner { padding: 0 20px; }
    .cycle-wrap { min-width: unset; }
    .results-grid { grid-template-columns: 1fr; }
    .r-wide { grid-column: span 1; }
    .proc-grid { grid-template-columns: 1fr; }
    .cform-row { grid-template-columns: 1fr; }
    .svc-row-content { grid-template-columns: 1fr; gap: 20px; padding-left: 0; }
}
