/* ============================================
   TIRKEY CORP (NEW) — Oryzo.ai Faithful Clone
   Exact section structure, visual language, and layout
   ============================================ */

/* --- FONT IMPORTS (CDN loaded in HTML) --- */

/* --- DESIGN TOKENS --- */
:root {
  --bg: #050505;
  --bg-alt: #0a0a0a;
  --bg-card: #111111;
  --bg-glass: rgba(15, 15, 15, 0.6);
  --bg-glass-strong: rgba(15, 15, 15, 0.85);

  --text: #f5f5f1;
  --text-dim: #a8a29e;
  --text-muted: #57534e;
  --text-dark: #0a0a0a;

  --accent: #c9a227;
  --accent-light: #e8c547;
  --accent-dark: #a68520;
  --accent-glow: rgba(201, 162, 39, 0.35);
  --accent-subtle: rgba(201, 162, 39, 0.08);

  --border: rgba(255, 255, 255, 0.06);
  --border-light: rgba(255, 255, 255, 0.12);

  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);

  --nav-height: 64px;
}

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

html {
  -webkit-text-size-adjust: 100%;
  background: var(--bg);
  overflow-x: hidden;
}
html.lenis, html.lenis-smooth { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto; }
.lenis.lenis-stopped { overflow: hidden; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  line-height: 1.5;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }
button { appearance: none; border: none; background: none; cursor: pointer; font: inherit; color: inherit; }

::selection { background: var(--accent); color: var(--text-dark); }

/* --- GRAIN OVERLAY --- */
.grain {
  position: fixed; inset: 0; z-index: 9990;
  pointer-events: none; opacity: 0.03;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px;
}

/* ============================================
   LOADING SCREEN — CINEMATIC
   ============================================ */
#loader {
  position: fixed; inset: 0; z-index: 10000;
  background: radial-gradient(ellipse at center, #0c0a06 0%, #030303 100%);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: .8rem;
  transition: opacity 1.4s cubic-bezier(.22,1,.36,1), visibility 0s 1.4s;
  overflow: hidden;
  -webkit-backface-visibility: hidden; backface-visibility: hidden;
}
#loader.done { opacity: 0; pointer-events: none; visibility: hidden; }

/* CRT scanline overlay — no blend mode for perf */
.loader__scanline {
  position: absolute; inset: 0; z-index: 4; pointer-events: none;
  background: repeating-linear-gradient(
    0deg,
    transparent 0px,
    transparent 2px,
    rgba(0,0,0,.06) 2px,
    rgba(0,0,0,.06) 4px
  );
  transform: translateZ(0);
}

/* Subtle grid overlay */
.loader__gridlines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,162,39,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,162,39,.03) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: .6; transform: translateZ(0);
}

/* Rotating hexagons */
.loader__hex {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%,-50%);
}
.loader__hex svg { display: block; }
.loader__hex--1 {
  width: 320px; height: 320px;
  animation: hexSpin 12s linear infinite;
  will-change: transform;
}
.loader__hex--2 {
  width: 440px; height: 440px;
  animation: hexSpin 18s linear infinite reverse;
  will-change: transform;
}
@keyframes hexSpin { to { transform: translate(-50%,-50%) rotate(360deg); } }

/* Pulsing rings — 5 layers */
.loader__rings {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
  pointer-events: none;
}
.loader__rings span {
  position: absolute; left: 50%; top: 50%;
  border: 1px solid transparent; border-radius: 50%;
  animation: loaderRingPulse 3.5s ease-out infinite;
}
.loader__rings span:nth-child(1) { width:120px;height:120px;margin:-60px 0 0 -60px; animation-delay:0s; }
.loader__rings span:nth-child(2) { width:200px;height:200px;margin:-100px 0 0 -100px; animation-delay:.6s; }
.loader__rings span:nth-child(3) { width:300px;height:300px;margin:-150px 0 0 -150px; animation-delay:1.2s; }
.loader__rings span:nth-child(4) { width:400px;height:400px;margin:-200px 0 0 -200px; animation-delay:1.8s; }
.loader__rings span:nth-child(5) { width:520px;height:520px;margin:-260px 0 0 -260px; animation-delay:2.4s; }
@keyframes loaderRingPulse {
  0% { transform: scale(.6); opacity:.6; border-color: rgba(201,162,39,.25); }
  100% { transform: scale(1.4); opacity:0; border-color: rgba(201,162,39,0); }
}

/* Energy core glow — STRONG (GPU-accelerated) */
.loader__core {
  position: absolute; left: 50%; top: 50%;
  width: 200px; height: 200px; margin: -100px 0 0 -100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,162,39,.3) 0%, rgba(201,162,39,.1) 35%, transparent 70%);
  animation: corePulse 1.8s ease-in-out infinite alternate;
  z-index: 1; will-change: transform, opacity;
  transform: translateZ(0);
}
@keyframes corePulse {
  0% { transform: translateZ(0) scale(.5); opacity: .6; }
  100% { transform: translateZ(0) scale(1.5); opacity: 1; }
}

