/* ============================================================
   TSIKHE SECURITY SOLUTIONS — GLOBAL STYLESHEET
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Barlow:wght@300;400;500;600&family=Barlow+Condensed:wght@300;400;500&display=swap');

/* ── VARIABLES ────────────────────────────────────────────── */
:root {
  --black-blue:   #080d14;
  --deep-slate:   #0d1a28;
  --mid-slate:    #0f2233;
  --green-hint:   #0d2318;
  --brand-green:  #1B5925;
  --accent-green: #2a7a3a;
  --light-green:  #3a9a50;
  --white:        #f4f4f2;
  --white-dim:    rgba(244,244,242,0.7);
  --white-faint:  rgba(244,244,242,0.35);
  --white-ghost:  rgba(244,244,242,0.12);
  --gold:         #E8A245;

  --font-serif:  'Instrument Serif', Georgia, serif;
  --font-sans:   'Barlow', sans-serif;
  --font-cond:   'Barlow Condensed', sans-serif;

  --nav-height:  72px;
  --max-width:   1240px;
  --section-pad: 120px;
}

/* ── RESET ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--black-blue);
  color: var(--white);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ── GRADIENT BACKGROUND ──────────────────────────────────── */
.page-gradient {
  background: linear-gradient(
    105deg,
    var(--black-blue) 0%,
    var(--deep-slate) 40%,
    var(--mid-slate) 65%,
    var(--green-hint) 85%,
    #0f2a1a 100%
  );
  min-height: 100vh;
}

/* ── NAVIGATION ───────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  z-index: 1000;
  display: flex;
  align-items: center;
  padding: 0 48px;
  background: rgba(8,13,20,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--white-ghost);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.nav-logo img {
  height: 38px;
  width: auto;
}

.nav-logo-text {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  color: var(--white);
}

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

.nav-links a {
  font-family: var(--font-cond);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-dim);
  transition: color 0.2s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--light-green);
  transform: scaleX(0);
  transition: transform 0.2s ease;
  transform-origin: left;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-lang {
  margin-left: 36px;
  font-family: var(--font-cond);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--white-faint);
  border: 1px solid var(--white-ghost);
  padding: 4px 10px;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.nav-lang:hover {
  color: var(--white);
  border-color: var(--white-faint);
}

/* Hamburger mobile */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  margin-left: auto;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--white);
  transition: all 0.3s ease;
}

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: calc(var(--nav-height) + 80px) 48px 80px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 120px 1fr;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  gap: 0;
  align-items: flex-start;
}

/* YOU column */
.hero-you {
  padding-right: 32px;
  animation: fadeInLeft 1s ease forwards;
}

.hero-you p {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2vw, 1.9rem);
  line-height: 1.5;
  color: rgba(244,244,242,1);
  text-align: left;
  margin-bottom: 0.6em;
}

.hero-you p:last-child {
  color: rgba(244,244,242,1);
  font-style: normal;
}

/* White space column — the gap IS the message */
.hero-space {
  position: relative;
}

.hero-space::after {
  content: '';
  display: block;
  width: 1px;
  height: 140px;
  background: linear-gradient(to bottom, transparent, var(--white-ghost), transparent);
  margin: 0 auto;
}

/* WE column */
.hero-we {
  padding-left: 32px;
  animation: fadeInRight 1s ease 0.3s forwards;
  opacity: 0;
}

.hero-we p {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2vw, 1.9rem);
  line-height: 1.5;
  color: rgba(244,244,242,1);
  text-align: right;
  margin-bottom: 0.6em;
}

.hero-we p:first-child {
  color: rgba(244,244,242,1);
}

.hero-we p em {
  color: rgba(244,244,242,1);
  font-style: normal;
}

/* Tsikhe closing block — THE dominant element */
.hero-close {
  max-width: var(--max-width);
  margin: 72px auto 0;
  width: 100%;
  text-align: center;
  animation: fadeInUp 1s ease 0.7s forwards;
  opacity: 0;
}

.hero-close .tagline {
  font-family: var(--font-cond);
  font-size: clamp(0.9rem, 1.4vw, 1.25rem);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(244,244,242,1);
  font-weight: 300;
  margin-bottom: 20px;
  line-height: 1.6;
}

.hero-close .brand {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 8.5vw, 7.5rem);
  color: var(--white);
  letter-spacing: 0.04em;
  line-height: 1;
}

.hero-close .brand span {
  color: #3a9a50;
}

.hero-divider {
  width: 80px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--accent-green), transparent);
  margin: 32px auto 0;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.4;
  animation: pulse 2.5s ease infinite;
}

