/* ============================
   ROOT - GLOBAL
============================ */

:root{
  --bg:#0b0b0d;
  --panel:#121316;
  --panel-soft:#16171b;

  --orange:#ff8a2b;
  --orange-logo:#ff8a2b;
  --orange-dark:#e66f10;
  --orange-soft:#f27a2a;
  --orange-deep:#e06216;

  --green-accent: #2cff9a;   /* emerald mint */
  /* === SOLID === */
  --green-50:  #eafff4;   /* very light mint (background hint) */
  --green-100: #b9ffe0;   /* soft mint */
  --green-200: #7dffcc;
  --green-300: #4dffb3;
  --green-400: #2cff9a;   /* PRIMARY ACCENT (recommended) */
  --green-500: #22e88a;
  --green-600: #16c978;
  --green-700: #0fa968;   /* darker, serious */
  --green-800: #0a6b44;   /* near-dark */
  --green-900: #043825;   /* almost black green */

  --bg-deep: #0b0b0c;
  --bg-card: #111214;
  --border-soft: rgba(255,255,255,.06);

  --accent-amber: #f5a524;
  --accent-emerald: #2dd4bf;
  --accent-cyan: #38bdf8;

  --text-main: #f5f5f5;
  --text-muted: #9ca3af;

  /* === TRANSPARENT / GLOW === */
  --green-a10: rgba(44,255,154,.10);
  --green-a20: rgba(44,255,154,.20);
  --green-a30: rgba(44,255,154,.30);
  --green-a40: rgba(44,255,154,.40);
  --green-a60: rgba(44,255,154,.60);

  /* === SPECIAL USE === */
  --green-soft: rgba(44,255,154,.18);   /* hover bg / subtle fill */
  --green-glow: rgba(44,255,154,.45);   /* glow effect */

  --text:#e6e6e6;
  --muted:#9aa0a6;
}

*{
  box-sizing:border-box;
  font-family:Inter, system-ui, -apple-system, sans-serif;
}

body{
  margin:0;
  background:var(--bg);
  color:var(--text);  
}

/* ================= HERO — DARK / FLAT ================= */

.hero-wrap{
  padding:100px 0 90px;
  background:#0b0b0d; /* flat black */
  background: radial-gradient(
      circle at 50% -20%,
      rgba(34,197,94,0.08),
      transparent 60%
    ),
    #0f141b;  
}
.hero-wrap{
  padding-top:30px; 
}
.hero-wrap::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(
      500px 400px at 25% 55%,
		rgba(44,255,154,0.08),
      transparent 90%
    );
  pointer-events:none;
}
/* layout */
.hero{
  display:grid;
  grid-template-columns:minmax(0,1fr) 480px;
  gap:24px;
  align-items:center;
}

/* title */
.hero h1{
  font-size:64px;
  line-height:1.02;
  letter-spacing:-2px;
  color:#ffffff;
}

.hero h1{
  text-shadow:
    0 1px 2px rgba(0,0,0,0.25);   /* depth tipis, hampir nggak kerasa */
}

.hero h1 span{
  font-weight:800;
  color:var(--orange);
  text-shadow:
    0 0 4px rgba(44,255,154,.18); /* hint glow, bukan neon */
}

/* description */
.hero p{
  color:rgba(255,255,255,.72);
  font-size:18px;
  line-height:1.65;
  font-weight:500;
  max-width:520px;
}

/* logo + title row */
.hero-title-row{
  display:flex;
  align-items:center;
  gap:28px;
}

/* ================= CTA ================= */
.cta{
  margin-top:32px;
  display:flex;
  gap:16px;
  flex-wrap:wrap;
}

/* Base Button */
.button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;

  padding:16px 34px;
  border-radius:14px;

  font-size:14px;
  font-weight:600;
  letter-spacing:.02em;

  cursor:pointer;
  text-decoration:none;
  white-space:nowrap;

  transition:
    transform .18s ease,
    box-shadow .18s ease,
    background .18s ease,
    border .18s ease;
}