/* Orbiting particles — 3 rings of 4 */
.loader__orbs {
  position: absolute; left: 50%; top: 50%; width: 0; height: 0;
  pointer-events: none;
}
.loader__orbs span {
  position: absolute; border-radius: 50%;
  background: var(--accent);
  animation: loaderOrbit linear infinite;
  transform-origin: 0 0;
}
/* Inner ring — fast, bright */
.loader__orbs span:nth-child(1)  { width:5px;height:5px; --orbit-r:80px;  animation-duration:3s;  animation-delay:0s;    box-shadow:0 0 10px var(--accent), 0 0 20px rgba(201,162,39,.4); }
.loader__orbs span:nth-child(2)  { width:5px;height:5px; --orbit-r:80px;  animation-duration:3s;  animation-delay:.75s;  box-shadow:0 0 10px var(--accent), 0 0 20px rgba(201,162,39,.4); }
.loader__orbs span:nth-child(3)  { width:5px;height:5px; --orbit-r:80px;  animation-duration:3s;  animation-delay:1.5s;  box-shadow:0 0 10px var(--accent), 0 0 20px rgba(201,162,39,.4); }
.loader__orbs span:nth-child(4)  { width:5px;height:5px; --orbit-r:80px;  animation-duration:3s;  animation-delay:2.25s; box-shadow:0 0 10px var(--accent), 0 0 20px rgba(201,162,39,.4); }
/* Middle ring — medium, softer */
.loader__orbs span:nth-child(5)  { width:3px;height:3px; --orbit-r:140px; animation-duration:5s;  animation-delay:0s;    animation-direction:reverse; opacity:.7; box-shadow:0 0 8px rgba(201,162,39,.5); }
.loader__orbs span:nth-child(6)  { width:3px;height:3px; --orbit-r:140px; animation-duration:5s;  animation-delay:1.25s; animation-direction:reverse; opacity:.7; box-shadow:0 0 8px rgba(201,162,39,.5); }
.loader__orbs span:nth-child(7)  { width:3px;height:3px; --orbit-r:140px; animation-duration:5s;  animation-delay:2.5s;  animation-direction:reverse; opacity:.7; box-shadow:0 0 8px rgba(201,162,39,.5); }
.loader__orbs span:nth-child(8)  { width:3px;height:3px; --orbit-r:140px; animation-duration:5s;  animation-delay:3.75s; animation-direction:reverse; opacity:.7; box-shadow:0 0 8px rgba(201,162,39,.5); }
/* Outer ring — slow, faint */
.loader__orbs span:nth-child(9)  { width:2px;height:2px; --orbit-r:210px; animation-duration:8s;  animation-delay:0s;    opacity:.4; box-shadow:0 0 6px rgba(201,162,39,.3); }
.loader__orbs span:nth-child(10) { width:2px;height:2px; --orbit-r:210px; animation-duration:8s;  animation-delay:2s;    opacity:.4; box-shadow:0 0 6px rgba(201,162,39,.3); }
.loader__orbs span:nth-child(11) { width:2px;height:2px; --orbit-r:210px; animation-duration:8s;  animation-delay:4s;    opacity:.4; box-shadow:0 0 6px rgba(201,162,39,.3); }
.loader__orbs span:nth-child(12) { width:2px;height:2px; --orbit-r:210px; animation-duration:8s;  animation-delay:6s;    opacity:.4; box-shadow:0 0 6px rgba(201,162,39,.3); }
@keyframes loaderOrbit { to { transform: rotate(360deg) translateX(var(--orbit-r, 100px)); } }

/* Logo icon — floating with glow */
.loader__icon {
  position: relative; z-index: 3;
  border-radius: 50%;
  animation: iconFloat 2.5s ease-in-out infinite alternate;
}
@keyframes iconFloat {
  0% { transform: scale(1) translateY(0); filter: drop-shadow(0 0 15px rgba(201,162,39,.3)); }
  100% { transform: scale(1.08) translateY(-5px); filter: drop-shadow(0 0 40px rgba(201,162,39,.7)) drop-shadow(0 0 80px rgba(201,162,39,.2)); }
}

/* Logo text — per-letter stagger animation */
.loader__logo {
  position: relative; z-index: 3;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3vw, 2.2rem);
  font-weight: 700; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--text);
  display: flex; gap: 0;
}
.loader__logo span {
  display: inline-block;
  background: linear-gradient(180deg, var(--accent-light) 0%, var(--accent) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: letterReveal .6s ease both;
}
.loader__logo span:nth-child(1) { animation-delay: .1s; }
.loader__logo span:nth-child(2) { animation-delay: .2s; }
.loader__logo span:nth-child(3) { animation-delay: .3s; }
.loader__logo span:nth-child(4) { animation-delay: .4s; }
.loader__logo span:nth-child(5) { animation-delay: .5s; }
.loader__logo span:nth-child(6) { animation-delay: .6s; }
.loader__logo span:nth-child(7) { animation-delay: .7s; width: .3em; }
.loader__logo span:nth-child(8) { animation-delay: .8s; }
.loader__logo span:nth-child(9) { animation-delay: .9s; }
.loader__logo span:nth-child(10){ animation-delay: 1s; }
.loader__logo span:nth-child(11){ animation-delay: 1.1s; }
.loader__logo-dim {
  -webkit-text-fill-color: var(--text) !important;
  background: none !important;
}
.loader__logo-space { width: .3em !important; }
@keyframes letterReveal {
  0% { opacity: 0; transform: translateY(15px) scale(.8); filter: blur(4px); }
  100% { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}

.loader__tag {
  position: relative; z-index: 3;
  font-size: 0.6rem; font-weight: 500;
  letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--text-muted); margin-top: -.2rem;
  animation: fadeSlideUp 1s 1.3s ease both;
}
@keyframes fadeSlideUp {
  0% { opacity: 0; transform: translateY(8px); }
  100% { opacity: 1; transform: translateY(0); }
}

.loader__bar {
  position: relative; z-index: 3;
  width: 180px; height: 2px;
  background: rgba(255,255,255,0.04);
  border-radius: 2px; overflow: hidden;
  margin-top: 1.2rem;
}
.loader__fill {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--accent-dark), var(--accent), var(--accent-light));
  border-radius: 2px;
  transition: width 0.05s linear;
  box-shadow: 0 0 12px rgba(201,162,39,.5), 0 0 30px rgba(201,162,39,.15);
}