.hero-scroll span {
  font-family: var(--font-cond);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--white), transparent);
}

/* ── SECTION BASE ─────────────────────────────────────────── */
.section {
  padding: var(--section-pad) 48px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-label {
  font-family: var(--font-cond);
  font-size: 0.78rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #3a9a50;
  margin-bottom: 24px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.25;
  color: var(--white);
  margin-bottom: 32px;
}

.section-title em {
  font-style: italic;
  color: rgba(244,244,242,1);
}

.section-body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--white-dim);
  max-width: 680px;
}

/* ── RULE DIVIDER ─────────────────────────────────────────── */
.rule {
  border: none;
  border-top: 1px solid var(--white-ghost);
  margin: 0 48px;
}

/* ── PAGE HEADER (inner pages) ────────────────────────────── */
.page-header {
  padding: calc(var(--nav-height) + 80px) 48px 60px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.page-header .section-label {
  margin-bottom: 16px;
}

.page-header h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.15;
  color: var(--white);
}

.page-header p {
  font-size: 1.1rem;
  color: var(--white-dim);
  margin-top: 20px;
  max-width: 600px;
}

/* ── THREAT PAGE ──────────────────────────────────────────── */
.threat-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 60px;
  align-items: start;
}

.threat-item {
  padding: 40px;
  border: 1px solid var(--white-ghost);
  border-left: 3px solid var(--brand-green);
  background: rgba(13,26,40,0.4);
  transition: border-color 0.3s ease, background 0.3s ease;
}

.threat-item:hover {
  border-left-color: var(--light-green);
  background: rgba(13,26,40,0.7);
}

.threat-item h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 16px;
}

.threat-item p {
  color: var(--white-dim);
  font-size: 0.95rem;
  line-height: 1.75;
}

.threat-item .threat-tag {
  display: inline-block;
  font-family: var(--font-cond);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--light-green);
  margin-bottom: 12px;
}

/* ── SOLUTIONS PAGE ───────────────────────────────────────── */
.hegseth-block {
  background: rgba(27,89,37,0.12);
  border: 1px solid rgba(27,89,37,0.3);
  border-left: 4px solid var(--brand-green);
  padding: 48px;
  margin-bottom: 80px;
}

.hegseth-block blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  line-height: 1.5;
  color: var(--white);
  font-style: italic;
}

.hegseth-block cite {
  display: block;
  margin-top: 20px;
  font-family: var(--font-cond);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--light-green);
  font-style: normal;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px;
  background: var(--white-ghost);
  border: 1px solid var(--white-ghost);
}

.solution-card {
  background: var(--black-blue);
  padding: 48px 40px;
  transition: background 0.3s ease;
}

.solution-card:hover {
  background: var(--deep-slate);
}

.solution-card .card-num {
  font-family: var(--font-cond);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--accent-green);
  margin-bottom: 20px;
}

.solution-card h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 14px;
}

.solution-card p {
  font-size: 0.9rem;
  color: var(--white-dim);
  line-height: 1.7;
}

/* ── PLATFORM PAGE ────────────────────────────────────────── */
.platform-apps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  background: var(--white-ghost);
  margin-top: 60px;
}

.app-card {
  background: var(--black-blue);
  padding: 48px 32px;
  text-align: center;
  transition: background 0.3s ease;
  cursor: default;
}

.app-card:hover {
  background: rgba(27,89,37,0.15);
}

.app-card .app-name {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 12px;
}

.app-card .app-desc {
  font-family: var(--font-cond);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--light-green);
}

.app-card .app-coming {
  display: inline-block;
  margin-top: 20px;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-faint);
  border: 1px solid var(--white-ghost);
  padding: 4px 12px;
}

.platform-hardware {
  margin-top: 80px;
  padding: 60px;
  border: 1px solid var(--white-ghost);
  background: rgba(8,13,20,0.6);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.platform-hardware h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--white);
  margin-bottom: 20px;
}

.platform-hardware p {
  color: var(--white-dim);
  line-height: 1.8;
  margin-bottom: 16px;
}

.hardware-specs {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border-left: 2px solid var(--brand-green);
  background: rgba(27,89,37,0.08);
}

.spec-item span {
  font-family: var(--font-cond);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-dim);
}

.spec-item strong {
  font-weight: 500;
  color: var(--white);
  margin-left: auto;
  font-size: 0.85rem;
}