/* Primary (Human CTA) */
.button.primary{
  background:linear-gradient(135deg,#ff8a2b,#ffb347);
  color:#111;
  border:none;
  box-shadow:0 10px 28px rgba(255,138,43,.35);
}

.button.primary:hover{
  transform:translateY(-2px);
  box-shadow:0 16px 38px rgba(255,138,43,.45);
}

/* Secondary (Agent CTA) */
.button.secondary{
  background:transparent;
  border:1px solid rgba(255,255,255,.25);
  color:rgba(255,255,255,.85);
}

.button.secondary:hover{
  background:rgba(255,255,255,.06);
  transform:translateY(-2px);
}

/* SVG */
.button svg{
  width:18px;
  height:18px;
  fill:currentColor;
}
.button.secondary{
  background:#111;
  border:1px solid #ff8a2b;
  color:#ff8a2b;
}

.button.secondary:hover{
  background:rgba(255,138,43,.08);
}


/* ================= HERO CARD (TERMINAL HOLDER) ================= */

.hero-card{
  background:#111214; /* flat dark */
  color:#e5e7eb;

  justify-self:start;
  margin-left:-32px;
  width:125%;

  border-radius:26px;
  padding:28px;

  box-shadow:
    0 20px 60px rgba(0,0,0,.65),
    0 0 0 1px rgba(255,255,255,.04);
}

/* header */
.hero-card-header{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:11px;
  letter-spacing:.18em;
  font-weight:900;
  color:var(--orange-dark);
  margin-bottom:18px;
}


/* ================================
   TERMINAL CONTAINER — HACKER CONSOLE
   Black • Green • Red
================================ */

.hero-card.terminal{
  background:
    linear-gradient(180deg,#050607,#020203);
  border-radius:20px;
  padding:18px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  color:#9ef7c6; /* default hacker green */

  box-shadow:
    0 30px 80px rgba(0,0,0,.85),
    0 0 0 1px rgba(0,255,140,.08),
    inset 0 0 40px rgba(0,0,0,.9);

  position:relative;
  overflow:hidden;
}

/* scanline / CRT feel */
.hero-card.terminal::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    repeating-linear-gradient(
      180deg,
      rgba(255,255,255,0.02),
      rgba(255,255,255,0.02) 1px,
      transparent 1px,
      transparent 3px
    );
  opacity:.35;
  pointer-events:none;
}
.hero-card.terminal::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(
      to bottom,
      transparent,
      rgba(44,255,154,.04),
      transparent
    );
  animation: scan 6s linear infinite;
  pointer-events:none;
}

@keyframes scan{
  0%{transform:translateY(-100%)}
  100%{transform:translateY(100%)}
}
/* ================================
   HEADER
================================ */

.terminal-header{
  font-size:11px;
  letter-spacing:.14em;
  margin-bottom:10px;
  text-transform:uppercase;
  font-weight:800;

  color:var(--orange);
  text-shadow:0 0 8px rgba(60,255,154,.6);
}

.terminal-header .cond{
  display:block;
  font-size:10px;
  margin-top:4px;
  color:#7fffd4;
  opacity:.7;
  font-weight:500;
}

/* ================================
   TERMINAL BODY
================================ */

.terminal-table{
  background:linear-gradient(180deg,#020303,#000000);
  border-radius:12px;
  padding:10px;
  height:360px;
  overflow:hidden;

  box-shadow:
    inset 0 0 0 1px rgba(0,255,140,.12),
    inset 0 0 32px rgba(0,0,0,.9);
}

/* ================================
   SCROLLBAR
================================ */

.terminal-table::-webkit-scrollbar{
  width:6px;
}
.terminal-table::-webkit-scrollbar-track{
  background:#020303;
}
.terminal-table::-webkit-scrollbar-thumb{
  background:#00ff9c;
  border-radius:10px;
  box-shadow:0 0 12px rgba(0,255,156,.7);
}

/* ================================
   TABLE GRID
================================ */

.t-head,
.t-row{
  display:grid;
  grid-template-columns:80px 50px 60px 50px 60px 60px 60px 60px 50px;
  gap:4px;
  font-size:10px;
}

/* Header row */
.t-head{
  color:#00ff9c;
  font-weight:900;
  border-bottom:1px solid rgba(0,255,156,.35);
  padding-bottom:6px;
  margin-bottom:6px;
  text-shadow:0 0 6px rgba(0,255,156,.5);
}
.t-head{
  background:rgba(44,255,154,.06);
  border-radius:8px;
  padding:6px 8px;
}
/* Data rows */
.t-row{
  color:#b8ffe4;
  padding:5px 0;
  border-bottom:1px solid rgba(0,255,156,.12);
  transition:.12s ease;
}

.t-row:hover{
  background:rgba(0,255,156,.06);
}

/* ================================
   VALUE COLORS — HACKER SIGNALS
================================ */

.good{
  color:#2cff9a;
  text-shadow:0 0 10px rgba(60,255,156,.7);
}

.bad{
  color:#ff4d4d;
  text-shadow:0 0 8px rgba(255,60,60,.7);
}

.mid{
  color:#ffd84a;
  text-shadow:0 0 8px rgba(255,216,74,.6);
}

/* ================================
   STATS
================================ */

.stat{
  display:flex;
  justify-content:space-between;
  padding:12px 0;
  border-bottom:1px solid rgba(0,255,156,.15);
  font-weight:600;
  color:#7fffd4;
}

/* ================================
   LANDING SECTION — DARK MODE
   Black • Subtle • Premium
================================ */

/* Wrapper */
.landing-section{
  background:#050607; /* near-black, beda tipis dari hero */
  padding:100px 48px;
  color:#e6e6e6;
  background: radial-gradient(
      circle at 50% -20%,
      rgba(34,197,94,0.08),
      transparent 60%
    ),
    #0f141b;  
}

/* Title */
.landing-section h2{
  font-size:46px;
  font-weight:900;
  letter-spacing:-0.02em;
  color:#ffffff;
  margin-bottom:16px;
}

/* Intro text */
.landing-section .intro,
.landing-section > p{
  color:rgba(255,255,255,.65);
  max-width:640px;
  line-height:1.7;
  font-size:16px;
}

/* ================================
   GRID
================================ */

.landing-section .system-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:32px;
  margin-top:56px;
}