.loader__pct {
  position: relative; z-index: 3;
  font-family: var(--font-mono);
  font-size: 0.75rem; color: var(--accent);
  letter-spacing: 0.15em;
  text-shadow: 0 0 10px rgba(201,162,39,.3);
}

/* Corner bracket accents */
.loader__corner {
  position: absolute; width: 40px; height: 40px; z-index: 2;
  border-color: rgba(201,162,39,.15); border-style: solid; border-width: 0;
}
.loader__corner--tl { top: 5%; left: 5%; border-top-width: 1px; border-left-width: 1px; }
.loader__corner--tr { top: 5%; right: 5%; border-top-width: 1px; border-right-width: 1px; }
.loader__corner--bl { bottom: 5%; left: 5%; border-bottom-width: 1px; border-left-width: 1px; }
.loader__corner--br { bottom: 5%; right: 5%; border-bottom-width: 1px; border-right-width: 1px; }

/* ============================================
   NAVIGATION — oryzo-style
   ============================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 999; height: var(--nav-height);
  display: flex; align-items: center;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
  transition: background 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(5,5,5,0.85);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
}
.nav__wrap {
  width: 100%; max-width: 1600px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}
.nav__brand {
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--text);
  display: flex; align-items: center; gap: 0.5rem;
}
.nav__brand img { width: 28px; height: 28px; border-radius: 50%; }

.nav__links { display: flex; align-items: center; gap: 2rem; }
.nav__link {
  font-size: 0.8rem; font-weight: 500;
  color: var(--text-dim); letter-spacing: 0.04em;
  transition: color 0.3s;
}
.nav__link:hover { color: var(--text); }

.nav__cta {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.55rem 1.2rem;
  background: var(--text); color: var(--bg);
  border-radius: 999px; font-size: 0.8rem; font-weight: 600;
  transition: all 0.3s;
}
.nav__cta:hover {
  background: var(--accent); color: var(--text-dark);
  transform: translateY(-1px);
}

.nav__hamburger {
  display: none; flex-direction: column; gap: 5px;
  padding: 8px;
}
.nav__hamburger span {
  width: 20px; height: 1.5px; background: var(--text);
  transition: 0.3s;
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
}

/* Mobile Overlay */
.mob-menu {
  position: fixed; inset: 0; z-index: 998;
  background: rgba(5,5,5,0.97);
  backdrop-filter: blur(40px);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 2rem;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s var(--ease);
}
.mob-menu.open { opacity: 1; pointer-events: auto; }
.mob-menu a {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  font-weight: 600; color: var(--text-dim);
  transition: color 0.3s;
}
.mob-menu a:hover { color: var(--accent); }
.mob-menu__close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  font-size: 1.5rem; color: var(--text);
}

/* ============================================
   3D CANVAS CONTAINER (Three.js scene)
   ============================================ */
#three-canvas {
  position: fixed; inset: 0; z-index: 5;
  pointer-events: none;
}

/* ── Ambient floating particles & orbs ── */
.particles {
  position: fixed; inset: 0; z-index: 3;
  pointer-events: none; overflow: hidden;
}
.particles span {
  position: absolute;
  left: var(--x); top: var(--y);
  width: var(--s); height: var(--s);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,162,39, var(--glow)) 0%, transparent 70%);
  box-shadow: 0 0 calc(var(--s) * 3) rgba(201,162,39, calc(var(--glow) * 0.5));
  animation:
    particleDrift var(--dur) var(--del) ease-in-out infinite alternate,
    particleFade var(--dur) var(--del) ease-in-out infinite alternate;
}
@keyframes particleDrift {
  0%   { transform: translate(0, 0); }
  25%  { transform: translate(30px, -40px); }
  50%  { transform: translate(-20px, -80px); }
  75%  { transform: translate(40px, -30px); }
  100% { transform: translate(-10px, -60px); }
}
@keyframes particleFade {
  0%, 100% { opacity: 0.2; }
  50% { opacity: 0.8; }
}

/* ============================================
   SECTION: HERO — oryzo-style full screen
   ============================================ */
.hero {
  position: relative; z-index: 1;
  height: 100vh; height: 100dvh;
  display: flex; align-items: flex-end;
  padding: 0 clamp(1.5rem, 4vw, 3rem) clamp(3rem, 6vh, 5rem);
  overflow: hidden;
}

.hero__content {
  max-width: 1600px; width: 100%; margin: 0 auto;
  display: flex; justify-content: space-between;
  align-items: flex-end;
}

.hero__left { max-width: 700px; }

.hero__sub {
  font-family: var(--font-display);
  font-size: clamp(0.65rem, 1vw, 0.8rem);
  font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 1rem;
  opacity: 0; transform: translateY(20px);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 700; line-height: 0.95;
  letter-spacing: -0.03em; color: var(--text);
  opacity: 0; transform: translateY(40px);
}
.hero__title em {
  font-style: normal; color: var(--accent);
}

.hero__desc {
  font-size: clamp(0.85rem, 1.2vw, 1rem);
  color: var(--text-dim); line-height: 1.7;
  margin-top: 1.5rem; max-width: 480px;
  opacity: 0; transform: translateY(20px);
}

.hero__right {
  text-align: right;
}

