/* ============================================================
   TYCOON HOLDING GROUP — dark high-tech luxury
   ============================================================ */

:root {
  --black: #050507;
  --black-soft: #0A0A0E;
  --off-white: #F2F1EC;
  --muted: rgba(242, 241, 236, 0.55);
  --faint: rgba(242, 241, 236, 0.28);
  --line: rgba(242, 241, 236, 0.10);
  --blue: #2E62FF;
  --cyan: #4FD8FF;
  --font-display: 'Clash Display', 'Arial Black', sans-serif;
  --font-body: 'General Sans', 'Helvetica Neue', Arial, sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: auto; }

html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  background: var(--black);
  color: var(--off-white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--cyan); color: var(--black); }

a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  clip: rect(0 0 0 0); overflow: hidden; white-space: nowrap;
}

/* ---------- custom cursor ---------- */
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
}
.cursor-dot {
  width: 8px; height: 8px;
  background: var(--cyan);
  box-shadow: 0 0 12px rgba(79, 216, 255, 0.9), 0 0 32px rgba(79, 216, 255, 0.45);
}
.cursor-ring {
  width: 38px; height: 38px;
  border: 1px solid rgba(79, 216, 255, 0.45);
  transition: width 0.35s var(--ease-out), height 0.35s var(--ease-out),
              border-color 0.35s var(--ease-out);
}
body.cursor-active .cursor-dot, body.cursor-active .cursor-ring { opacity: 1; }
body.cursor-hovering .cursor-ring {
  width: 64px; height: 64px;
  border-color: rgba(79, 216, 255, 0.9);
}
@media (hover: hover) and (pointer: fine) {
  body { cursor: none; }
  a, button, input, select, textarea, label { cursor: none; }
}
@media (hover: none), (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* ---------- film grain ---------- */
.grain {
  position: fixed; inset: -50%;
  width: 200%; height: 200%;
  pointer-events: none; z-index: 9000;
  opacity: 0.05;
  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='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain-shift 0.9s steps(4) infinite;
}
@keyframes grain-shift {
  0% { transform: translate(0, 0); }
  25% { transform: translate(-2%, 1.5%); }
  50% { transform: translate(1.5%, -2%); }
  75% { transform: translate(-1%, -1%); }
  100% { transform: translate(2%, 1%); }
}

/* ---------- nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px clamp(20px, 4vw, 56px);
  transition: background 0.5s ease, backdrop-filter 0.5s ease, padding 0.5s ease;
}
.nav.scrolled {
  background: rgba(5, 5, 7, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding-top: 14px; padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.nav-brand {
  font-family: var(--font-display);
  font-weight: 700; font-size: 20px;
  letter-spacing: 0.14em;
}
.nav-brand-dot { color: var(--cyan); }
.nav-links { display: flex; gap: clamp(18px, 3vw, 44px); }
.nav-links a {
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted);
  transition: color 0.3s ease;
}
.nav-links a:hover { color: var(--off-white); }
.nav-cta {
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 12px 22px;
  border: 1px solid rgba(79, 216, 255, 0.4);
  border-radius: 100px;
  color: var(--cyan);
  transition: background 0.35s ease, color 0.35s ease, border-color 0.35s ease,
              box-shadow 0.35s ease;
}
.nav-cta:hover {
  background: var(--cyan); color: var(--black);
  border-color: var(--cyan);
  box-shadow: 0 0 28px rgba(79, 216, 255, 0.4);
}
@media (max-width: 760px) { .nav-links { display: none; } }

/* ---------- shared ---------- */
.eyebrow {
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 28px;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  line-height: 1.02;
  letter-spacing: -0.015em;
  margin-bottom: clamp(48px, 7vw, 96px);
}
[data-reveal] { opacity: 0; }

.media-fallback {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse 70% 55% at 65% 35%, rgba(46, 98, 255, 0.16), transparent 65%),
    radial-gradient(ellipse 55% 45% at 25% 75%, rgba(79, 216, 255, 0.08), transparent 60%),
    var(--black);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh; height: 100svh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.06);
}
.hero-veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(5,5,7,0.55) 0%, rgba(5,5,7,0.18) 35%, rgba(5,5,7,0.32) 70%, var(--black) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  padding: 0 4vw;
  width: 100%;
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(4rem, 14.5vw, 15rem);
  line-height: 0.92;
  letter-spacing: -0.01em;
  display: flex; flex-direction: column;
}
.hero-line {
  display: block;
  will-change: transform, opacity;
}
.hero-sub {
  margin-top: clamp(24px, 3.5vh, 44px);
  font-size: clamp(0.95rem, 1.6vw, 1.35rem);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  min-height: 1.8em;
}
.caret {
  display: inline-block;
  width: 2px; height: 1.05em;
  margin-left: 4px;
  vertical-align: text-bottom;
  background: var(--cyan);
  box-shadow: 0 0 10px rgba(79, 216, 255, 0.8);
  animation: caret-blink 0.85s steps(1) infinite;
}
@keyframes caret-blink { 0%, 55% { opacity: 1; } 56%, 100% { opacity: 0; } }
.hero-scroll-cue {
  position: absolute; bottom: 34px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--faint);
}
.cue-line {
  width: 1px; height: 52px;
  background: linear-gradient(to bottom, var(--cyan), transparent);
  animation: cue-drop 2.2s var(--ease-out) infinite;
  transform-origin: top;
}
@keyframes cue-drop {
  0% { transform: scaleY(0); opacity: 0; }
  35% { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(1) translateY(18px); opacity: 0; }
}