/* ── NEWSROOM ─────────────────────────────────────────────── */
.newsroom-grid {
  display: grid;
  gap: 1px;
  background: var(--white-ghost);
  margin-top: 60px;
}

.news-item {
  background: var(--black-blue);
  padding: 48px;
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 48px;
  align-items: start;
  transition: background 0.3s ease;
  cursor: pointer;
}

.news-item:hover {
  background: var(--deep-slate);
}

.news-date {
  font-family: var(--font-cond);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-faint);
  padding-top: 6px;
  border-top: 1px solid var(--white-ghost);
}

.news-content .news-tag {
  font-family: var(--font-cond);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--light-green);
  margin-bottom: 12px;
}

.news-content h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.3;
}

.news-content p {
  color: var(--white-dim);
  font-size: 0.95rem;
  line-height: 1.75;
  max-width: 680px;
}

.news-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-family: var(--font-cond);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--light-green);
}

.news-read-more::after {
  content: '→';
}

/* ── ABOUT PAGE ───────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 60px;
}

.about-metis {
  margin-top: 80px;
  padding: 60px;
  border: 1px solid var(--white-ghost);
  border-left: 4px solid var(--brand-green);
  background: rgba(27,89,37,0.08);
}

.about-metis h2 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 20px;
}

.about-metis p {
  color: var(--white-dim);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-anon {
  margin-top: 80px;
  text-align: center;
  padding: 60px;
  border: 1px solid var(--white-ghost);
}

.about-anon p {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--white-dim);
  max-width: 600px;
  margin: 0 auto;
}

/* ── CONTACT PAGE ─────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 60px;
  align-items: start;
}

.contact-info h2 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 24px;
}

.contact-info p {
  color: var(--white-dim);
  line-height: 1.8;
  margin-bottom: 40px;
  font-size: 0.95rem;
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--white-ghost);
  margin-bottom: 40px;
}

.channel-item {
  background: var(--black-blue);
  padding: 20px 24px;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 20px;
  align-items: center;
  transition: background 0.2s ease;
}

.channel-item:hover {
  background: var(--deep-slate);
}

.channel-label {
  font-family: var(--font-cond);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-faint);
}

.channel-value {
  font-size: 0.9rem;
  color: var(--white);
}

.channel-value a {
  color: var(--light-green);
  transition: color 0.2s ease;
}

.channel-value a:hover {
  color: var(--white);
}

.contact-no-phone {
  padding: 24px;
  border: 1px solid var(--white-ghost);
  font-size: 0.85rem;
  color: var(--white-faint);
  font-style: italic;
  line-height: 1.7;
}

/* Contact Form */
.contact-form-wrap h2 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 32px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-family: var(--font-cond);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white-faint);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(13,26,40,0.8);
  border: 1px solid var(--white-ghost);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 300;
  padding: 14px 18px;
  outline: none;
  transition: border-color 0.2s ease;
  border-radius: 0;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent-green);
}

.form-group select option {
  background: var(--deep-slate);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

/* Honeypot */
.hp-field { display: none !important; }

.form-submit {
  width: 100%;
  background: transparent;
  border: 1px solid var(--accent-green);
  color: var(--white);
  font-family: var(--font-cond);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 18px 32px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 8px;
}

.form-submit:hover {
  background: var(--brand-green);
  border-color: var(--brand-green);
}

.form-success {
  display: none;
  padding: 24px;
  background: rgba(27,89,37,0.2);
  border: 1px solid var(--accent-green);
  color: var(--white);
  font-size: 0.95rem;
  margin-top: 16px;
  text-align: center;
}

.response-commitment {
  margin-top: 20px;
  font-family: var(--font-cond);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-faint);
  text-align: center;
}

/* ── WAITLIST BAND ────────────────────────────────────────── */
.waitlist-band {
  background: rgba(13,26,40,0.95);
  border-top: 1px solid var(--white-ghost);
  border-bottom: 1px solid var(--white-ghost);
  padding: 80px 48px;
  text-align: center;
}

.waitlist-band h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--white);
  margin-bottom: 12px;
}

.waitlist-band p {
  color: var(--white-faint);
  margin-bottom: 40px;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}

.waitlist-form {
  display: flex;
  gap: 0;
  max-width: 480px;
  margin: 0 auto;
}

.waitlist-form input[type="email"] {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--white-ghost);
  border-right: none;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  padding: 14px 20px;
  outline: none;
  border-radius: 0;
}

.waitlist-form input::placeholder {
  color: var(--white-faint);
}

.waitlist-form input:focus {
  border-color: var(--accent-green);
}