.hero__badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: var(--accent-subtle);
  border: 1px solid rgba(201,162,39,0.2);
  border-radius: 999px;
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--accent-light);
  opacity: 0; transform: translateY(20px);
}
.hero__badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero__scroll-hint {
  position: absolute; bottom: 2rem;
  left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column;
  align-items: center; gap: 0.5rem;
  opacity: 0;
}
.hero__scroll-hint span {
  font-size: 0.6rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--text-muted);
}
.hero__scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scroll-bob 2s ease-in-out infinite;
}
@keyframes scroll-bob {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.3; transform: scaleY(0.5); }
}

@media (max-width: 768px) {
  .hero { align-items: center; padding-bottom: 8rem; }
  .hero__content { flex-direction: column; align-items: flex-start; gap: 2rem; }
  .hero__right { text-align: left; }
}

/* ============================================
   FX SECTIONS — Grid-based layout + animated elements
   ============================================ */
.fx-section {
  position: relative; z-index: 2;
  min-height: 100vh;
  display: flex; align-items: center;
  padding: clamp(4rem,10vh,8rem) clamp(2rem,5vw,4rem);
  overflow: hidden; background: var(--bg);
}
.fx-section:nth-child(even) { background: var(--bg-alt); }

/* Ambient gold gradient spreads — diffuse, seamless per section */
.fx-glow { position: relative; }
.fx-glow::before {
  content: ''; position: absolute; pointer-events: none; z-index: 0;
  background: radial-gradient(ellipse, rgba(201,162,39,.1) 0%, transparent 70%);
  filter: blur(120px);
}

/* Section 1: Consulting — bottom-left, wide */
.fx-glow--1::before {
  width: 1000px; height: 600px;
  bottom: -250px; left: -300px;
}

/* Section 2: 40x AI — centered massive soft orb */
.fx-glow--2::before {
  width: 1100px; height: 700px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(201,162,39,.12) 0%, transparent 60%);
  filter: blur(140px);
}

/* Section 3: AI Integration — top-right bleed */
.fx-glow--3::before {
  width: 900px; height: 550px;
  top: -200px; right: -250px; left: auto;
}

/* Section 4: Web Design — left edge wash */
.fx-glow--4::before {
  width: 500px; height: 900px;
  top: 50%; left: -200px;
  transform: translateY(-50%);
  filter: blur(130px);
}

/* Section 5: Advertising — wide top horizon */
.fx-glow--5::before {
  width: 1400px; height: 400px;
  top: -180px; left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center top, rgba(201,162,39,.09) 0%, transparent 70%);
  filter: blur(110px);
}

/* Section 6: Ecosystem — bottom-right, large */
.fx-glow--6::before {
  width: 1000px; height: 600px;
  bottom: -250px; right: -300px; left: auto;
}

/* 2-column grid — text NEVER overlaps visual */
.fx-grid {
  max-width: 1400px; width: 100%; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2rem,5vw,5rem); align-items: center;
}
.fx-grid--reverse { direction: rtl; }
.fx-grid--reverse > * { direction: ltr; }

.fx-section__content { position: relative; z-index: 2; max-width: 550px; }
.fx-section--center { justify-content: center; text-align: center; }
.fx-section__content--center { max-width: 900px; margin: 0 auto; }
.fx-visual { position: relative; display: flex; align-items: center; justify-content: center; min-height: 300px; }

.fx-label {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .65rem; font-weight: 600; letter-spacing: .2em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 1.5rem;
}
.fx-label::before { content:''; width:20px; height:1px; background:var(--accent); }
.fx-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem,4.5vw,3.5rem); font-weight:700;
  line-height:1.05; color:var(--text); margin-bottom:1.5rem;
}
.fx-heading em { font-style:normal; color:var(--accent); }
.fx-body { font-size:clamp(.85rem,1.1vw,1rem); color:var(--text-dim); line-height:1.8; margin-bottom:1.5rem; }
.fx-tags { display:flex; flex-wrap:wrap; gap:.5rem; }
.fx-tags span {
  padding:.35rem .85rem; background:rgba(201,162,39,.08);
  border:1px solid rgba(201,162,39,.18); border-radius:999px;
  font-size:.7rem; font-weight:600; color:var(--accent-light);
}

/* ── Mini floating cards (glassmorphism) ── */
.fx-minicard {
  position: absolute; padding: .5rem 1rem;
  background: rgba(15,15,15,.7); backdrop-filter: blur(12px);
  border: 1px solid rgba(201,162,39,.2); border-radius: 10px;
  font-size: .7rem; font-weight: 600; color: var(--accent-light);
  animation: floatY 4s ease-in-out infinite alternate;
  white-space: nowrap;
}
.fx-minicard--1 { top: 10%; right: 0; animation-delay: 0s; }
.fx-minicard--2 { bottom: 15%; right: 10%; animation-delay: 1.5s; }
.fx-minicard--3 { bottom: 10%; left: 5%; animation-delay: .8s; }
.fx-minicard--4 { bottom: 5%; right: 0; animation-delay: 2s; }
@keyframes floatY { 0%{transform:translateY(0)} 100%{transform:translateY(-10px)} }

/* SVG icons inside cards */
.fx-minicard svg, .fx-datacard svg, .stat-badge__icon svg, .paper__link svg {
  display: inline-block; vertical-align: -2px; margin-right: 4px;
  stroke: var(--accent-light); flex-shrink: 0;
}

