/* ═══════════════════════════════════════════════════════════════
   Tai Technologies — External Website
   Theme: Deep navy / charcoal with gold accents
═══════════════════════════════════════════════════════════════ */

/* ── Landing Page ── */
#landingView {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 40px 24px;
}

.land-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.land-glow {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.land-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 560px;
  width: 100%;
  gap: 0;
}

.land-logo-wrap { margin-bottom: 20px; }
.land-logo {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  box-shadow: 0 0 40px rgba(201,168,76,0.15);
}

.land-wordmark {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  margin-bottom: 20px;
}
.lw-tai  { color: var(--text-primary); }
.lw-space { display: inline-block; width: 5px; }
.lw-tech { color: var(--gold); }

.land-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37,168,96,0.08);
  border: 1px solid rgba(37,168,96,0.2);
  border-radius: 99px;
  padding: 5px 14px;
  font-size: 11.5px;
  color: var(--green);
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-bottom: 36px;
}
.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.land-headline {
  font-size: clamp(32px, 6vw, 52px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 20px;
}
.land-gold { color: var(--gold); }

.land-sub {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 460px;
}

.land-request-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
  width: 100%;
}

.btn-request {
  background: var(--gold);
  color: #070B14;
  border: none;
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 13px 36px;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
}
.btn-request:hover { background: var(--gold-bright); transform: translateY(-1px); }

.land-insider-hint {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}
.land-insider-hint:focus-within { border-color: var(--border-light); }

.insider-input {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-family: var(--font);
  font-size: 13px;
  padding: 10px 14px;
  outline: none;
  width: 180px;
}
.insider-input::placeholder { color: var(--text-muted); font-size: 12px; }

.insider-btn {
  background: transparent;
  border: none;
  border-left: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 14px;
  padding: 10px 14px;
  cursor: pointer;
  transition: color 0.15s, background 0.15s;
}
.insider-btn:hover { color: var(--gold); background: var(--card); }

.land-footer {
  color: var(--text-muted);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  display: flex;
  gap: 10px;
  align-items: center;
}
.land-footer-dot { opacity: 0.4; }

/* ── Toast ── */
.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--card);
  border: 1px solid var(--border-light);
  border-left: 3px solid var(--red);
  color: var(--text-primary);
  padding: 10px 20px;
  border-radius: var(--radius);
  font-size: 13px;
  box-shadow: var(--shadow);
  z-index: 999;
  animation: toastIn 0.2s ease;
  white-space: nowrap;
}
@keyframes toastIn {
  from { opacity: 0; transform: translateX(-50%) translateY(8px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* ── Request Modal ── */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 500;
  padding: 20px;
}

.modal-box {
  background: var(--card);
  border: 1px solid var(--border-light);
  border-top: 2px solid var(--gold);
  border-radius: var(--radius-xl);
  width: min(520px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  padding: 36px;
  box-shadow: var(--shadow);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.modal-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}
.modal-x {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 16px;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  transition: color 0.15s;
}
.modal-x:hover { color: var(--text-primary); }

.modal-sub {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 28px;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.modal-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 11.5px;
  color: var(--text-label);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}
.modal-form input,
.modal-form textarea {
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  color: var(--text-primary);
  font-family: var(--font);
  font-size: 14px;
  padding: 10px 14px;
  outline: none;
  transition: border-color 0.15s;
  width: 100%;
  resize: vertical;
}
.modal-form input:focus,
.modal-form textarea:focus { border-color: var(--gold); }
.modal-form input::placeholder,
.modal-form textarea::placeholder { color: var(--text-muted); }

.form-error {
  color: var(--red);
  font-size: 12.5px;
  padding: 8px 12px;
  background: rgba(212,64,80,0.08);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(212,64,80,0.2);
}

.btn-submit {
  background: var(--gold);
  color: #070B14;
  border: none;
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  padding: 12px;
  cursor: pointer;
  transition: background 0.15s;
  margin-top: 4px;
}
.btn-submit:hover { background: var(--gold-bright); }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; }

.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 0;
  gap: 12px;
}
.success-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(37,168,96,0.12);
  border: 1px solid rgba(37,168,96,0.3);
  color: var(--green);
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.success-title { font-size: 18px; font-weight: 700; color: var(--text-primary); }
.success-sub { font-size: 14px; color: var(--text-secondary); line-height: 1.6; max-width: 340px; }

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

:root {
  --bg:           #070B14;
  --bg-alt:       #0A1020;
  --surface:      #0D1525;
  --card:         #111E33;
  --card-hover:   #162540;
  --border:       #1C2D48;
  --border-light: #243858;

  --gold:         #C9A84C;
  --gold-bright:  #E0C060;
  --gold-dim:     #8A6E2A;
  --gold-muted:   #2A2010;
  --gold-glow:    rgba(201,168,76,0.12);

  --text-primary:   #D8E4F4;
  --text-secondary: #7A91B8;
  --text-muted:     #3E5070;
  --text-label:     #5A7298;

  --green:  #25A860;
  --yellow: #D4901C;
  --red:    #D44050;

  --font:      'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-mono: 'Cascadia Code', 'Consolas', monospace;

  --radius-sm: 4px;
  --radius:    8px;
  --radius-lg: 14px;
  --radius-xl: 20px;

  --shadow:    0 4px 32px rgba(0,0,0,0.6);
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.4);
  --glow:      0 0 80px rgba(201,168,76,0.08);

  --nav-h: 64px;
  --max-w: 1140px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
}