.waitlist-form button {
  background: var(--brand-green);
  border: 1px solid var(--brand-green);
  color: var(--white);
  font-family: var(--font-cond);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 14px 28px;
  cursor: pointer;
  transition: background 0.2s ease;
  border-radius: 0;
  white-space: nowrap;
}

.waitlist-form button:hover {
  background: var(--accent-green);
}

/* ── FOOTER ───────────────────────────────────────────────── */
.footer {
  background: var(--black-blue);
  border-top: 1px solid var(--white-ghost);
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo img {
  height: 28px;
}

.footer-logo span {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--white-dim);
}

.footer-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-links a {
  font-family: var(--font-cond);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-faint);
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--white-dim);
}

.footer-copy {
  font-family: var(--font-cond);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--white-faint);
  width: 100%;
  padding-top: 24px;
  border-top: 1px solid var(--white-ghost);
  margin-top: 12px;
}


  .hero-close { margin-top: 48px; }
  .hero-close .brand { font-size: clamp(2.4rem, 7vw, 7rem); }
}
/* ── ANIMATIONS ───────────────────────────────────────────── */
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 0.7; }
}

/* ── UTILITIES ────────────────────────────────────────────── */
.text-green  { color: var(--light-green); }
.text-dim    { color: var(--white-dim); }
.text-right  { text-align: right; }
.text-center { text-align: center; }
.mt-80       { margin-top: 80px; }
.mb-40       { margin-bottom: 40px; }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .platform-apps { grid-template-columns: repeat(3, 1fr); }
  .threat-block  { grid-template-columns: 1fr; }
  .platform-hardware { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --section-pad: 70px; }

  .nav { padding: 0 24px; }
  .nav-links { display: none; flex-direction: column; position: fixed;
    top: var(--nav-height); left: 0; right: 0; bottom: 0;
    background: rgba(8,13,20,0.97); padding: 48px 24px;
    gap: 28px; align-items: flex-start; }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.2rem; }
  .nav-lang { margin-left: 0; }
  .nav-toggle { display: flex; }

  .hero { padding: calc(var(--nav-height) + 32px) 20px 48px; }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .hero-space { display: none; }

  /* YOU block — mobile */
  .hero-you { padding-right: 0 !important; padding-bottom: 28px; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .hero-you p { text-align: left !important; font-size: clamp(1.15rem, 4.5vw, 1.6rem); }

  /* WE block — mobile, flush left, no indent */
  .hero-we { padding-left: 0 !important; padding-top: 28px; }
  .hero-we p { text-align: right !important; font-size: clamp(1.15rem, 4.5vw, 1.6rem); }
  .hero-we p:first-child { color: rgba(244,244,242,1); }

  /* Tsikhe Suite — tighter on mobile */
  .hero-close { margin-top: 48px; }
  .hero-close { text-align: center; }
  .hero-close .tagline { font-size: clamp(0.72rem, 3.2vw, 1rem); letter-spacing: 0.14em; }
  .hero-close .brand { font-size: clamp(2.4rem, 13vw, 4.5rem); }

  .section { padding: var(--section-pad) 20px; }
  .rule { margin: 0 20px; }
  .page-header { padding: calc(var(--nav-height) + 40px) 20px 32px; }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .news-item { grid-template-columns: 1fr; gap: 16px; }
  .platform-apps { grid-template-columns: 1fr 1fr; }
  .solutions-grid { grid-template-columns: 1fr; }

  .footer { padding: 32px 20px; flex-direction: column; align-items: flex-start; }
  .waitlist-band { padding: 48px 20px; }
  .waitlist-form { flex-direction: column; }
  .waitlist-form input { border-right: 1px solid var(--white-ghost); border-bottom: none; }
  .waitlist-form button { width: 100%; }

  .about-metis, .platform-hardware { padding: 32px 20px; }
  .hegseth-block { padding: 32px 20px; }
  .platform-hardware { grid-template-columns: 1fr; gap: 32px; }
  .contact-grid { padding: 0; }
}

@media (max-width: 480px) {
  .platform-apps { grid-template-columns: 1fr; }
  .channel-item { grid-template-columns: 1fr; gap: 4px; }
  .hero { padding: calc(var(--nav-height) + 24px) 16px 40px; }
  .hero-scroll { display: none; }
  .section { padding: 50px 16px; }
  .rule { margin: 0 16px; }
  .page-header { padding: calc(var(--nav-height) + 32px) 16px 28px; }
  .footer { padding: 28px 16px; }
  .waitlist-band { padding: 40px 16px; }
}