.landing-section .system-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 56px;
}
/* ================================
   CARD
================================ */

.landing-section .system-card{
  background:
    linear-gradient(180deg,#0b0c0d,#070809);
  border-radius:22px;
  padding:32px;

  border:1px solid rgba(255,255,255,.06);

  box-shadow:
    0 12px 30px rgba(0,0,0,.65),
    inset 0 1px 0 rgba(255,255,255,.04);

  transition:
    transform .25s ease,
    box-shadow .25s ease,
    border-color .25s ease;
}

/* Hover */
.landing-section .system-card:hover{
  transform:translateY(-6px);
  border-color:rgba(0,255,156,.25);
  box-shadow:
    0 24px 60px rgba(0,0,0,.85),
    0 0 0 1px rgba(0,255,156,.18);
}

/* ================================
   TEXT STYLES
================================ */

/* Small label */
.landing-section .system-title{
  font-size:11px;
  letter-spacing:.14em;
  font-weight:900;
  color:#00ff9c; /* hacker green accent */
  margin-bottom:10px;
}

/* Card title */
.landing-section .system-name{
  font-size:20px;
  font-weight:800;
  color:#ffffff;
  margin-bottom:8px;
}

/* Description */
.landing-section .system-desc{
  font-size:15px;
  line-height:1.65;
  color:rgba(255,255,255,.68);
}

/* ================================
   MOBILE
================================ */

@media (max-width: 900px){
  .landing-section{
    padding:80px 24px;
  }

  .landing-section h2{
    font-size:34px;
  }

  .landing-section .system-grid{
    grid-template-columns:1fr;
    gap:24px;
    margin-top:40px;
  }
}



/* ===============================
   ENGINE ZONE — FULL DARK
   Serious • Infra • Hacker-grade
================================ */

.engine-zone{
  background:#060708;          /* solid near-black */
  background: radial-gradient(
      circle at 50% -20%,
      rgba(34,197,94,0.08),
      transparent 60%
    ),
    #0f141b;  
  color:#e6e6e6;
  position:relative;
}

/* subtle depth glow (NOT gradient background) */
.engine-zone::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(
      900px 420px at 50% -10%,
      rgba(0,255,156,.08),
      transparent 60%
    );
  pointer-events:none;
}

/* layout container */
.engine-zone .section{
  max-width:1200px;
  margin:0 auto;
  padding:0 48px;
  position:relative;
  z-index:1;
}

/* ===============================
   INFO PRICING CARD
================================ */

.engine-zone .info-pricing{
  background:
    linear-gradient(180deg,#0b0c0d,#070809);
  background: radial-gradient(
      circle at 50% -20%,
      rgba(34,197,94,0.08),
      transparent 60%
    ),
    #0f141b;    
  border-radius:28px;
  padding:64px;

  display:grid;
  grid-template-columns:1.2fr 1fr;
  gap:64px;

  border:1px solid rgba(255,255,255,.06);

  box-shadow:
    0 30px 80px rgba(0,0,0,.85),
    inset 0 1px 0 rgba(255,255,255,.04);
}
.engine-zone .info-pricing::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(
      500px 400px at 25% 55%,
		rgba(44,255,154,0.08),
      transparent 0%
    );
  pointer-events:none;
}


/* ===============================
   LEFT
================================ */

.pricing-left h2{
  font-size:36px;
  font-weight:900;
  letter-spacing:-0.01em;
  margin-bottom:16px;
  color:#ffffff;
}