body {
  background: var(--bg);
  color: var(--text-primary);
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: #070B14;
  border: none;
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 12px 24px;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
  white-space: nowrap;
}
.btn-primary:hover { background: var(--gold-bright); transform: translateY(-1px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  padding: 11px 22px;
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s, transform 0.1s;
  white-space: nowrap;
}
.btn-ghost:hover { border-color: var(--gold-dim); color: var(--text-primary); transform: translateY(-1px); }

/* ── Tags ── */
.tag {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(36,56,88,0.6);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  border-radius: 99px;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* ── Nav ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  z-index: 100;
  transition: background 0.3s, border-color 0.3s, backdrop-filter 0.3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(7,11,20,0.88);
  backdrop-filter: blur(16px);
  border-color: var(--border);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 32px;
  gap: 40px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.14em;
  font-size: 15px;
  font-weight: 700;
  flex-shrink: 0;
}
.nav-logo {
  width: 32px;
  height: 32px;
  border-radius: 7px;
  object-fit: contain;
  flex-shrink: 0;
}
.brand-tai   { color: var(--text-primary); }
.brand-space { display: inline-block; width: 4px; }
.brand-tech  { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.nav-link {
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  transition: color 0.15s;
}
.nav-link:hover { color: var(--text-primary); }

.nav-cta {
  background: transparent;
  border: 1px solid var(--gold-dim);
  color: var(--gold);
  border-radius: var(--radius);
  font-size: 13.5px;
  font-weight: 600;
  padding: 8px 18px;
  letter-spacing: 0.04em;
  transition: background 0.15s, border-color 0.15s;
  margin-left: 8px;
}
.nav-cta:hover { background: var(--gold-muted); border-color: var(--gold); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-secondary);
  border-radius: 2px;
  transition: opacity 0.2s;
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: calc(var(--nav-h) + 40px) 32px 80px;
  overflow: hidden;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.035) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: var(--max-w);
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-tag {
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-headline {
  font-size: clamp(38px, 5vw, 58px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 24px;
}
.headline-gold { color: var(--gold); }

.hero-sub {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Hero card */
.hero-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow), var(--glow);
}

.hero-card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--card);
  border-bottom: 1px solid var(--border);
}
.hero-card-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.hero-card-dot.green  { background: #25A860; }
.hero-card-dot.yellow { background: #D4901C; }
.hero-card-dot.red    { background: #D44050; }
.hero-card-label {
  margin-left: auto;
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--gold-dim);
  font-weight: 600;
}

.hero-card-body { padding: 0; }

.hero-placeholder {
  position: relative;
  height: 340px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.hero-placeholder-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.05) 1px, transparent 1px);
  background-size: 32px 32px;
}

.hero-placeholder-label {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-dim);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
}
.placeholder-icon { font-size: 20px; color: var(--gold); }