/* ── Data cards (corners of center sections) ── */
.fx-datacard {
  position: absolute; padding: .6rem 1.2rem;
  background: rgba(15,15,15,.65); backdrop-filter: blur(10px);
  border: 1px solid rgba(201,162,39,.15); border-radius: 8px;
  font-family: var(--font-mono); font-size: .75rem; font-weight: 600;
  color: var(--accent-light); z-index: 1;
  animation: floatY 5s ease-in-out infinite alternate;
}
.fx-datacard--tl { top: 15%; left: 8%; animation-delay: 0s; }
.fx-datacard--tr { top: 15%; right: 8%; animation-delay: 1s; }
.fx-datacard--bl { bottom: 15%; left: 8%; animation-delay: 2s; }
.fx-datacard--br { bottom: 15%; right: 8%; animation-delay: 3s; }

/* ── Revenue Chart (Consulting) ── */
.fx-chart {
  width: 100%; max-width: 380px;
  background: rgba(10,10,10,.8); border: 1px solid var(--border-light);
  border-radius: 16px; padding: 1.5rem; position: relative;
}
.fx-chart__grid {
  position: absolute; inset: 1.5rem; display: flex; flex-direction: column;
  justify-content: space-between; pointer-events: none;
}
.fx-chart__grid span {
  width: 100%; height: 1px; background: rgba(255,255,255,.04);
}
.fx-chart__bars {
  display: flex; align-items: flex-end; gap: 16px;
  height: 180px; position: relative; z-index: 1; padding-bottom: 20px;
}
.fx-chart__bar {
  flex: 1; border-radius: 6px 6px 0 0; position: relative;
  background: linear-gradient(to top, rgba(201,162,39,.3), rgba(201,162,39,.15));
  height: var(--h, 50%);
  animation: barGrow 1.5s var(--d, 0s) ease-out both;
}
.fx-chart__bar--accent {
  background: linear-gradient(to top, var(--accent), var(--accent-light));
  box-shadow: 0 0 20px rgba(201,162,39,.3);
}
.fx-chart__bar span {
  position: absolute; bottom: -18px; left: 50%; transform: translateX(-50%);
  font-size: .6rem; color: var(--text-muted); font-family: var(--font-mono);
}
@keyframes barGrow { from { height: 0; } }
.fx-chart__footer {
  display: flex; gap: 1rem; margin-top: 1.2rem;
  padding-top: 1rem; border-top: 1px solid var(--border);
}
.fx-chart__stat {
  font-family: var(--font-display); font-size: 1.1rem;
  font-weight: 700; color: var(--accent); line-height: 1.2;
}
.fx-chart__stat small {
  display: block; font-size: .6rem; font-weight: 500;
  color: var(--text-muted); margin-top: 2px;
}

/* ── Pulsing Rings (40x section) ── */
.fx-rings {
  position:absolute; left:50%; top:50%; transform:translate(-50%,-50%);
  z-index:0; pointer-events:none;
}
.fx-rings span {
  position:absolute; left:50%; top:50%;
  border:1px solid rgba(201,162,39,.12); border-radius:50%;
  animation: ringPulse 4s ease-out infinite;
}
.fx-rings span:nth-child(1) { width:200px;height:200px;margin:-100px 0 0 -100px; }
.fx-rings span:nth-child(2) { width:350px;height:350px;margin:-175px 0 0 -175px; animation-delay:.8s; }
.fx-rings span:nth-child(3) { width:500px;height:500px;margin:-250px 0 0 -250px; animation-delay:1.6s; }
.fx-rings span:nth-child(4) { width:650px;height:650px;margin:-325px 0 0 -325px; animation-delay:2.4s; }
@keyframes ringPulse {
  0% { transform:scale(.8); opacity:.4; }
  50% { opacity:.12; }
  100% { transform:scale(1.15); opacity:0; }
}

/* ── Neural Network (AI section) ── */
.fx-neural {
  position: relative; width: 100%; max-width: 400px; height: 300px;
  display: flex; align-items: stretch; justify-content: space-around;
}
.fx-neural__layer {
  display: flex; flex-direction: column; justify-content: space-around;
  gap: 8px; z-index: 1;
}
.fx-neural__layer span {
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 0 15px var(--accent-glow);
  animation: nodePulse 3s ease-in-out infinite alternate;
}
.fx-neural__layer:nth-child(2) span { width: 10px; height: 10px; background: rgba(201,162,39,.6); }
.fx-neural__layer:nth-child(3) span { width: 12px; height: 12px; }
.fx-neural__layer:nth-child(4) span { width: 16px; height: 16px; background: var(--accent-light); }
.fx-neural__layer span:nth-child(odd) { animation-delay: 1.5s; }
.fx-neural__svg {
  position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0;
}
.fx-neural__svg line {
  stroke: rgba(201,162,39,.15); stroke-width: 1;
  stroke-dasharray: 6 4; animation: dashMove 6s linear infinite;
}
@keyframes nodePulse { 0%{opacity:.4;transform:scale(.8)} 100%{opacity:1;transform:scale(1.2)} }
@keyframes dashMove { to { stroke-dashoffset:-100; } }