/* ============================================================
   KINETIC — AUTOMATE. MARKET. SCALE.
   ============================================================ */
.kinetic { position: relative; background: var(--black); }
.kinetic-stage {
  position: relative;
  height: 100vh; height: 100svh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  perspective: 900px;
}
.k-word {
  position: absolute;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3.4rem, 12.5vw, 12.5rem);
  letter-spacing: -0.01em;
  text-transform: uppercase;
  opacity: 0;
  will-change: transform, opacity;
  text-shadow: 0 0 90px rgba(79, 216, 255, 0.18);
}
.k-dot { color: var(--cyan); }
.k-flash {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 45% at 50% 50%, rgba(79, 216, 255, 0.14), transparent 70%);
  opacity: 0;
}

/* ============================================================
   WHAT WE DO
   ============================================================ */
.what { position: relative; overflow: hidden; }
.what-media { position: absolute; inset: 0; z-index: 0; }
.what-media video {
  position: absolute; inset: 0;
  width: 100%; height: 115%;
  object-fit: cover;
  opacity: 0.4;
  will-change: transform;
}
.what-veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, var(--black) 0%, rgba(5,5,7,0.62) 30%, rgba(5,5,7,0.72) 70%, var(--black) 100%);
}
.what-inner {
  position: relative; z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(120px, 16vw, 220px) clamp(20px, 4vw, 56px);
}
.what-headline {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.2rem, 4.6vw, 4.4rem);
  line-height: 1.08;
  letter-spacing: -0.015em;
  max-width: 20ch;
  margin-bottom: 40px;
}
.what-copy {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: var(--muted);
  max-width: 58ch;
  margin-bottom: clamp(64px, 8vw, 110px);
}
.what-list { border-top: 1px solid var(--line); }
.what-item {
  display: grid;
  grid-template-columns: 72px minmax(180px, 320px) 1fr;
  gap: clamp(16px, 3vw, 48px);
  align-items: baseline;
  padding: clamp(24px, 3.2vw, 40px) 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left 0.45s var(--ease-out);
}
.what-item:hover { padding-left: 14px; }
.what-num {
  font-size: 13px; font-weight: 500;
  color: var(--cyan);
  letter-spacing: 0.1em;
}
.what-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.3rem, 2.3vw, 2rem);
  letter-spacing: -0.01em;
}
.what-desc { color: var(--muted); font-size: 15px; max-width: 46ch; }
@media (max-width: 680px) {
  .what-item { grid-template-columns: 48px 1fr; }
  .what-desc { grid-column: 2; }
}