.pricing-left p{
  color:rgba(255,255,255,.68);
  line-height:1.7;
  max-width:520px;
}

.pricing-list{
  margin-top:32px;
  display:grid;
  gap:12px;
}

.pricing-list div{
  font-weight:600;
  color:rgba(255,255,255,.9);
}

.whale-table-wrap {
  overflow-x: auto;
}

.whale-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.whale-table th,
.whale-table td {
  padding: 10px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  text-align: left;
  white-space: nowrap;
}

.whale-table th {
  color: var(--muted);
  font-weight: 500;
}

.whale-table a {
  color: var(--accent);
  text-decoration: none;
}

.tier.mega {
  color: #ff6b6b;
  font-weight: 600;
}
.tier.whale {
  color: #ffd166;
}
.tier.smart {
  color: #4cc9f0;
}


/* ================================
   WHALES — TERMINAL MODE
================================ */

.pricing-left.whales{
  background: linear-gradient(180deg,#050607,#020203);
  border-radius:18px;
  padding:16px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  color:#9ef7c6;

  box-shadow:
    0 20px 50px rgba(0,0,0,.75),
    0 0 0 1px rgba(0,255,140,.06),
    inset 0 0 30px rgba(0,0,0,.9);

  position:relative;
  overflow:hidden;
}

/* scanline subtle */
.pricing-left.whales::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    repeating-linear-gradient(
      180deg,
      rgba(255,255,255,0.015),
      rgba(255,255,255,0.015) 1px,
      transparent 1px,
      transparent 3px
    );
  opacity:.25;
  pointer-events:none;
}

/* ================================
   HEADER
================================ */

.pricing-left.whales h2{
  font-size:11px;
  letter-spacing:.16em;
  text-transform:uppercase;
  font-weight:900;
  color:var(--orange);
  margin:0 0 6px 0;
}

.pricing-left.whales p{
  font-size:9.5px;
  color:#6ee7b7;
  opacity:.65;
  margin:0 0 12px 0;
  line-height:1.4;
}

/* ================================
   TABLE WRAP
================================ */