/* ── Browser + Phone Mockup (Web Design) ── */
.fx-devices { display: flex; align-items: flex-start; gap: 16px; }
.fx-browser {
  width: 300px; border: 1px solid var(--border-light); border-radius: 12px;
  overflow: hidden; background: var(--bg-alt);
}
.fx-browser__bar {
  display: flex; align-items: center; gap: 6px; padding: 8px 12px;
  border-bottom: 1px solid var(--border);
}
.fx-browser__bar > span { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); opacity: .5; }
.fx-browser__bar > span:nth-child(2) { background: #555; }
.fx-browser__bar > span:nth-child(3) { background: #333; }
.fx-browser__url {
  margin-left: auto; font-size: .55rem; color: var(--text-muted);
  padding: 2px 8px; background: var(--border); border-radius: 4px;
  font-family: var(--font-mono);
}
.fx-browser__screen { padding: 10px; }
.fx-browser__nav { height: 6px; width: 55%; border-radius: 3px; background: var(--border); margin-bottom: 10px; }
.fx-browser__hero {
  height: 60px; border-radius: 8px; margin-bottom: 10px;
  background: linear-gradient(135deg, rgba(201,162,39,.15), rgba(201,162,39,.05));
  animation: shimmer 3s ease-in-out infinite alternate;
}
.fx-browser__grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 6px; margin-bottom: 10px; }
.fx-browser__grid span { height: 40px; border-radius: 5px; background: var(--border); }
.fx-browser__cta { height: 8px; width: 35%; margin: 0 auto; border-radius: 4px; background: var(--accent); opacity: .4; }
@keyframes shimmer { 0%{opacity:.4} 100%{opacity:1} }

.fx-phone {
  width: 100px; background: var(--bg-alt); border: 1px solid var(--border-light);
  border-radius: 16px; padding: 8px; position: relative; margin-top: 30px;
}
.fx-phone__notch {
  width: 40px; height: 4px; background: var(--border); border-radius: 2px;
  margin: 0 auto 10px;
}
.fx-phone__content { display: flex; flex-direction: column; gap: 6px; }
.fx-phone__header { height: 10px; width: 70%; border-radius: 3px; background: var(--border); }
.fx-phone__card {
  height: 40px; border-radius: 6px;
  background: linear-gradient(135deg, rgba(201,162,39,.1), rgba(201,162,39,.03));
  border: 1px solid var(--border);
}
.fx-phone__card--sm { height: 25px; }

/* ── Scanning Line (Advertising) ── */
.fx-scan { position:absolute; inset:0; z-index:0; pointer-events:none; overflow:hidden; }
.fx-scan::after {
  content:''; position:absolute; left:0; right:0;
  height:2px; background:linear-gradient(90deg, transparent, var(--accent), transparent);
  animation: scanDown 4s ease-in-out infinite;
  box-shadow: 0 0 40px 10px var(--accent-glow);
}
@keyframes scanDown { 0%{top:0} 50%{top:100%} 100%{top:0} }

/* ── Orbit Diagram (Ecosystem — inside grid, no overlap) ── */
.fx-orbit {
  position: relative; width: 280px; height: 280px; margin: 0 auto;
}
.fx-orbit__center {
  position:absolute; left:50%;top:50%; transform:translate(-50%,-50%);
  width:50px;height:50px; border-radius:50%;
  background:var(--accent); color:var(--bg); font-weight:700;
  display:flex;align-items:center;justify-content:center;
  font-family:var(--font-display); font-size:.85rem;
  box-shadow:0 0 30px var(--accent-glow);
}
.fx-orbit__ring {
  position:absolute; left:50%;top:50%; border:1px solid rgba(201,162,39,.12);
  border-radius:50%;
}
.fx-orbit__ring--1 { width:140px;height:140px;margin:-70px 0 0 -70px; }
.fx-orbit__ring--2 { width:220px;height:220px;margin:-110px 0 0 -110px; }
.fx-orbit__ring--3 { width:280px;height:280px;margin:-140px 0 0 -140px; }
.fx-orbit__dot {
  position:absolute; left:50%;top:50%;
  width:34px;height:34px; margin:-17px 0 0 -17px;
  border-radius:50%; background:var(--bg-card);
  border:1px solid rgba(201,162,39,.25);
  display:flex;align-items:center;justify-content:center;
  font-size:.55rem;font-weight:700;color:var(--accent-light);
  font-family:var(--font-display);
  transform: rotate(var(--a)) translateX(var(--r)) rotate(calc(-1 * var(--a)));
  animation: orbitFloat 20s linear infinite;
}
@keyframes orbitFloat {
  to { transform: rotate(calc(var(--a, 0deg) + 360deg)) translateX(var(--r, 80px)) rotate(calc(-1 * var(--a, 0deg) - 360deg)); }
}

@media (max-width: 900px) {
  .fx-grid { grid-template-columns: 1fr; }
  .fx-grid--reverse { direction: ltr; }
  .fx-visual { min-height: 200px; }
  .fx-devices { flex-direction: column; align-items: center; }
}

/* --- Big text feature (oryzo "Smart Flip" / "Sustainability" style) --- */
.big-text-section {
  position: relative; z-index: 2;
  min-height: 60vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: clamp(6rem, 15vh, 12rem) clamp(1.5rem, 4vw, 3rem);
  overflow: hidden;
}

.big-text-section__bg {
  position: absolute; inset: 0; pointer-events: none;
}
.big-text-section__bg-word {
  position: absolute;
  font-family: var(--font-display);
  font-size: clamp(8rem, 20vw, 20rem);
  font-weight: 800; line-height: 1;
  color: rgba(255,255,255,0.02);
  text-transform: uppercase;
  white-space: nowrap;
  user-select: none;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

.big-text-section__content {
  position: relative; z-index: 2; max-width: 900px;
}
.big-text-section__heading {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700; line-height: 1.05;
  letter-spacing: -0.02em; color: var(--text);
  margin-bottom: 1.5rem;
}
.big-text-section__heading em {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent-light), var(--accent));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.big-text-section__sub {
  font-size: clamp(0.9rem, 1.2vw, 1.1rem);
  color: var(--text-dim); line-height: 1.8;
  max-width: 600px; margin: 0 auto;
}

/* ============================================
   STATS ROW (oryzo "runs on edge" / "always on" badges)
   ============================================ */
.stats-row {
  position: relative; z-index: 2;
  padding: clamp(3rem, 6vh, 5rem) clamp(1.5rem, 4vw, 3rem);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.stats-row__inner {
  max-width: 1600px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}
.stat-badge {
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: all 0.3s;
}
.stat-badge:hover {
  border-color: rgba(201,162,39,0.3);
  transform: translateY(-2px);
}
.stat-badge__icon { font-size: 1.5rem; margin-bottom: 0.5rem; }
.stat-badge__value {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700; color: var(--accent);
  line-height: 1;
}
.stat-badge__label {
  font-size: 0.7rem; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-top: 0.3rem;
}

@media (max-width: 768px) {
  .stats-row__inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .stats-row__inner { grid-template-columns: 1fr 1fr; }
}

/* ============================================
   TESTIMONIALS — oryzo horizontal scroll style
   ============================================ */
.testimonials {
  position: relative; z-index: 2;
  padding: clamp(5rem, 10vh, 8rem) 0 clamp(4rem, 8vh, 6rem);
  background: var(--bg);
  overflow: hidden;
}
.testimonials__header {
  text-align: center;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
  margin-bottom: clamp(3rem, 5vh, 4rem);
}
.testimonials__label {
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 1rem;
}
.testimonials__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700; line-height: 1.1;
  color: var(--text);
}
.testimonials__title em {
  font-style: normal; color: var(--accent);
}

.testimonials__track {
  display: flex; gap: 1.25rem;
  padding: 0 clamp(1.5rem, 4vw, 3rem) 2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  justify-content: center;
}
.testimonials__track::-webkit-scrollbar { display: none; }

.t-card {
  flex: 0 0 380px;
  scroll-snap-align: start;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  display: flex; flex-direction: column;
  gap: 1.5rem;
  transition: all 0.3s;
}
.t-card:hover { border-color: rgba(201,162,39,0.2); transform: translateY(-3px); }

.t-card__stars { color: var(--accent); font-size: 0.85rem; letter-spacing: 0.15em; }
.t-card__text {
  font-size: 0.9rem; color: var(--text-dim);
  line-height: 1.8; font-style: italic; flex: 1;
}
.t-card__author {
  display: flex; align-items: center; gap: 0.75rem;
  padding-top: 1rem; border-top: 1px solid var(--border);
}
.t-card__avatar {
  width: 40px; height: 40px; border-radius: 50%;
  border: 2px solid rgba(201,162,39,0.3);
  object-fit: cover;
}
.t-card__name {
  font-family: var(--font-display);
  font-size: 0.85rem; font-weight: 600; color: var(--text);
}
.t-card__role { font-size: 0.7rem; color: var(--text-muted); }

@media (max-width: 640px) {
  .t-card { flex: 0 0 300px; padding: 1.5rem; }
}

/* ============================================
   PRODUCT TIERS — oryzo "choose your own" cards
   ============================================ */
.tiers {
  position: relative; z-index: 2;
  padding: clamp(5rem, 10vh, 8rem) clamp(1.5rem, 4vw, 3rem);
  background: var(--bg-alt);
}
.tiers__header {
  text-align: center;
  margin-bottom: clamp(3rem, 5vh, 4rem);
}
.tiers__label {
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 1rem;
}
.tiers__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700; color: var(--text);
}