.hero-placeholder-districts {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  max-width: 280px;
}
.district {
  padding: 4px 12px;
  border-radius: 99px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  border: 1px solid;
}
.district-ops     { background: rgba(36,56,88,0.5);  border-color: #243858; color: #7A91B8; }
.district-finance { background: rgba(42,32,16,0.5);  border-color: #8A6E2A; color: #C9A84C; }
.district-social  { background: rgba(37,168,96,0.1); border-color: rgba(37,168,96,0.3); color: #25A860; }
.district-media   { background: rgba(58,128,200,0.1);border-color: rgba(58,128,200,0.3); color: #4A90D8; }

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--border-light), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* ── Stats Bar ── */
.stats-bar {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px 32px;
}
.stats-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0 48px;
}
.stat-num {
  font-size: 28px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

/* ── Sections ── */
.section { padding: 100px 32px; }
.section-alt { background: var(--bg-alt); }

.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.section-header {
  margin-bottom: 60px;
  max-width: 600px;
}

.section-tag {
  color: var(--gold);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ── Featured Card (City) ── */
.featured-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  background: var(--card);
  border: 1px solid var(--border);
  border-top: 2px solid var(--gold);
  border-radius: var(--radius-xl);
  padding: 48px;
  margin-bottom: 40px;
  box-shadow: var(--shadow), var(--glow);
}

.featured-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.featured-title {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.featured-desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 16px;
}

.featured-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

/* City placeholder visual */
.featured-placeholder {
  position: relative;
  height: 300px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 20px;
  gap: 8px;
}
.city-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 20px 20px;
}
.city-districts {
  position: relative;
  display: flex;
  align-items: flex-end;
  gap: 6px;
  width: 100%;
}
.city-block {
  background: var(--card);
  border: 1px solid var(--border-light);
  border-radius: 4px 4px 0 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 8px;
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-dim);
  font-weight: 600;
  flex: 1;
  transition: border-color 0.2s;
}
.city-block:hover { border-color: var(--gold-dim); color: var(--gold); }
.block-lg { height: 180px; }
.block-md { height: 130px; }
.block-sm { height: 90px; }

/* ── Work Grid ── */
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.work-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.work-card:hover {
  border-color: var(--border-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.work-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.work-icon {
  font-size: 22px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--gold);
}

.work-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
}

.work-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.work-desc {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 18px;
}

.work-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

/* Badges */
.work-badge {
  display: inline-block;
  padding: 2px 9px;
  border-radius: 99px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.badge-os     { background: rgba(201,168,76,0.1);  color: var(--gold); }
.badge-media  { background: rgba(58,128,200,0.12); color: #5A9FD8; }
.badge-map    { background: rgba(37,168,96,0.1);   color: var(--green); }
.badge-ai     { background: rgba(140,80,200,0.12); color: #A070D8; }
.badge-viz    { background: rgba(212,64,80,0.1);   color: #D46070; }

.work-status {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 99px;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.status-active { background: rgba(37,168,96,0.12); color: var(--green); }
.status-dev    { background: rgba(212,144,28,0.12); color: var(--yellow); }

/* ── Services ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: border-color 0.2s, transform 0.2s;
}
.service-card:hover {
  border-color: var(--border-light);
  transform: translateY(-2px);
}

.service-icon {
  font-size: 24px;
  color: var(--gold);
  margin-bottom: 18px;
  display: block;
}

.service-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.service-desc {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.75;
}

.services-cta {
  text-align: center;
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.services-cta p {
  color: var(--text-muted);
  font-size: 14px;
}

/* ── About ── */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 80px;
  align-items: start;
}

.about-text {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-stack {
  margin-top: 32px;
}
.stack-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 12px;
}
.stack-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.about-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-top: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}

.about-card-line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.about-card-line:last-child { border-bottom: none; }

.acl-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  font-weight: 600;
  flex-shrink: 0;
}
.acl-value {
  font-size: 13.5px;
  color: var(--text-primary);
  text-align: right;
}

.about-card-divider {
  height: 1px;
  background: var(--border-light);
  margin: 8px 0;
}

/* ── Contact ── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-header { margin-bottom: 0; }

.contact-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-top: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.contact-item:last-of-type { border-bottom: none; }

.contact-icon {
  font-size: 18px;
  color: var(--gold);
  width: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-label {
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 4px;
}
.contact-value {
  font-size: 14px;
  color: var(--text-primary);
  line-height: 1.5;
}
a.contact-value:hover { color: var(--gold); }

.contact-divider {
  height: 1px;
  background: var(--border);
  margin: 24px 0 28px;
}

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

/* ── Footer ── */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 28px 32px;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}
.footer-brand {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  flex-shrink: 0;
}
.footer-copy {
  color: var(--text-muted);
  font-size: 12px;
}
.footer-domain {
  margin-left: auto;
  color: var(--text-muted);
  font-size: 12px;
  font-family: var(--font-mono);
}

/* ── Responsive ── */
@media (max-width: 1000px) {
  .hero-inner       { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual      { order: -1; }
  .hero-sub         { max-width: 100%; }
  .featured-card    { grid-template-columns: 1fr; }
  .work-grid        { grid-template-columns: repeat(2, 1fr); }
  .services-grid    { grid-template-columns: repeat(2, 1fr); }
  .about-layout     { grid-template-columns: 1fr; }
  .about-card       { position: static; }
  .contact-layout   { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .section          { padding: 70px 20px; }
  .hero             { padding-left: 20px; padding-right: 20px; }
  .nav-inner        { padding: 0 20px; }
  .nav-links        { display: none; flex-direction: column; position: fixed; top: var(--nav-h); left: 0; right: 0; background: var(--bg); border-bottom: 1px solid var(--border); padding: 16px 20px; gap: 4px; }
  .nav-links.open   { display: flex; }
  .nav-toggle       { display: flex; }
  .work-grid        { grid-template-columns: 1fr; }
  .services-grid    { grid-template-columns: 1fr; }
  .stats-inner      { flex-wrap: wrap; gap: 16px; }
  .stat-item        { padding: 0 24px; }
  .footer-inner     { flex-direction: column; gap: 8px; text-align: center; }
  .footer-domain    { margin-left: 0; }
}