.whale-table-wrap{
  background:linear-gradient(180deg,#020303,#000);
  border-radius:12px;
  padding:8px;

  box-shadow:
    inset 0 0 0 1px rgba(0,255,140,.12),
    inset 0 0 24px rgba(0,0,0,.9);
}

/* ================================
   TABLE BASE
================================ */

.whale-table{
  width:100%;
  border-collapse:collapse;
  font-size:10px;
}

/* header */
.whale-table thead th{
  text-align:left;
  padding:6px 6px;
  font-weight:800;
  color:#00ff9c;
  letter-spacing:.08em;
  border-bottom:1px solid rgba(0,255,156,.35);
}

/* rows */
.whale-table tbody tr{
  border-bottom:1px solid rgba(0,255,156,.12);
  transition:background .12s ease;
}

.whale-table tbody tr:hover{
  background:rgba(0,255,156,.05);
}

/* cells */
.whale-table td{
  padding:6px 6px;
  white-space:nowrap;
}

/* ================================
   VALUE COLORS
================================ */

.whale-table td:nth-child(2){
  color:#2cff9a; /* SOL */
}

.whale-table td:nth-child(3){
  color:#7dd3fc; /* USD */
}

.whale-table td:nth-child(4){
  color:#9ca3af; /* spotted */
}

.whale-table a{
  color:#b8ffe4;
  text-decoration:none;
}

.whale-table a:hover{
  color:#00ff9c;
  text-shadow:0 0 6px rgba(0,255,156,.5);
}
/* ================================
   WHALES — TITLE & SUBTITLE (HERO STYLE)
================================ */

.pricing-left.whales h2{
  color:#ffffff;
  font-size:32px;
  font-weight:900;
  letter-spacing:-.02em;
  margin-bottom:12px;
}

.pricing-left.whales p{
  color:#d1d5db;
  font-size:15px;
  line-height:1.6;
  max-width:560px;
  margin-bottom:28px;
}

/* ================================
   WHALES — WIDTH & LAYOUT
================================ */

.pricing-left.whales{
  width:135%;              /* lebih lebar */
  margin-left:-40px;       /* tarik ke kiri dikit */
}

/* table wrapper */
.whale-table-wrap{
  max-width:100%;
}

/* ================================
   TERMINAL TABLE — DENSER BUT WIDER
================================ */

.whale-table{
  font-size:12px;
  line-height:1.45;
}

/* column spacing */
.whale-table thead th,
.whale-table td{
  padding:10px 12px;
}

/* column width tuning */
.whale-table th:nth-child(1),
.whale-table td:nth-child(1){
  width:30%;
}

.whale-table th:nth-child(2),
.whale-table td:nth-child(2){
  width:20%;
}

.whale-table th:nth-child(3),
.whale-table td:nth-child(3){
  width:25%;
}

.whale-table th:nth-child(4),
.whale-table td:nth-child(4){
  width:15%;
}

/* ================================
   TERMINAL FEEL — KEEP IT ALIVE
================================ */

.whale-table thead th{
  font-size:11.5px;
  letter-spacing:.12em;
}

.whale-table tbody tr{
  min-height:38px;
}
/* ================================
   WHALES — SAFE WIDTH (NO OVERFLOW)
================================ */

.pricing-left.whales{
  width:100%;
  margin-left:0;
}

/* container pembatas */
.whale-table-wrap{
  max-width:calc(100vw - 640px); /* sisain ruang FAQ kanan */
  overflow-x:auto;
}
@media (max-width: 1024px){
  .whale-table-wrap{
    max-width:100%;
    overflow-x:auto;
  }
}
.whale-table-wrap{
  max-height:340px;          /* atur sesuai taste */
  overflow-y:auto;
  overflow-x:auto;

  background:linear-gradient(180deg,#020303,#000);
  border-radius:12px;
  padding:8px;

  box-shadow:
    inset 0 0 0 1px rgba(0,255,140,.12),
    inset 0 0 24px rgba(0,0,0,.9);
}

/* ===============================
   RIGHT
================================ */

.pricing-right{
  padding-left:40px;
  border-left:1px solid rgba(255,255,255,.08);
}

.pricing-right h3{
  font-size:24px;
  font-weight:800;
  margin-bottom:24px;
  color:#ffffff;
}

.why-list{
  display:grid;
  gap:16px;
}

.why-list div{
  color:rgba(255,255,255,.65);
  line-height:1.6;
}

.faq{
  display:grid;
  gap:6px;
}

.faq-item{
  border-bottom:1px solid rgba(255,255,255,.18);
  padding-bottom:4px;
}
.faq h3{
	  color:var(--green-200);
}

.faq-q{
  width:100%;
  background:none;
  border:none;
  padding:8px 0;

  display:flex;
  justify-content:space-between;
  align-items:center;

  font-size:13px;
  font-weight:700;
  color:#aaa;
  cursor:pointer;

  text-align:left;
}

.faq-q:hover{
  color:#e5e7eb;
}

.faq-icon{
  font-size:18px;
  font-weight:700;
  transition:.2s ease;
  opacity:.8;
  color:var(--green-accent);
}

.faq-item.open .faq-icon{
  transform:rotate(45deg); /* + → × */
}

.faq-a{
  max-height:0;
  overflow:hidden;
  font-size:13px;
  line-height:1.6;
  color:rgba(255,255,255,.85);
  transition:max-height .25s ease, padding .2s ease;
}

.faq-item.open .faq-a{
  max-height:200px;
  padding-top:8px;
}

@media (max-width: 768px){

  .faq{
    padding: 0;
  }

  .faq-item{
    margin-bottom: 12px;
  }

  .faq-q{
    padding: 12px 14px;
    font-size: 13px;
    line-height: 1.4;
    border-radius: 8px;
  }

  .faq-icon{
    font-size: 16px;
  }

  .faq-a{
    font-size: 13px;
    line-height: 1.55;
    padding: 10px 2px 0 2px;
  }

}

/* ===============================
   MOBILE
================================ */

@media (max-width: 900px){
  .engine-zone{
    padding:80px 0 80px;
  }

  .engine-zone .section{
    padding:0 20px;
  }

  .engine-zone .info-pricing{
    grid-template-columns:1fr;
    padding:32px;
    gap:32px;
  }

  .pricing-right{
    padding-left:0;
    border-left:none;
  }

  .pricing-left h2{
    font-size:28px;
  }

  .pricing-right h3{
    font-size:20px;
  }
}
/* ===============================
   FOOTER — FULL DARK / INFRA
================================ */

footer.footer{
  background:#050607;                 /* true black */
  color:rgba(255,255,255,.62);
  text-align:center;

  font-size:12px;
  line-height:1.6;

  padding:32px 48px 28px;
  border-top:1px solid rgba(255,255,255,.06);

  position:relative;
}

/* subtle top glow (very soft, not gradient section) */
footer.footer::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:1px;
  background:linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,.18),
    transparent
  );
}

/* brand emphasis */
footer.footer strong{
  color:var(--orange);
  font-weight:800;
  font-size:13px;
  letter-spacing:.02em;
  font-family:"Satoshi", system-ui, sans-serif;
}