.tiers__grid {
  max-width: 1200px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.tier-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  display: flex; flex-direction: column;
  transition: all 0.4s var(--ease);
  position: relative; overflow: hidden;
}
.tier-card:hover {
  border-color: rgba(201,162,39,0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.tier-card--featured {
  border-color: rgba(201,162,39,0.3);
  background: linear-gradient(180deg, rgba(201,162,39,0.06) 0%, var(--bg) 40%);
}

.tier-card__badge {
  display: inline-flex; align-self: flex-start;
  padding: 0.25rem 0.65rem;
  background: var(--accent);
  border-radius: 999px;
  font-size: 0.6rem; font-weight: 700;
  color: var(--text-dark);
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
}
.tier-card__name {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  font-weight: 700; color: var(--text);
  margin-bottom: 0.5rem;
}
.tier-card__desc {
  font-size: 0.85rem; color: var(--text-dim);
  margin-bottom: 2rem; line-height: 1.6;
}
.tier-card__features {
  display: flex; flex-direction: column; gap: 0.75rem;
  flex: 1; margin-bottom: 2rem;
}
.tier-card__feat {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.8rem; color: var(--text-dim);
}
.tier-card__feat::before {
  content: '✦'; color: var(--accent);
  font-size: 0.6rem; flex-shrink: 0;
}
.tier-card__cta {
  display: flex; align-items: center; justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 999px; font-size: 0.85rem; font-weight: 600;
  transition: all 0.3s;
}
.tier-card__cta--primary {
  background: var(--accent); color: var(--text-dark);
}
.tier-card__cta--primary:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px var(--accent-glow);
}
.tier-card__cta--outline {
  border: 1.5px solid var(--border-light);
  color: var(--text);
}
.tier-card__cta--outline:hover {
  border-color: var(--accent);
  color: var(--accent-light);
}

@media (max-width: 900px) {
  .tiers__grid { grid-template-columns: 1fr; max-width: 440px; }
}

/* ============================================
   PAPER / METHODOLOGY — oryzo "research paper" style
   ============================================ */
.paper {
  position: relative; z-index: 2;
  padding: clamp(5rem, 10vh, 8rem) clamp(1.5rem, 4vw, 3rem);
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.paper__inner {
  max-width: 900px; margin: 0 auto;
}
.paper__label {
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 1.5rem;
}
.paper__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700; color: var(--text);
  margin-bottom: 2rem;
}
.paper__links {
  display: flex; gap: 0.75rem; flex-wrap: wrap;
  margin-bottom: 3rem;
}
.paper__link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.5rem 1rem;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.75rem; font-weight: 600; color: var(--text-dim);
  transition: all 0.3s;
}
.paper__link:hover { border-color: var(--accent); color: var(--accent-light); }