/* ============================================================
   PACKAGES
   ============================================================ */
.packages { position: relative; background: var(--black); }
.packages-inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: clamp(100px, 13vw, 190px) clamp(20px, 4vw, 56px);
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 28px);
  perspective: 1400px;
}
.card {
  position: relative;
  display: flex; flex-direction: column;
  padding: clamp(28px, 3vw, 44px);
  background: linear-gradient(160deg, rgba(255,255,255,0.045), rgba(255,255,255,0.012));
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
  will-change: transform;
}
.card:hover {
  border-color: rgba(79, 216, 255, 0.35);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55), 0 0 60px rgba(79, 216, 255, 0.07);
}
.card-glow {
  position: absolute; inset: 0;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 50%),
              rgba(79, 216, 255, 0.10), transparent 65%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.card:hover .card-glow { opacity: 1; }
.card-featured {
  border-color: rgba(79, 216, 255, 0.28);
  background: linear-gradient(160deg, rgba(46, 98, 255, 0.10), rgba(255,255,255,0.015));
}
.card-badge {
  position: absolute; top: 22px; right: 22px;
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--black);
  background: var(--cyan);
  padding: 6px 12px;
  border-radius: 100px;
  box-shadow: 0 0 24px rgba(79, 216, 255, 0.45);
}
.card-tier {
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 22px;
}
.card-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.7rem, 2.4vw, 2.4rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
}
.card-desc {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 28px;
}
.card-list {
  margin-bottom: 36px;
  flex-grow: 1;
}
.card-list li {
  position: relative;
  padding: 10px 0 10px 26px;
  font-size: 14px;
  color: rgba(242, 241, 236, 0.75);
  border-bottom: 1px solid rgba(242, 241, 236, 0.06);
}
.card-list li::before {
  content: "";
  position: absolute; left: 2px; top: 50%;
  width: 6px; height: 6px;
  transform: translateY(-50%) rotate(45deg);
  background: var(--cyan);
  box-shadow: 0 0 8px rgba(79, 216, 255, 0.6);
}
.card-cta {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-weight: 600; font-size: 15px;
  letter-spacing: 0.04em;
  color: var(--off-white);
  transition: color 0.3s ease;
}
.card-cta:hover { color: var(--cyan); }
.card-cta-arrow { transition: transform 0.35s var(--ease-out); }
.card-cta:hover .card-cta-arrow { transform: translateX(8px); }
@media (max-width: 980px) {
  .cards { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
}

/* ============================================================
   PROCESS
   ============================================================ */
.process { position: relative; background: var(--black-soft); }
.process-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(100px, 13vw, 190px) clamp(20px, 4vw, 56px);
}
.steps { counter-reset: step; border-top: 1px solid var(--line); }
.step {
  display: grid;
  grid-template-columns: clamp(90px, 14vw, 200px) 1fr;
  gap: clamp(20px, 4vw, 64px);
  padding: clamp(36px, 5vw, 64px) 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.step-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.6rem, 6vw, 5.5rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(79, 216, 255, 0.5);
}
.step-body h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.step-body p { color: var(--muted); max-width: 52ch; font-size: 15.5px; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { position: relative; overflow: hidden; }
.contact-media { position: absolute; inset: 0; z-index: 0; }
.contact-media video {
  position: absolute; inset: 0;
  width: 100%; height: 115%;
  object-fit: cover;
  opacity: 0.35;
  will-change: transform;
}
.contact-veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, var(--black-soft) 0%, rgba(5,5,7,0.66) 25%, rgba(5,5,7,0.8) 100%);
}
.contact-inner {
  position: relative; z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(120px, 15vw, 210px) clamp(20px, 4vw, 56px) clamp(80px, 9vw, 130px);
}
.contact-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.8rem, 8.2vw, 8rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: clamp(56px, 7vw, 100px);
}
.contact-headline em {
  font-style: normal;
  color: var(--cyan);
  text-shadow: 0 0 60px rgba(79, 216, 255, 0.35);
}
.contact-form { max-width: 880px; }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(22px, 3vw, 36px) clamp(20px, 3vw, 40px);
  margin-bottom: 44px;
}
.field { display: flex; flex-direction: column; gap: 10px; }
.field-full { grid-column: 1 / -1; }
.field label {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--faint);
}
.field input, .field select, .field textarea {
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(242, 241, 236, 0.18);
  padding: 12px 2px;
  font-family: var(--font-body);
  font-size: 16.5px;
  color: var(--off-white);
  border-radius: 0;
  transition: border-color 0.35s ease, box-shadow 0.35s ease;
}
.field textarea { resize: vertical; min-height: 90px; }
.field input::placeholder, .field textarea::placeholder { color: rgba(242, 241, 236, 0.22); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-bottom-color: var(--cyan);
  box-shadow: 0 1px 0 0 var(--cyan), 0 8px 24px -12px rgba(79, 216, 255, 0.35);
}
.field input.invalid, .field select.invalid {
  border-bottom-color: #FF4D6A;
}
.select-wrap { position: relative; }
.select-wrap::after {
  content: "";
  position: absolute; right: 8px; top: 50%;
  width: 8px; height: 8px;
  border-right: 1.5px solid var(--cyan);
  border-bottom: 1.5px solid var(--cyan);
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}
.select-wrap select { width: 100%; }
.select-wrap select:invalid { color: rgba(242, 241, 236, 0.22); }
.select-wrap option { background: var(--black-soft); color: var(--off-white); }
.submit-btn {
  display: inline-flex; align-items: center; gap: 16px;
  font-family: var(--font-display);
  font-weight: 600; font-size: 17px;
  letter-spacing: 0.05em;
  color: var(--black);
  background: var(--off-white);
  border: none;
  padding: 22px 44px;
  border-radius: 100px;
  transition: background 0.35s ease, box-shadow 0.35s ease, transform 0.35s var(--ease-out);
}
.submit-btn:hover {
  background: var(--cyan);
  box-shadow: 0 0 48px rgba(79, 216, 255, 0.45);
  transform: translateY(-3px);
}
.submit-arrow { transition: transform 0.35s var(--ease-out); }
.submit-btn:hover .submit-arrow { transform: translateX(6px); }
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px; height: 1px;
  overflow: hidden;
}
.form-success {
  margin-top: 26px;
  font-size: 15px;
  color: var(--cyan);
  opacity: 0;
  transition: opacity 0.6s ease;
}
.form-success.show { opacity: 1; }
@media (max-width: 680px) { .form-grid { grid-template-columns: 1fr; } }

/* ---------- footer ---------- */
.footer {
  position: relative; z-index: 2;
  border-top: 1px solid var(--line);
  padding: 44px clamp(20px, 4vw, 56px) 40px;
  display: flex; flex-wrap: wrap; gap: 12px 40px;
  align-items: baseline; justify-content: space-between;
}
.footer-brand {
  font-family: var(--font-display);
  font-weight: 700; font-size: 15px;
  letter-spacing: 0.18em;
}
.footer-tag { font-size: 12.5px; color: var(--muted); letter-spacing: 0.06em; }
.footer-email {
  font-size: 12.5px;
  color: var(--cyan);
  letter-spacing: 0.06em;
  transition: opacity 0.3s ease;
}
.footer-email:hover { opacity: 0.7; }
.footer-legal { font-size: 12px; color: var(--faint); }

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .grain, .cue-line, .caret { animation: none; }
  [data-reveal] { opacity: 1; }
  .k-word { position: static; opacity: 1; font-size: clamp(2.4rem, 8vw, 7rem); }
  .kinetic-stage { flex-direction: column; gap: 12px; height: auto; padding: 120px 20px; }
}