/* optional muted links */
footer.footer a{
  color:rgba(255,255,255,.55);
  text-decoration:none;
  font-weight:600;
}

footer.footer a:hover{
  color:#ffffff;
}

/* mobile tighten */
@media (max-width: 768px){
  footer.footer{
    padding:28px 20px 24px;
    font-size:11px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  body {
    font-weight: 500;
  }

  p, li, .system-desc {
    font-weight: 500;
    color: #555;
  }

  h1 {
    font-weight: 800;
  }

  h2 {
    font-weight: 800;
  }

  h3 {
    font-weight: 700;
  }
}
@media (max-width: 900px) {
  .system-grid{grid-template-columns:1fr}

  /* Hero becomes vertical */
  .hero {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 48px 24px;
    margin: 0;

    display:flex;
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
  }

  /* Keep hero text block clean */
  .hero-left {
    align-items: center;
    text-align: center;
  }

  .hero-title-row {
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }

  .hero h1 {
    font-size: 42px;
    line-height: 1.05;
    text-align: center;
  }

  .hero p {
    font-size: 16px;
    text-align: center;
    max-width: 100%;
  }


.hero {
  padding-top: 140px;
  padding-bottom: 160px;
}
  .cta {
    width: 100%;
    align-items: center;
  }

  .cta .button {
    width: 100%;
    max-width: 320px;
  }

  .hero-card{
    max-width: 100% !important;
    width: 100% !important;
    margin-left: 0 !important;
    justify-self: stretch !important;
    border-radius: 18px;
  }

  /* Terminal juga full */
  .hero-card.terminal{
    width: 100%;
  }

  /* Terminal table jangan overflow horizontal */
  .terminal-table{
    width: 100%;
    overflow: hidden;
  }

  /* Grid kolom lebih rapat di mobile */
  .t-head,
  .t-row{
    grid-template-columns:
      60px   /* Symbol */
      40px   /* Age */
      50px   /* Curve */
      40px   /* Holders */
      50px   /* Top10 */
      50px   /* Health */
      50px   /* 5m% */
      50px   /* MC */
      40px;  /* Δ */
  }

  /* Font scale otomatis */
  .terminal-header{
    font-size: 11px;
  }

  .terminal-header .cond{
    font-size: 10px;
  }

  .t-head{
    font-size: 10px;
  }

  .t-row{
    font-size: 10px;
  }

  .hero-wrap{
    padding: 48px 0 52px;
  }

}

@media (max-width: 900px) {

  /* Hancurkan layout hero desktop */
  .hero-wrap,
  .container,
  .hero {
    width: 100vw !important;
    max-width: 100vw !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  /* Paksa terminal keluar dari grid */
  .hero-card.terminal {
    position: relative !important;

    width: 100vw !important;
    max-width: 100vw !important;
    min-width: 100vw !important;

    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;

    margin: 0 !important;
    padding: 12px !important;

    border-radius: 0 !important;
  }

  /* Tinggi terminal = layar */
  .terminal-table {
    max-height: none !important;
    overflow-y: auto !important;
  }
}
@media (max-width: 900px) {

  /* Kembalikan layout konten hero (kiri) */
  .hero-left {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
  }

  .cta {
    width: 100%;
    justify-content: center;
  }

  .cta .button {
    max-width: 320px;
    width: 100%;
  }

}

@media (max-width: 900px) {
  .info-pricing {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px 24px;
  }

  .info-pricing > div {
    padding: 0 !important;
    border: none !important;
  }
}
@media (max-width: 900px) {
  .hero-title-row {
    margin-top: 24px;
  }

  .hero-logo {
    display: block;
    margin-top: 8px;
  }
}

@media (max-width: 900px) {
  .hero {
    align-items: stretch !important;   /* allow full width children */
  }

  .hero-left {
    align-self: center;                /* only this stays centered */
    max-width: 420px;
    width: 100%;
  }

  .hero-card {
    align-self: stretch;               /* force full width */
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    border-radius: 0;
  }

  .hero-wrap {
    overflow-x: hidden;
  }
}
@media (max-width: 900px) {
  .hero {
    display: block !important;   /* ⬅️ MATIKAN FLEX */
  }

  .hero-left {
    margin: 0 auto 32px;
    max-width: 420px;
    text-align: center;
  }

  .hero-terminal-wrap {
    width: 100vw;                /* ⬅️ PAKAI VIEWPORT */
    margin-left: calc(50% - 50vw);
  }

  .hero-card.terminal {
    width: 100vw;
    border-radius: 0;
  }
}

.hero-card {
  transform: translateY(8px);
}
.section-divider {
  height: 80px;
  background: linear-gradient(
    180deg,
    rgba(255,138,43,0.08),
    rgba(255,138,43,0.00)
  );
}
.system-card:nth-child(2),
.system-card:nth-child(5){
  transform: translateY(6px);
}
.engine-zone::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(
      800px 400px at 50% 0%,
      rgba(255,255,255,0.18),
      transparent 60%
    );
  pointer-events:none;
}
.engine-zone p,
.engine-zone li {
  color: rgba(255,255,255,0.9);
}
.engine-zone .section{
  width:100%;
  max-width:none;      /* FULL */
  margin:0;
  padding:0 48px;
}


footer.footer{
  background:
    linear-gradient(180deg,#151515,#0b0b0b);
}


.whale-ocean {
  position: relative;
  width: 100%;
  height: 200px;
  margin: 18px 0 26px;
  border-radius: 14px;
  overflow: hidden;

  background:
    radial-gradient(
      circle at 60% 45%,
      rgba(40,120,200,0.18),
      transparent 90%
    ),
    radial-gradient(
      circle at 30% 70%,
      rgba(0,90,160,0.14),
      transparent 90%
    ),
    radial-gradient(
      circle at 80% 30%,
      rgba(0,40,90,0.25),
      transparent 90%
    ),
    linear-gradient(
      180deg,
      #05080f 0%,
      #03060c 60%,
      #02040a 100%
    );
  box-shadow:
    inset 0 0 0 1px rgba(0,255,170,0.12),
    inset 0 0 30px rgba(0,255,170,0.05);
}
/* fish */
.whale-fish {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  animation: swim 10s ease-in-out infinite;
}

.whale-fish .icon {
  font-size: 20px;
  transform: scaleX(-1); /* 👉 hadap kanan */
}

.whale-fish .label {
  font-size: 6px;
  padding: 2px 6px;
  border-radius: 999px;
  background: rgba(255,255,255,0.75);
  color: #2c3e50;
  font-weight: 600;
}

.whale-fish{
  position:absolute;
  display:inline-flex;
  align-items:center;
  gap:6px;

  cursor:pointer;
  pointer-events:auto;
}

/* === ICON === */
.whale-fish .icon{
  font-size:22px;
  line-height:1;

  transition:transform .18s ease;
}

/* === LABEL (HIDDEN) === */
.whale-fish .label{
  position:absolute;
  left:28px;

  opacity:0;
  pointer-events:none;

  background:rgba(2,6,5,.85);
  border:1px solid rgba(0,255,156,.35);
  border-radius:999px;

  padding:3px 9px;
  font-size:10px;
  font-weight:700;
  letter-spacing:.04em;
  color:#9ef7c6;

  white-space:nowrap;

  transition:
    opacity .15s ease,
    transform .15s ease;
}
.whale-fish{
  position:absolute;
  display:flex;
  align-items:center;
  gap:6px;
  cursor:pointer;
  animation-timing-function:linear;
  animation-iteration-count:infinite;
}
@keyframes swim-right{
  0%{
    transform:translateX(-14px) scaleX(var(--flip));
  }
  50%{
    transform:translateX(14px) scaleX(var(--flip));
  }
  100%{
    transform:translateX(-14px) scaleX(var(--flip));
  }
}
.whale-fish.swim-right{
  animation-name:swim-right;
}

@keyframes swim-left{
  0%{
    transform:translateX(14px) scaleX(var(--flip));
  }
  50%{
    transform:translateX(-14px) scaleX(var(--flip));
  }
  100%{
    transform:translateX(14px) scaleX(var(--flip));
  }
}

.whale-fish.swim-left{
  animation-name:swim-left;
}

.whale-fish{
  animation-timing-function:ease-in-out;
}

@keyframes float{
  0%,100%{ transform:translateY(0); }
  50%{ transform:translateY(-6px); }
}


/* === HOVER === */
.whale-fish:hover .label{
  opacity:1;
}

.whale-fish:hover .icon{
  transform:translateX(2px);
}
@keyframes swim {
  0% { transform: translateX(0); }
  50% { transform: translateX(18px); }
  100% { transform: translateX(0); }
}

/* ICON yang flip */
.whale-fish .icon {
  transform: scaleX(var(--flip));
  transition: transform .2s ease;
}

/* LABEL tetap normal */
.whale-fish .label {
  transform: none;
}

.whale-fish.swim-left {
  animation: swim-left 8s linear infinite;
}

.whale-fish.swim-right {
  animation: swim-right 8s linear infinite;
}

@keyframes swim-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-20px); }
}