.paper__block {
  margin-bottom: 2rem;
}
.paper__block-title {
  font-family: var(--font-display);
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--text); margin-bottom: 0.75rem;
}
.paper__block-text {
  font-size: 0.85rem; color: var(--text-dim);
  line-height: 1.8;
}
.paper__code {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.75rem; color: var(--text-dim);
  line-height: 1.8; overflow-x: auto;
  white-space: pre;
}

/* ============================================
   CTA / CONTACT — oryzo "We caught your attention" style
   ============================================ */
.cta {
  position: relative; z-index: 2;
  min-height: 80vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: clamp(5rem, 12vh, 10rem) clamp(1.5rem, 4vw, 3rem);
  overflow: hidden;
  background: var(--bg);
}
.cta__glow {
  position: absolute;
  bottom: -200px; left: 50%;
  transform: translateX(-50%);
  width: 1000px; height: 500px;
  background: radial-gradient(ellipse at center bottom, var(--accent-glow) 0%, transparent 70%);
  filter: blur(80px); pointer-events: none;
}
.cta__content { position: relative; z-index: 2; max-width: 900px; }

.cta__heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 700; line-height: 1.1;
  letter-spacing: -0.02em; color: var(--text);
  margin-bottom: 1.5rem;
}
.cta__heading em {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent-light), var(--accent));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cta__sub {
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  color: var(--text-dim); line-height: 1.8;
  max-width: 600px; margin: 0 auto 2.5rem;
}

.cta__actions {
  display: flex; align-items: center; justify-content: center;
  gap: 1rem; flex-wrap: wrap;
  margin-bottom: 3rem;
}

.cta__btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 999px; font-size: 0.9rem; font-weight: 600;
  transition: all 0.3s;
}
.cta__btn--primary {
  background: var(--accent); color: var(--text-dark);
}
.cta__btn--primary:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--accent-glow);
}
.cta__btn--outline {
  border: 1.5px solid var(--border-light);
  color: var(--text);
}
.cta__btn--outline:hover {
  border-color: var(--accent); color: var(--accent-light);
}

.cta__info {
  display: flex; justify-content: center;
  gap: clamp(2rem, 5vw, 4rem); flex-wrap: wrap;
}
.cta__info-item { text-align: center; }
.cta__info-label {
  font-size: 0.65rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--text-muted);
  margin-bottom: 0.25rem; display: block;
}
.cta__info-val { font-size: 0.85rem; color: var(--text); }
.cta__info-val a { color: var(--accent-light); transition: color 0.3s; }
.cta__info-val a:hover { color: var(--accent); }

/* ============================================
   FOOTER — oryzo-style minimal
   ============================================ */
.footer {
  position: relative; z-index: 2;
  padding: clamp(3rem, 5vh, 4rem) clamp(1.5rem, 4vw, 3rem) clamp(2rem, 3vh, 2.5rem);
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.footer__inner {
  max-width: 1600px; margin: 0 auto;
}
.footer__top {
  display: flex; justify-content: space-between;
  align-items: flex-start; flex-wrap: wrap;
  gap: 3rem; padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}
.footer__brand-name {
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--text); margin-bottom: 0.5rem;
}
.footer__brand-tag {
  font-size: 0.8rem; color: var(--text-muted);
  line-height: 1.6; max-width: 260px;
}
.footer__cols { display: flex; gap: 4rem; flex-wrap: wrap; }
.footer__col-title {
  font-family: var(--font-display);
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text); margin-bottom: 0.75rem;
}
.footer__link {
  display: block; font-size: 0.8rem;
  color: var(--text-muted); padding: 0.25rem 0;
  transition: color 0.3s;
}
.footer__link:hover { color: var(--accent-light); }

.footer__bottom {
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 1rem;
  padding-top: 2rem;
}
.footer__copy { font-size: 0.7rem; color: var(--text-muted); }
.footer__credit { font-size: 0.7rem; color: var(--text-muted); }
.footer__credit a { color: var(--accent); font-weight: 600; }

@media (max-width: 768px) {
  .footer__top { flex-direction: column; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

/* ============================================
   SCROLL REVEAL UTILITIES
   ============================================ */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.visible {
  opacity: 1; transform: translateY(0);
}
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }
.reveal-d5 { transition-delay: 0.5s; }

/* ============================================
   CHATBOT VARIABLE OVERRIDES
   ============================================ */
:root {
  --tc-primary: var(--accent);
  --tc-primary-dark: var(--accent-dark);
  --tc-primary-light: var(--accent-subtle);
  --tc-surface: #0f0f0f;
  --tc-surface-msg: #111111;
  --tc-text: var(--text);
  --tc-text-muted: var(--text-muted);
  --tc-user-msg-bg: var(--accent);
  --tc-user-msg-text: var(--text-dark);
  --tc-border: var(--border);
  --tc-font: var(--font-body);
  --tc-font-serif: var(--font-display);
  --color-bg: var(--bg);
  --color-amber: var(--accent);
  --color-amber-dark: var(--accent-dark);
}

/* ============================================
   RESPONSIVE POLISH
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
