/* ===================================================================
   TradeCorp Tech — Core Stylesheet
   Enterprise Hosting Infrastructure · Claude-branded premium theme
   Palette: warm cream + coral / blue / green · Poppins + Lora
   =================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Lora:ital,wght@0,400;0,500;0,600;1,400;1,500;1,600&family=JetBrains+Mono:wght@400;500&display=swap');

/* ---------- 1. Design Tokens ---------- */
:root {
  /* Backgrounds (warm light) */
  --bg: #faf9f5;
  --bg-2: #f4eee4;
  --bg-3: #efe7d9;
  --bg-soft: #f7f2ea;

  /* Cards / surfaces */
  --card: #ffffff;
  --card-2: #fffdf8;
  --card-solid: #ffffff;
  --glass-blur: 16px;

  /* Borders */
  --border: rgba(20, 20, 19, 0.10);
  --border-2: rgba(20, 20, 19, 0.17);
  --border-glow: rgba(217, 119, 87, 0.45);

  /* Accents (Anthropic brand) */
  --accent: #d97757;          /* coral / primary */
  --accent-2: #6a9bcc;        /* blue / secondary */
  --accent-3: #788c5d;        /* green / tertiary */
  --accent-soft: rgba(217, 119, 87, 0.12);
  --accent-deep: #c25e3f;

  /* Text */
  --text: #141413;
  --text-2: #45423c;
  --muted: #6f6c63;
  --muted-2: #9b9789;

  /* Status */
  --success: #788c5d;
  --warning: #c2893c;
  --danger: #c0492f;

  /* Gradients */
  --grad: linear-gradient(120deg, #e58f6a 0%, #d97757 55%, #c25e3f 100%);
  --grad-soft: linear-gradient(125deg, rgba(217,119,87,0.16), rgba(106,155,204,0.14));
  --grad-text: linear-gradient(115deg, #d97757 0%, #c95f43 60%, #b9532f 100%);
  --grad-line: linear-gradient(90deg, transparent, rgba(217,119,87,0.55), rgba(106,155,204,0.45), transparent);

  /* Shadows (soft, warm) */
  --shadow-sm: 0 2px 12px rgba(20, 20, 19, 0.05);
  --shadow: 0 18px 48px rgba(20, 20, 19, 0.10);
  --shadow-glow: 0 0 0 1px rgba(217,119,87,0.18), 0 26px 60px rgba(217,119,87,0.16);

  /* Layout */
  --maxw: 1240px;
  --radius: 20px;
  --radius-lg: 28px;
  --radius-sm: 13px;
  --header-h: 78px;

  /* Type */
  --font-sans: 'Lora', Georgia, 'Times New Roman', serif;
  --font-display: 'Poppins', 'Arial', system-ui, sans-serif;
  --font-ui: 'Poppins', 'Arial', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, 'SFMono-Regular', Menlo, monospace;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- 2. Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16.5px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; transition: color .25s var(--ease); }
ul { list-style: none; }
img, svg { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font-family: var(--font-ui); font-size: 1rem; }
::selection { background: rgba(217,119,87,0.24); color: var(--text); }

/* scrollbar */
::-webkit-scrollbar { width: 11px; height: 11px; }
::-webkit-scrollbar-track { background: var(--bg-2); }
::-webkit-scrollbar-thumb { background: #d8cfbf; border-radius: 20px; border: 3px solid var(--bg-2); }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

/* ---------- 3. Global background field ---------- */
body::before {
  content: "";
  position: fixed; inset: 0;
  background:
    radial-gradient(900px 600px at 12% -5%, rgba(217,119,87,0.10), transparent 60%),
    radial-gradient(800px 600px at 88% 0%, rgba(106,155,204,0.10), transparent 58%),
    radial-gradient(1000px 700px at 50% 112%, rgba(120,140,93,0.08), transparent 60%);
  z-index: -2; pointer-events: none;
}
.bg-grid {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background-image:
    linear-gradient(rgba(20,20,19,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20,20,19,0.035) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(circle at 50% 24%, #000 0%, transparent 76%);
  -webkit-mask-image: radial-gradient(circle at 50% 24%, #000 0%, transparent 76%);
}

/* ---------- 4. Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 104px 0; position: relative; }
.section--tight { padding: 72px 0; }
.section--alt { background: linear-gradient(180deg, transparent, var(--bg-2) 16%, var(--bg-2) 84%, transparent); }
.center { text-align: center; }
.mw-720 { max-width: 720px; }
.mw-820 { max-width: 820px; }
.mx-auto { margin-left: auto; margin-right: auto; }
.grid { display: grid; gap: 24px; }
.g-2 { grid-template-columns: repeat(2, 1fr); }
.g-3 { grid-template-columns: repeat(3, 1fr); }
.g-4 { grid-template-columns: repeat(4, 1fr); }
.flex { display: flex; }
.gap-12 { gap: 12px; } .gap-16 { gap: 16px; } .gap-24 { gap: 24px; }
.mt-8{margin-top:8px}.mt-16{margin-top:16px}.mt-24{margin-top:24px}.mt-40{margin-top:40px}.mt-56{margin-top:56px}

/* ---------- 5. Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.12; letter-spacing: -0.02em; color: var(--text); }
.display { font-size: clamp(2.5rem, 5.6vw, 4.4rem); font-weight: 700; line-height: 1.05; letter-spacing: -0.03em; }
h2.section-title { font-size: clamp(2rem, 3.7vw, 3rem); font-weight: 600; }
h3 { font-size: 1.3rem; }
.lead { font-size: clamp(1.06rem, 1.5vw, 1.24rem); color: var(--text-2); line-height: 1.7; }
.muted { color: var(--muted); }
.gradient-text {
  font-family: var(--font-sans); font-style: italic; font-weight: 600;
  background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.mono { font-family: var(--font-mono); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-ui); font-size: 0.74rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent-deep);
  padding: 8px 16px; border-radius: 100px;
  background: rgba(217,119,87,0.10); border: 1px solid rgba(217,119,87,0.28);
}
.eyebrow::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 3px rgba(217,119,87,0.18); }

.section-head { max-width: 730px; margin: 0 auto 60px; text-align: center; }
.section-head .lead { margin-top: 18px; }
.section-head--left { margin-left: 0; text-align: left; }

/* ---------- 6. Buttons ---------- */
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-ui); padding: 13px 27px; border-radius: 100px; font-weight: 600; font-size: 0.95rem;
  letter-spacing: 0.005em; transition: transform .25s var(--ease), box-shadow .3s var(--ease), background .3s; white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { color: #fff; background: var(--grad); box-shadow: 0 8px 22px rgba(217,119,87,0.30); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(217,119,87,0.42); }
.btn-ghost { color: var(--text); background: #fff; border: 1px solid var(--border-2); }
.btn-ghost:hover { transform: translateY(-3px); border-color: var(--accent); background: #fff; box-shadow: 0 10px 26px rgba(20,20,19,0.10); color: var(--accent-deep); }
.btn-outline { color: var(--accent-deep); border: 1.5px solid rgba(217,119,87,0.5); background: transparent; }
.btn-outline:hover { background: var(--accent-soft); transform: translateY(-3px); }
.btn-lg { padding: 16px 36px; font-size: 1.02rem; }
.btn-block { width: 100%; }
.btn-arrow { gap: 8px; }
.btn-arrow svg { transition: transform .25s var(--ease); }
.btn-arrow:hover svg { transform: translateX(4px); }

.link-arrow { display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-ui); color: var(--accent-deep); font-weight: 600; font-size: 0.92rem; }
.link-arrow svg { width: 16px; height: 16px; transition: transform .25s var(--ease); }
.link-arrow:hover { color: var(--accent); }
.link-arrow:hover svg { transform: translateX(4px); }

/* ---------- 7. Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000; height: var(--header-h);
  display: flex; align-items: center;
  transition: background .35s var(--ease), border-color .35s, backdrop-filter .35s, box-shadow .35s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(250, 249, 245, 0.82);
  backdrop-filter: blur(var(--glass-blur)) saturate(150%);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(150%);
  border-bottom-color: var(--border);
  box-shadow: 0 6px 24px rgba(20,20,19,0.05);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-family: var(--font-display); }
.brand-mark { width: 38px; height: 38px; flex: none; filter: drop-shadow(0 4px 12px rgba(217,119,87,0.30)); }
.brand-name { font-size: 1.16rem; font-weight: 600; letter-spacing: -0.01em; line-height: 1; color: var(--text); }
.brand-name b { font-weight: 700; }
.brand-name span { color: var(--accent); }
.brand-sub { display: block; font-family: var(--font-ui); font-size: 0.55rem; font-weight: 500; letter-spacing: 0.3em; color: var(--muted); text-transform: uppercase; margin-top: 5px; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav-link {
  position: relative; font-family: var(--font-ui); padding: 9px 15px; border-radius: 10px; font-size: 0.92rem; font-weight: 500; color: var(--text-2);
  display: inline-flex; align-items: center; gap: 6px;
}
.nav-link:hover { color: var(--text); background: rgba(20,20,19,0.04); }
.nav-link.active { color: var(--accent-deep); }
.nav-link.active::after {
  content: ""; position: absolute; left: 15px; right: 15px; bottom: 2px; height: 2px; border-radius: 2px; background: var(--grad);
}
.nav-link .chev { width: 14px; height: 14px; transition: transform .25s var(--ease); }

/* dropdown */
.has-dropdown { position: relative; }
.has-dropdown:hover .chev { transform: rotate(180deg); }
.dropdown {
  position: absolute; top: calc(100% + 12px); left: 50%; transform: translateX(-50%) translateY(8px);
  width: 268px; padding: 8px; border-radius: var(--radius);
  background: #fff; border: 1px solid var(--border); box-shadow: var(--shadow);
  opacity: 0; visibility: hidden; transition: opacity .25s var(--ease), transform .25s var(--ease);
}
.has-dropdown:hover .dropdown, .has-dropdown:focus-within .dropdown {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.dropdown::before { content:""; position:absolute; top:-10px; left:0; right:0; height:14px; }
.dd-item { display: flex; gap: 12px; align-items: center; padding: 11px 12px; border-radius: 12px; transition: background .2s; }
.dd-item:hover { background: var(--accent-soft); }
.dd-ico { width: 40px; height: 40px; flex: none; display: grid; place-items: center; border-radius: 11px; background: var(--grad-soft); border: 1px solid var(--border); }
.dd-ico svg { width: 19px; height: 19px; color: var(--accent-deep); }
.dd-title { font-family: var(--font-display); font-weight: 600; font-size: 0.93rem; color: var(--text); }
.dd-desc { font-size: 0.8rem; color: var(--muted); line-height: 1.45; }

.header-cta { display: flex; align-items: center; gap: 10px; }

/* hamburger */
.hamburger { display: none; width: 44px; height: 44px; border-radius: 12px; border: 1px solid var(--border-2); background: #fff; flex-direction: column; gap: 5px; align-items: center; justify-content: center; }
.hamburger span { width: 19px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .3s var(--ease), opacity .2s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 999; padding: calc(var(--header-h) + 20px) 24px 40px;
  background: rgba(250, 249, 245, 0.98); backdrop-filter: blur(18px);
  transform: translateX(100%); transition: transform .4s var(--ease); overflow-y: auto;
  display: flex; flex-direction: column; gap: 4px;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a { font-family: var(--font-ui); padding: 15px 14px; border-radius: 12px; font-size: 1.05rem; font-weight: 500; color: var(--text-2); border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
.mobile-menu a svg { width: 16px; height: 16px; color: var(--muted); }
.mobile-menu a:hover, .mobile-menu a.active { color: var(--accent-deep); background: var(--accent-soft); }
.mm-group-label { font-family: var(--font-ui); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); padding: 18px 14px 6px; }
.mobile-menu .btn { margin-top: 18px; }

/* ---------- 8. Cards ---------- */
.card {
  position: relative; background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), border-color .35s, box-shadow .35s, background .35s;
  overflow: hidden;
}
.card::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1.5px;
  background: linear-gradient(135deg, rgba(217,119,87,0.6), transparent 42%, transparent 60%, rgba(106,155,204,0.45));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity .35s var(--ease); pointer-events: none;
}
.card:hover { transform: translateY(-7px); border-color: transparent; box-shadow: var(--shadow-glow); background: var(--card-2); }
.card:hover::after { opacity: 1; }

.card-ico {
  width: 54px; height: 54px; border-radius: 15px; display: grid; place-items: center; margin-bottom: 22px;
  background: var(--grad-soft); border: 1px solid var(--border-2); position: relative;
}
.card-ico svg { width: 25px; height: 25px; color: var(--accent-deep); }
.card:hover .card-ico { background: var(--grad); }
.card:hover .card-ico svg { color: #fff; }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 0.97rem; }
.card .link-arrow { margin-top: 18px; }

/* feature mini */
.feature {
  display: flex; gap: 15px; padding: 24px; border-radius: var(--radius); background: var(--card); border: 1px solid var(--border); box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
}
.feature:hover { transform: translateY(-4px); border-color: var(--border-2); box-shadow: var(--shadow); }
.feature .f-ico { width: 46px; height: 46px; flex: none; border-radius: 13px; display: grid; place-items: center; background: var(--grad-soft); border: 1px solid var(--border); }
.feature .f-ico svg { width: 21px; height: 21px; color: var(--accent-deep); }
.feature h4 { font-family: var(--font-display); font-size: 1.04rem; margin-bottom: 5px; }
.feature p { color: var(--muted); font-size: 0.9rem; }

/* check list */
.check-list { display: grid; gap: 14px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--text-2); font-size: 0.98rem; }
.check-list li svg { width: 22px; height: 22px; flex: none; color: #fff; background: var(--accent); border-radius: 50%; padding: 4px; margin-top: 1px; }

/* ---------- 9. Pricing ---------- */
.price-grid { display: grid; gap: 24px; }
.plan {
  position: relative; display: flex; flex-direction: column; padding: 32px 28px; border-radius: var(--radius-lg);
  background: var(--card); border: 1px solid var(--border); box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), border-color .35s, box-shadow .35s, background .35s;
}
.plan:hover { transform: translateY(-9px); border-color: var(--border-glow); box-shadow: var(--shadow-glow); }
.plan.featured {
  border-color: rgba(217,119,87,0.5);
  background: linear-gradient(180deg, rgba(217,119,87,0.07), rgba(255,253,248,0.6));
  box-shadow: 0 0 0 1.5px rgba(217,119,87,0.30), 0 30px 64px rgba(217,119,87,0.18);
}
.plan-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  font-family: var(--font-ui); font-size: 0.66rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 7px 16px; border-radius: 100px; color: #fff; background: var(--grad); white-space: nowrap; box-shadow: 0 6px 16px rgba(217,119,87,0.4);
}
.plan-name { font-family: var(--font-display); font-size: 1.28rem; font-weight: 600; }
.plan-tag { color: var(--muted); font-size: 0.86rem; margin-top: 4px; }
.plan-price { display: flex; align-items: flex-end; gap: 4px; margin: 22px 0 6px; }
.plan-price .amount { font-family: var(--font-display); font-size: 2.8rem; font-weight: 700; letter-spacing: -0.03em; color: var(--text); }
.plan-price .per { color: var(--muted); font-size: 0.92rem; margin-bottom: 10px; }
.plan-divider { height: 1px; background: var(--border); margin: 22px 0; }
.plan-specs { display: grid; gap: 13px; margin-bottom: 28px; }
.plan-specs li { display: flex; gap: 10px; align-items: center; font-size: 0.92rem; color: var(--text-2); }
.plan-specs li svg { width: 17px; height: 17px; flex: none; color: var(--accent); }
.plan-specs li b { color: var(--text); font-weight: 600; }
.plan .btn { margin-top: auto; }

/* ---------- 10. Stats / trust bar ---------- */
.trust-bar { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.stat { text-align: center; padding: 28px 16px; border-radius: var(--radius); background: var(--card); border: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.stat .num { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 700; background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat .label { color: var(--muted); font-size: 0.84rem; margin-top: 7px; }

/* ---------- 11. Hero ---------- */
.hero { position: relative; padding: calc(var(--header-h) + 78px) 0 96px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 52px; align-items: center; }
.hero h1 { margin: 24px 0 22px; }
.hero .lead { max-width: 560px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 36px; }
.hero-meta .hm { display: flex; align-items: center; gap: 9px; color: var(--muted); font-size: 0.88rem; }
.hero-meta .hm svg { width: 19px; height: 19px; color: var(--accent); background: var(--accent-soft); border-radius: 50%; padding: 3px; }
.hero-page { padding: calc(var(--header-h) + 76px) 0 76px; text-align: center; position: relative; overflow: hidden; }
.hero-page .eyebrow { margin: 0 auto; }
.hero-page h1 { margin: 24px auto 20px; }
.hero-page .lead { margin: 0 auto; }
.hero-page .hero-cta { justify-content: center; }

/* floating cards visual */
.hero-visual { position: relative; min-height: 430px; }
.float-card {
  position: absolute; display: flex; align-items: center; gap: 12px; padding: 14px 18px; border-radius: 17px;
  background: #fff; border: 1px solid var(--border); box-shadow: var(--shadow);
  animation: floaty 6s ease-in-out infinite;
}
.float-card .fc-ico { width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; background: var(--grad-soft); border: 1px solid var(--border); }
.float-card .fc-ico svg { width: 19px; height: 19px; color: var(--accent-deep); }
.float-card .fc-num { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: var(--text); }
.float-card .fc-label { font-size: 0.73rem; color: var(--muted); }
.fc-1 { top: 4%; left: 0; animation-delay: 0s; }
.fc-2 { top: 24%; right: 2%; animation-delay: 1.4s; }
.fc-3 { bottom: 16%; left: 6%; animation-delay: 2.6s; }
.fc-4 { bottom: 2%; right: 8%; animation-delay: 0.7s; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

/* server rack visual (CSS) */
.rack {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%) rotateX(8deg) rotateY(-14deg);
  width: 248px; transform-style: preserve-3d; perspective: 900px;
}
.rack-core {
  position: relative; padding: 18px 16px; border-radius: 22px;
  background: linear-gradient(160deg, #ffffff, #f5efe5); border: 1px solid var(--border-2);
  box-shadow: 0 40px 70px rgba(20,20,19,0.16), 0 0 0 1px rgba(217,119,87,0.06);
}
.rack-unit {
  display: flex; align-items: center; gap: 8px; height: 32px; margin-bottom: 9px; padding: 0 12px; border-radius: 9px;
  background: linear-gradient(90deg, var(--bg-2), #fff); border: 1px solid var(--border);
}
.rack-unit:last-child { margin-bottom: 0; }
.rack-led { width: 8px; height: 8px; border-radius: 50%; background: var(--success); box-shadow: 0 0 8px var(--success); animation: blink 2.4s infinite; }
.rack-led.b { background: var(--accent); box-shadow: 0 0 8px var(--accent); animation-delay: .6s; }
.rack-led.c { background: var(--accent-2); box-shadow: 0 0 8px var(--accent-2); animation-delay: 1.2s; }
.rack-bars { display: flex; gap: 4px; margin-left: auto; }
.rack-bars i { width: 3px; height: 13px; border-radius: 2px; background: rgba(20,20,19,0.12); }
.rack-bars i.on { background: var(--accent); box-shadow: 0 0 6px rgba(217,119,87,0.5); }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }
.rack-glow { position: absolute; inset: -40px; border-radius: 40px; background: radial-gradient(circle, rgba(217,119,87,0.18), transparent 70%); z-index: -1; filter: blur(20px); }

/* ---------- 12. Network / locations ---------- */
.loc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.loc-card { position: relative; padding: 26px; border-radius: var(--radius); background: var(--card); border: 1px solid var(--border); box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), border-color .3s, box-shadow .3s; }
.loc-card:hover { transform: translateY(-6px); border-color: var(--border-glow); box-shadow: var(--shadow-glow); }
.loc-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 16px; }
.loc-flag { width: 48px; height: 48px; border-radius: 13px; display: grid; place-items: center; font-size: 1.55rem; background: var(--grad-soft); border: 1px solid var(--border); }
.loc-status { display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-mono); font-size: 0.7rem; color: var(--success); padding: 5px 11px; border-radius: 100px; background: rgba(120,140,93,0.12); border: 1px solid rgba(120,140,93,0.3); }
.loc-status::before { content:""; width: 6px; height: 6px; border-radius: 50%; background: var(--success); box-shadow: 0 0 8px var(--success); animation: blink 2s infinite; }
.loc-city { font-family: var(--font-display); font-size: 1.22rem; font-weight: 600; }
.loc-region { color: var(--muted); font-size: 0.86rem; }
.loc-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--border); }
.loc-meta .lm-label { font-size: 0.72rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; }
.loc-meta .lm-val { font-weight: 600; font-size: 0.93rem; margin-top: 3px; color: var(--text); }

/* world map */
.map-wrap { position: relative; border-radius: var(--radius-lg); border: 1px solid var(--border); background: var(--card); box-shadow: var(--shadow-sm); padding: 30px; overflow: hidden; }
.map-wrap svg { width: 100%; height: auto; }

/* ---------- 13. Comparison table ---------- */
.cmp-table { width: 100%; border-collapse: separate; border-spacing: 0; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); background: var(--card); box-shadow: var(--shadow-sm); }
.cmp-table th, .cmp-table td { padding: 17px 20px; text-align: left; border-bottom: 1px solid var(--border); font-size: 0.94rem; }
.cmp-table thead th { font-family: var(--font-display); font-size: 1rem; font-weight: 600; background: var(--bg-2); color: var(--text); }
.cmp-table tbody td:first-child { color: var(--text-2); font-weight: 500; }
.cmp-table tr:last-child td { border-bottom: none; }
.cmp-table tbody tr:hover td { background: var(--accent-soft); }
.cmp-yes { color: var(--success); }
.cmp-no { color: var(--muted-2); }
.cmp-table .col-hl { background: rgba(217,119,87,0.07); }
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* ---------- 14. Process / steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; position: relative; }
.step { position: relative; padding: 30px 24px; border-radius: var(--radius); background: var(--card); border: 1px solid var(--border); box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), border-color .3s, box-shadow .3s; }
.step:hover { transform: translateY(-6px); border-color: var(--border-2); box-shadow: var(--shadow); }
.step-num { font-family: var(--font-mono); font-size: 0.78rem; color: var(--accent-deep); letter-spacing: 0.1em; }
.step-ico { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; background: var(--grad-soft); border: 1px solid var(--border-2); margin: 14px 0 16px; }
.step-ico svg { width: 24px; height: 24px; color: var(--accent-deep); }
.step h4 { font-family: var(--font-display); font-size: 1.1rem; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 0.9rem; }

/* ---------- 15. Testimonials ---------- */
.tm-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.tm-card { padding: 30px; border-radius: var(--radius); background: var(--card); border: 1px solid var(--border); box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), border-color .3s, box-shadow .3s; }
.tm-card:hover { transform: translateY(-5px); border-color: var(--border-2); box-shadow: var(--shadow); }
.tm-stars { display: flex; gap: 3px; margin-bottom: 16px; color: var(--warning); }
.tm-stars svg { width: 17px; height: 17px; }
.tm-quote { color: var(--text-2); font-size: 1rem; line-height: 1.7; font-style: italic; }
.tm-author { display: flex; align-items: center; gap: 12px; margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--border); }
.tm-avatar { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; font-family: var(--font-display); font-weight: 600; color: #fff; background: var(--grad); }
.tm-name { font-family: var(--font-display); font-weight: 600; font-size: 0.93rem; }
.tm-role { color: var(--muted); font-size: 0.81rem; }

/* ---------- 16. FAQ accordion ---------- */
.faq-list { display: grid; gap: 14px; max-width: 860px; margin: 0 auto; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); background: var(--card); box-shadow: var(--shadow-sm); overflow: hidden; transition: border-color .3s, box-shadow .3s; }
.faq-item.open { border-color: var(--border-glow); box-shadow: var(--shadow); }
.faq-q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 23px 26px; text-align: left; font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; color: var(--text); }
.faq-q .faq-icon { width: 28px; height: 28px; flex: none; border-radius: 9px; display: grid; place-items: center; border: 1px solid var(--border-2); position: relative; transition: background .3s, border-color .3s; }
.faq-q .faq-icon::before, .faq-q .faq-icon::after { content: ""; position: absolute; background: var(--accent); border-radius: 2px; transition: transform .3s var(--ease), background .3s; }
.faq-q .faq-icon::before { width: 12px; height: 2px; }
.faq-q .faq-icon::after { width: 2px; height: 12px; }
.faq-item.open .faq-icon { background: var(--accent); border-color: var(--accent); }
.faq-item.open .faq-icon::before { background: #fff; }
.faq-item.open .faq-icon::after { transform: rotate(90deg); opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-a-inner { padding: 0 26px 24px; color: var(--muted); font-size: 0.98rem; line-height: 1.75; }

/* faq categories */
.faq-cats { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 44px; }
.faq-cat { font-family: var(--font-ui); padding: 9px 18px; border-radius: 100px; font-size: 0.86rem; font-weight: 500; color: var(--text-2); border: 1px solid var(--border-2); background: #fff; transition: all .25s; }
.faq-cat:hover { color: var(--accent-deep); border-color: var(--accent); }
.faq-cat.active { color: #fff; background: var(--grad); border-color: transparent; box-shadow: 0 6px 16px rgba(217,119,87,0.3); }
.faq-section-title { font-family: var(--font-display); font-size: 1.2rem; margin: 40px 0 18px; display: flex; align-items: center; gap: 10px; }
.faq-section-title::before { content:""; width: 4px; height: 20px; border-radius: 4px; background: var(--grad); }

/* ---------- 17. CTA band ---------- */
.cta-band { position: relative; border-radius: var(--radius-lg); padding: 64px; text-align: center; overflow: hidden;
  background: linear-gradient(135deg, #fff, var(--bg-2)); border: 1px solid var(--border-2); box-shadow: var(--shadow); }
.cta-band::before { content:""; position: absolute; inset: 0; background: radial-gradient(620px 300px at 50% 0%, rgba(217,119,87,0.14), transparent 70%); pointer-events: none; }
.cta-band h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); position: relative; }
.cta-band .lead { margin: 18px auto 0; position: relative; }
.cta-band .hero-cta { justify-content: center; position: relative; }

/* ---------- 18. Footer ---------- */
.site-footer { position: relative; margin-top: 40px; border-top: 1px solid var(--border); background: var(--bg-2); padding: 74px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1.4fr; gap: 40px; }
.footer-brand .brand { margin-bottom: 18px; }
.footer-desc { color: var(--muted); font-size: 0.92rem; max-width: 300px; }
.footer-status { display: inline-flex; align-items: center; gap: 9px; margin-top: 20px; padding: 9px 15px; border-radius: 100px; font-family: var(--font-mono); font-size: 0.76rem; color: var(--success); background: rgba(120,140,93,0.10); border: 1px solid rgba(120,140,93,0.28); }
.footer-status::before { content:""; width: 7px; height: 7px; border-radius: 50%; background: var(--success); box-shadow: 0 0 8px var(--success); animation: blink 2s infinite; }
.footer-col h5 { font-family: var(--font-ui); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 18px; }
.footer-col ul { display: grid; gap: 11px; }
.footer-col a { color: var(--text-2); font-size: 0.92rem; }
.footer-col a:hover { color: var(--accent-deep); }
.footer-contact li { color: var(--text-2); font-size: 0.9rem; display: flex; gap: 9px; align-items: flex-start; margin-bottom: 11px; }
.footer-contact svg { width: 16px; height: 16px; color: var(--accent); flex: none; margin-top: 3px; }
.newsletter { margin-top: 18px; }
.newsletter form { display: flex; gap: 8px; margin-top: 12px; }
.newsletter input { flex: 1; padding: 12px 15px; border-radius: 12px; background: #fff; border: 1px solid var(--border-2); color: var(--text); transition: border-color .25s; }
.newsletter input:focus { outline: none; border-color: var(--accent); }
.newsletter button { padding: 12px 16px; border-radius: 12px; background: var(--grad); color: #fff; display: grid; place-items: center; transition: transform .25s; }
.newsletter button:hover { transform: translateY(-2px); }
.newsletter button svg { width: 18px; height: 18px; }
.newsletter .ok { color: var(--success); font-size: 0.84rem; margin-top: 10px; }
.social { display: flex; gap: 10px; margin-top: 20px; }
.social a { width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; border: 1px solid var(--border-2); background: #fff; transition: all .25s; }
.social a:hover { border-color: var(--accent); background: var(--accent-soft); transform: translateY(-3px); }
.social svg { width: 18px; height: 18px; color: var(--text-2); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 18px; flex-wrap: wrap; margin-top: 52px; padding-top: 26px; border-top: 1px solid var(--border); }
.footer-bottom p { color: var(--muted); font-size: 0.85rem; }
.footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-legal a { color: var(--muted); font-size: 0.85rem; }
.footer-legal a:hover { color: var(--accent-deep); }

/* ---------- 19. Misc sections ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
.value-card { padding: 28px; border-radius: var(--radius); background: var(--card); border: 1px solid var(--border); box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), border-color .3s, box-shadow .3s; }
.value-card:hover { transform: translateY(-5px); border-color: var(--border-2); box-shadow: var(--shadow); }
.value-card .vc-num { font-family: var(--font-mono); font-size: 0.78rem; color: var(--accent-deep); }
.value-card h4 { font-family: var(--font-display); margin: 10px 0 8px; font-size: 1.12rem; }
.value-card p { color: var(--muted); font-size: 0.92rem; }

.contact-card { padding: 26px; border-radius: var(--radius); background: var(--card); border: 1px solid var(--border); box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), border-color .3s, box-shadow .3s; }
.contact-card:hover { transform: translateY(-5px); border-color: var(--border-glow); box-shadow: var(--shadow); }
.contact-card .cc-ico { width: 48px; height: 48px; border-radius: 13px; display: grid; place-items: center; background: var(--grad-soft); border: 1px solid var(--border); margin-bottom: 16px; }
.contact-card .cc-ico svg { width: 22px; height: 22px; color: var(--accent-deep); }
.contact-card h4 { font-family: var(--font-display); font-size: 1.1rem; margin-bottom: 6px; }
.contact-card p { color: var(--muted); font-size: 0.9rem; }
.contact-card a { color: var(--accent-deep); font-size: 0.91rem; font-weight: 600; font-family: var(--font-ui); }

/* form */
.form { padding: 34px; border-radius: var(--radius-lg); background: var(--card); border: 1px solid var(--border); box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--font-ui); font-size: 0.85rem; font-weight: 500; margin-bottom: 8px; color: var(--text-2); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border-radius: 13px; background: var(--bg); color: var(--text);
  border: 1px solid var(--border-2); transition: border-color .25s, box-shadow .25s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(217,119,87,0.12); background: #fff; }
.field textarea { resize: vertical; min-height: 130px; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none' stroke='%236f6c63' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 15px center; padding-right: 40px; }
.field.error input, .field.error select, .field.error textarea { border-color: var(--danger); }
.field .err-msg { color: var(--danger); font-size: 0.78rem; margin-top: 6px; display: none; }
.field.error .err-msg { display: block; }
.form-success { display: none; padding: 16px; border-radius: 13px; background: rgba(120,140,93,0.12); border: 1px solid rgba(120,140,93,0.35); color: var(--success); font-size: 0.93rem; margin-top: 8px; }
.form-success.show { display: block; }

/* pricing toggle */
.toggle-wrap { display: inline-flex; align-items: center; gap: 4px; padding: 5px; border-radius: 100px; background: #fff; border: 1px solid var(--border-2); box-shadow: var(--shadow-sm); }
.toggle-btn { font-family: var(--font-ui); padding: 10px 26px; border-radius: 100px; font-weight: 600; font-size: 0.9rem; color: var(--muted); transition: all .3s var(--ease); }
.toggle-btn.active { color: #fff; background: var(--grad); box-shadow: 0 6px 16px rgba(217,119,87,0.3); }
.toggle-panel { display: none; }
.toggle-panel.active { display: block; animation: fadeUp .5s var(--ease); }

/* logos strip */
.logo-strip { display: flex; flex-wrap: wrap; gap: 30px 50px; justify-content: center; align-items: center; opacity: 0.8; }
.logo-strip .lg { font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; color: var(--muted); letter-spacing: 0.02em; display:flex; align-items:center; gap:8px; }
.logo-strip .lg svg { width: 20px; height: 20px; color: var(--muted); }

/* big quote / mission */
.pull { font-family: var(--font-sans); font-size: clamp(1.5rem, 3vw, 2.2rem); line-height: 1.45; font-weight: 500; color: var(--text); }
.pull .gradient-text { font-weight: 600; }

/* legal */
.legal { max-width: 860px; margin: 0 auto; }
.legal-meta { color: var(--muted); font-size: 0.85rem; font-family: var(--font-mono); margin-bottom: 30px; }
.legal h2 { font-size: 1.45rem; margin: 40px 0 14px; scroll-margin-top: 100px; }
.legal h3 { font-size: 1.12rem; margin: 24px 0 10px; }
.legal p, .legal li { color: var(--text-2); font-size: 1rem; line-height: 1.8; margin-bottom: 12px; }
.legal a { color: var(--accent-deep); font-weight: 500; text-decoration: underline; text-decoration-color: rgba(217,119,87,0.4); }
.legal ul { list-style: disc; padding-left: 22px; }
.legal ul li { margin-bottom: 8px; }
.legal-toc { padding: 26px; border-radius: var(--radius); background: var(--card); border: 1px solid var(--border); box-shadow: var(--shadow-sm); margin-bottom: 40px; }
.legal-toc h4 { font-family: var(--font-ui); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); margin-bottom: 14px; }
.legal-toc ul { display: grid; gap: 9px; }
.legal-toc a { color: var(--text-2); font-size: 0.92rem; text-decoration: none; }
.legal-toc a:hover { color: var(--accent-deep); }

/* spec chips */
.spec-tier { display:flex; flex-wrap:wrap; gap:8px; margin: 16px 0; }
.spec-chip { font-family: var(--font-mono); font-size: 0.72rem; padding: 6px 12px; border-radius: 9px; background: #fff; border: 1px solid var(--border-2); color: var(--text-2); }

/* architecture diagram */
.arch { display: grid; gap: 16px; }
.arch-layer { display: flex; align-items: center; gap: 16px; padding: 22px 24px; border-radius: var(--radius); background: var(--card); border: 1px solid var(--border); box-shadow: var(--shadow-sm); position: relative; }
.arch-layer .al-ico { width: 50px; height: 50px; flex:none; border-radius: 13px; display: grid; place-items: center; background: var(--grad-soft); border: 1px solid var(--border-2); }
.arch-layer .al-ico svg { width: 23px; height: 23px; color: var(--accent-deep); }
.arch-layer h4 { font-family: var(--font-display); font-size: 1.06rem; margin-bottom: 4px; }
.arch-layer p { color: var(--muted); font-size: 0.9rem; }
.arch-tag { margin-left: auto; font-family: var(--font-mono); font-size: 0.72rem; color: var(--accent-deep); padding: 5px 11px; border-radius: 9px; background: var(--accent-soft); border: 1px solid rgba(217,119,87,0.22); white-space: nowrap; }

/* ---------- 20. Scroll reveal ---------- */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: .08s; }
[data-reveal][data-delay="2"] { transition-delay: .16s; }
[data-reveal][data-delay="3"] { transition-delay: .24s; }
[data-reveal][data-delay="4"] { transition-delay: .32s; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }

/* hero canvas */
.hero-canvas { position: absolute; inset: 0; z-index: -1; opacity: 0.6; }

/* scroll progress */
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 1100; background: var(--grad); box-shadow: 0 0 10px rgba(217,119,87,0.5); transition: width .1s linear; }

/* glowing divider */
.glow-line { height: 1px; background: var(--grad-line); margin: 0 auto; max-width: 1100px; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  [data-reveal] { opacity: 1; transform: none; }
}