@keyframes swim-right {
  0% { transform: translateX(0); }
  100% { transform: translateX(20px); }
}

/* PRICING LAYOUT */
.info-pricing{
  display:grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap:48px;
  align-items:start;
}

@media (max-width: 900px){
  .engine-zone .section{
    padding:0 16px;        /* ⬅️ jangan 48px */
    max-width:100%;
  }
}
@media (max-width: 900px){
  .engine-zone .info-pricing{
    padding:28px 20px;     /* lebih natural di mobile */
    gap:28px;
    border-radius:20px;
  }
}
@media (max-width: 900px){
  .pricing-left,
  .pricing-right{
    width:100%;
    max-width:100%;
  }
}
@media (max-width: 900px){
  .pricing-left.whales{
    padding:16px;
  }

  .whale-table{
    font-size:11px;
  }
}
@media (max-width: 900px){
  .engine-zone{
    padding:64px 0;
  }
}
.hero{
  max-width:1200px;
  margin:0 auto;
  padding:0 48px;
  display:grid;
  gap:64px;
}
.hero{
  grid-template-columns: minmax(0, 1.2fr) 520px;
  gap:80px;
}
html { -webkit-text-size-adjust: 100%; }

.whale-table-wrap {
  max-height: 340px;
  overflow: hidden; /* penting: hidden supaya scroll pakai JS */
  position: relative;
}
.whale-table {
  width: 100%;
}


.whale-table-wrap {
  max-height: 340px;
  overflow: hidden; /* scroll di sini */
  position: relative;

  padding: 0; /* pastikan tidak ada padding */
  border-radius: 12px;
}

.whale-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0; /* penting */
}

.whale-table thead th {
  position: sticky;
  top: 0;
  z-index: 5;

  background: #070909; /* solid agar nutup */
  color: #00ff9c;

  border-bottom: 1px solid rgba(0,255,156,.35);
  padding: 10px 12px; /* sesuai table */
}

.footer {
  background: #0b0f1a;
  color: #94a3b8;
  padding: 60px 20px 30px;
  border-top: 1px solid #111827;
  font-size: 14px;
}

.footer-main {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 2fr; /* brand | links */
  gap: 80px;
  align-items: start;
}

.footer-brand .brand-name {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.footer-brand .brand-desc {
  color: #64748b;
  line-height: 1.6;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* FIXED 4 COL */
  gap: 40px;
}

.link-group span {
  display: block;
  color: #fff;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.link-group a {
  display: block;
  color: #94a3b8;
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.link-group a:hover {
  color: #4ade80;
  transform: translateX(2px);
}

.footer-sub {
  max-width: 1100px;
  margin: 40px auto 0;
  padding-top: 20px;
  border-top: 1px solid #1f2937;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 12px;
  color: #64748b;
}

.footer-sub a {
  color: #94a3b8;
  text-decoration: none;
}

.footer-sub a:hover {
  color: #4ade80;
}

.dot {
  opacity: 0.4;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .footer-links {
    grid-template-columns: 1fr;
  }
}
.brand-name{
  font-size:20px;
  font-weight:700;
  color:#fff;
  letter-spacing:.4px;
}

.brand-desc{
  margin-top:6px;
  font-size:13px;
  color:#64748b;
  max-width:360px;
}

@media (max-width: 640px){

  .footer-brand{
    text-align:center;
  }

  .brand-name{
    font-size:16px;      /* lebih kecil */
    margin-bottom:2px;
  }

  .brand-desc{
    font-size:12px;
    line-height:1.4;
    max-width:260px;
    margin:0 auto;
    color:#64748b;
  }
}

.system-grid{
  display:grid !important;
  grid-template-columns:repeat(4, minmax(0, 1fr)) !important;
  gap:28px;
}

/* Tablet */
@media (max-width: 1024px){
  .system-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr)) !important;
  }
}

/* Mobile */
@media (max-width: 640px){
  .system-grid{
    grid-template-columns:1fr !important;
  }
}
.hero-container{
  max-width:1200px;
  margin:0 auto;
  padding:0 48px;
}
.hero{
  max-width:1200px;
  margin:0 auto;
  padding:0 48px;
  display:grid;
  grid-template-columns:minmax(0,1fr) 480px;
  gap:64px;
  align-items:center;
}
@media (max-width: 900px){
  .hero{
    max-width:100%;
    padding:0 20px;
    display:flex;
    flex-direction:column;
    align-items:center;
  }

  .hero-terminal-wrap{
    width:100vw;
    margin-left:calc(50% - 50vw);
  }

  .hero-card.terminal{
    width:100vw;
    border-radius:0;
  }
}
