/* ============================================================
   AtkinsonTimeStudy — Marketing Landing Page
   Industrial-engineering-credible, polished, print-friendly
   Palette: deep navy + amber accent + clean neutrals
   ============================================================ */

:root {
  --navy-900: #0a1628;
  --navy-800: #102240;
  --navy-700: #163056;
  --navy-600: #1d3a6b;
  --slate-500: #475569;
  --slate-400: #64748b;
  --slate-300: #94a3b8;
  --slate-200: #cbd5e1;
  --slate-100: #e7edf4;
  --slate-50: #f4f7fb;
  --amber: #f5a623;
  --amber-bright: #ffb547;
  --amber-dark: #c9881b;
  --teal: #2dd4bf;
  --white: #ffffff;
  --shadow-sm: 0 1px 2px rgba(10,22,40,.06), 0 1px 3px rgba(10,22,40,.08);
  --shadow-md: 0 4px 6px -1px rgba(10,22,40,.08), 0 2px 4px -2px rgba(10,22,40,.06);
  --shadow-lg: 0 12px 24px -4px rgba(10,22,40,.14), 0 4px 10px -2px rgba(10,22,40,.08);
  --shadow-xl: 0 24px 48px -12px rgba(10,22,40,.22), 0 8px 20px -4px rgba(10,22,40,.12);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --maxw: 1180px;
  --font-sans: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, Helvetica, Arial, sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', 'Fira Code', ui-monospace, Menlo, Consolas, monospace;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-sans);
  color: var(--slate-500);
  background: var(--white);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

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

::selection { background: var(--amber); color: var(--navy-900); }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10,22,40,0.0);
  backdrop-filter: blur(0px);
  transition: background .35s ease, backdrop-filter .35s ease, box-shadow .35s ease, padding .35s ease;
  padding: 22px 0;
}
.navbar.scrolled {
  background: rgba(10,22,40,0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 6px 24px rgba(10,22,40,.28);
  padding: 14px 0;
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -0.3px;
}
.brand .brand-mark {
  width: 38px; height: 38px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--amber) 0%, var(--amber-dark) 100%);
  display: grid; place-items: center;
  color: var(--navy-900);
  font-weight: 900;
  font-size: 20px;
  font-family: var(--font-mono);
  box-shadow: 0 4px 14px rgba(245,166,35,.4);
}
.brand .brand-name { line-height: 1; }
.brand .brand-name small {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--amber-bright);
  margin-top: 3px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  color: rgba(255,255,255,0.82);
  font-weight: 600;
  font-size: 15px;
  transition: color .2s ease;
  position: relative;
}
.nav-links a:hover { color: var(--amber-bright); }
.nav-links .nav-cta {
  background: var(--amber);
  color: var(--navy-900);
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.nav-links .nav-cta:hover {
  background: var(--amber-bright);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(245,166,35,.45);
  color: var(--navy-900);
}
.nav-toggle { display: none; background: none; border: none; color: #fff; font-size: 26px; cursor: pointer; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: var(--white);
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(245,166,35,0.18), transparent 60%),
    linear-gradient(160deg, #0a1628 0%, #0d1d35 45%, #102240 100%);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1553062407-98eeb64c6a62?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  opacity: 0.10;
  z-index: 0;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,22,40,0.55) 0%, rgba(10,22,40,0.30) 35%, rgba(10,22,40,0.92) 100%);
  z-index: 1;
}
.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 80px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(245,166,35,0.14);
  border: 1px solid rgba(245,166,35,0.40);
  color: var(--amber-bright);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.4px;
  margin-bottom: 28px;
}
.hero-badge .pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--amber-bright);
  box-shadow: 0 0 0 0 rgba(255,181,71,0.7);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255,181,71,0.7); }
  70% { box-shadow: 0 0 0 10px rgba(255,181,71,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,181,71,0); }
}
.hero h1 {
  font-size: clamp(2.4rem, 5.2vw, 4.1rem);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -1.5px;
  margin-bottom: 22px;
  color: #fff;
}
.hero h1 .accent { color: var(--amber-bright); }
.hero .lead {
  font-size: clamp(1.05rem, 1.8vw, 1.32rem);
  color: rgba(255,255,255,0.86);
  max-width: 580px;
  margin-bottom: 18px;
  font-weight: 400;
}
.hero .tagline {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.6px;
  color: var(--amber-bright);
  margin-bottom: 38px;
  text-transform: uppercase;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 44px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 16px;
  padding: 16px 30px;
  border-radius: 999px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, color .22s ease, border-color .22s ease;
  text-decoration: none;
}
.btn-primary {
  background: var(--amber);
  color: var(--navy-900);
  box-shadow: 0 10px 28px rgba(245,166,35,.38);
}
.btn-primary:hover {
  background: var(--amber-bright);
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(245,166,35,.5);
}
.btn-secondary {
  background: rgba(255,255,255,0.06);
  color: var(--white);
  border-color: rgba(255,255,255,0.25);
  backdrop-filter: blur(6px);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-3px);
}
.btn .arrow { transition: transform .22s ease; }
.btn:hover .arrow { transform: translateX(4px); }

.hero-stats {
  display: flex;
  gap: 38px;
  flex-wrap: wrap;
}
.hero-stat .num {
  font-family: var(--font-mono);
  font-size: 2rem;
  font-weight: 800;
  color: var(--amber-bright);
  line-height: 1;
}
.hero-stat .lbl {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  margin-top: 6px;
  letter-spacing: 0.3px;
}

/* Hero visual card (mock report) */
.hero-visual {
  position: relative;
}
.mock-card {
  background: rgba(255,255,255,0.97);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  transform: perspective(1200px) rotateY(-6deg) rotateX(2deg);
  transition: transform .5s ease;
}
.mock-card:hover { transform: perspective(1200px) rotateY(-2deg) rotateX(0deg); }
.mock-card-head {
  background: var(--navy-800);
  color: #fff;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
}
.mock-dots { display: flex; gap: 7px; }
.mock-dots span { width: 11px; height: 11px; border-radius: 50%; }
.mock-dots .r { background: #ff5f57; }
.mock-dots .y { background: #febc2e; }
.mock-dots .g { background: #28c840; }
.mock-card-body { padding: 22px 24px; color: var(--slate-500); }
.mock-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 0; border-bottom: 1px dashed var(--slate-200);
}
.mock-row:last-child { border-bottom: none; }
.mock-row .k { font-size: 14px; color: var(--slate-400); font-weight: 600; }
.mock-row .v { font-family: var(--font-mono); font-weight: 800; color: var(--navy-900); font-size: 16px; }
.mock-row .v.amber { color: var(--amber-dark); }
.mock-seq {
  margin-top: 14px;
  display: flex; flex-wrap: wrap; gap: 7px;
}
.mock-seq .chip {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  color: var(--navy-700);
  padding: 5px 11px;
  border-radius: 7px;
}
.mock-seq .chip.tmu { color: var(--amber-dark); background: rgba(245,166,35,0.10); border-color: rgba(245,166,35,0.3); }
.mock-bar-wrap { margin-top: 18px; }
.mock-bar-label { font-size: 11px; color: var(--slate-400); margin-bottom: 6px; font-weight: 600; letter-spacing: .5px; text-transform: uppercase; }
.mock-bar { height: 10px; border-radius: 999px; background: var(--slate-100); overflow: hidden; }
.mock-bar .fill { height: 100%; background: linear-gradient(90deg, var(--amber), var(--amber-bright)); border-radius: 999px; width: 0; transition: width 1.6s cubic-bezier(.2,.8,.2,1); }

/* floating badges around hero card */
.float-badge {
  position: absolute;
  background: var(--white);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy-900);
  display: flex; align-items: center; gap: 10px;
  animation: floaty 5s ease-in-out infinite;
}
.float-badge .ico {
  width: 32px; height: 32px; border-radius: 8px;
  display: grid; place-items: center;
  background: rgba(45,212,191,0.14); color: var(--teal); font-size: 16px;
}
.float-badge.b1 { top: -22px; right: 38px; animation-delay: .4s; }
.float-badge.b2 { bottom: -24px; left: -26px; animation-delay: 1.2s; }
.float-badge.b2 .ico { background: rgba(245,166,35,0.14); color: var(--amber-dark); }
@keyframes floaty {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ============================================================
   SECTION GENERIC
   ============================================================ */
section { position: relative; }
.section-pad { padding: 100px 0; }
.section-pad-lg { padding: 130px 0; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 800; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--amber-dark);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: ""; width: 30px; height: 2px; background: var(--amber); border-radius: 2px;
}
.section-title {
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
  font-weight: 800; color: var(--navy-900);
  letter-spacing: -1px; line-height: 1.15; margin-bottom: 18px;
}
.section-sub {
  font-size: 1.1rem; color: var(--slate-400); max-width: 640px;
}
.center { text-align: center; }
.center .eyebrow::before { display: none; }
.center .eyebrow { justify-content: center; }
.center .section-sub { margin: 0 auto; }

/* ============================================================
   WHAT WE DO
   ============================================================ */
#what { background: var(--slate-50); }
.what-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.feature {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 34px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--slate-100);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.feature:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(245,166,35,0.4);
}
.feature .f-ico {
  width: 56px; height: 56px; border-radius: 14px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-600));
  color: var(--amber-bright); font-size: 24px; margin-bottom: 20px;
  box-shadow: var(--shadow-md);
}
.feature.amber .f-ico { background: linear-gradient(135deg, var(--amber), var(--amber-dark)); color: var(--navy-900); }
.feature.teal .f-ico { background: linear-gradient(135deg, var(--teal), #0d9488); color: #fff; }
.feature h3 { font-size: 1.22rem; color: var(--navy-900); font-weight: 800; margin-bottom: 10px; letter-spacing: -0.3px; }
.feature p { font-size: 15px; color: var(--slate-400); line-height: 1.6; }

.what-note {
  margin-top: 48px;
  background: linear-gradient(120deg, var(--navy-800), var(--navy-600));
  color: #fff;
  border-radius: var(--radius-md);
  padding: 30px 34px;
  display: flex; align-items: center; gap: 22px; flex-wrap: wrap;
  box-shadow: var(--shadow-lg);
}
.what-note .ico {
  flex-shrink: 0;
  width: 52px; height: 52px; border-radius: 12px;
  background: rgba(245,166,35,0.18); color: var(--amber-bright);
  display: grid; place-items: center; font-size: 24px; font-weight: 800;
  font-family: var(--font-mono);
}
.what-note p { font-size: 16px; line-height: 1.6; }
.what-note b { color: var(--amber-bright); }

/* ============================================================
   EXAMPLE OUTPUT
   ============================================================ */
#example { background: var(--white); }
.example-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: center;
}
.report-card {
  background: var(--navy-900);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
}
.report-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--amber), var(--amber-bright), var(--teal));
}
.report-head {
  padding: 20px 26px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; align-items: center;
}
.report-head h4 { color: #fff; font-size: 15px; font-weight: 700; letter-spacing: .3px; }
.report-head .stamp {
  font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  color: var(--amber-bright); border: 1px solid rgba(245,166,35,0.4);
  padding: 4px 10px; border-radius: 999px;
}
.report-body { padding: 26px; }
.report-stat {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.report-stat .k { font-size: 14px; color: rgba(255,255,255,0.6); font-weight: 600; }
.report-stat .v {
  font-family: var(--font-mono); font-weight: 800;
  font-size: 1.65rem; color: var(--amber-bright);
}
.report-stat .v .unit { font-size: 0.7em; color: rgba(255,255,255,0.5); margin-left: 4px; font-weight: 600; }
.report-codes {
  margin-top: 22px;
}
.report-codes .clbl {
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.5); margin-bottom: 12px;
}
.code-list { display: flex; flex-wrap: wrap; gap: 9px; }
.code-chip {
  font-family: var(--font-mono);
  font-size: 13px; font-weight: 700;
  background: rgba(245,166,35,0.12);
  border: 1px solid rgba(245,166,35,0.32);
  color: var(--amber-bright);
  padding: 7px 13px; border-radius: 8px;
}
.code-chip .tmu { color: rgba(255,255,255,0.55); font-size: 11px; margin-left: 6px; }

.example-list h3 { font-size: 1.5rem; color: var(--navy-900); font-weight: 800; margin-bottom: 14px; letter-spacing: -0.4px; }
.example-list p { color: var(--slate-400); margin-bottom: 26px; font-size: 1.05rem; }
.use-cases { list-style: none; }
.use-cases li {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 0; border-bottom: 1px solid var(--slate-100);
  font-size: 16px; color: var(--slate-500); font-weight: 600;
}
.use-cases li:last-child { border-bottom: none; }
.use-cases .tick {
  flex-shrink: 0;
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(45,212,191,0.14); color: var(--teal);
  display: grid; place-items: center; font-size: 15px; font-weight: 900;
}

/* ============================================================
   WHY CHOOSE
   ============================================================ */
#why {
  background:
    radial-gradient(ellipse 70% 50% at 15% 0%, rgba(245,166,35,0.06), transparent 60%),
    var(--slate-50);
}
.why-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--slate-100);
  position: relative;
  overflow: hidden;
  transition: transform .28s ease, box-shadow .28s ease;
}
.why-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.why-card::before {
  content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--amber), var(--amber-bright));
  transform: scaleX(0); transform-origin: left; transition: transform .35s ease;
}
.why-card:hover::before { transform: scaleX(1); }
.why-card .w-num {
  font-family: var(--font-mono); font-size: 13px; font-weight: 800;
  color: var(--amber-dark); letter-spacing: 1px; margin-bottom: 12px;
}
.why-card h3 { font-size: 1.18rem; color: var(--navy-900); font-weight: 800; margin-bottom: 9px; }
.why-card p { font-size: 14.5px; color: var(--slate-400); line-height: 1.6; }

/* ============================================================
   ABOUT
   ============================================================ */
#about { background: var(--white); position: relative; }
.about-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 54px;
  align-items: flex-start;
}
.about-portrait {
  position: sticky;
  top: 100px;
}
.about-portrait .frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  background: linear-gradient(160deg, var(--navy-800), var(--navy-600));
  position: relative;
}
.about-portrait .frame::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10,22,40,0.55) 100%);
}
.about-portrait .frame img {
  width: 100%; height: 480px; object-fit: cover;
  display: block;
  filter: saturate(0.95) contrast(1.04);
}
.about-portrait .nameplate {
  position: absolute; left: 18px; bottom: 18px; z-index: 2;
  color: #fff;
}
.about-portrait .nameplate b { font-size: 1.35rem; font-weight: 800; display: block; line-height: 1.1; }
.about-portrait .nameplate small { font-size: 13px; color: var(--amber-bright); font-weight: 700; letter-spacing: .3px; }
.about-creden {
  margin-top: 16px;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px;
}
.creden-pill {
  background: var(--slate-50);
  border: 1px solid var(--slate-100);
  border-radius: 10px;
  padding: 12px 14px;
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 700; color: var(--navy-800);
}
.creden-pill .ico {
  flex-shrink: 0;
  width: 30px; height: 30px; border-radius: 8px;
  background: rgba(245,166,35,0.14); color: var(--amber-dark);
  display: grid; place-items: center; font-size: 15px;
}

.about-copy h3 {
  font-size: 1.18rem; font-weight: 800; color: var(--navy-900);
  margin-bottom: 10px; letter-spacing: -0.3px;
  display: flex; align-items: center; gap: 10px;
}
.about-copy h3 .h-ico {
  width: 34px; height: 34px; border-radius: 9px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-600));
  color: var(--amber-bright); display: grid; place-items: center; font-size: 16px;
}
.about-copy p {
  color: var(--slate-500); font-size: 1.05rem; line-height: 1.75;
  margin-bottom: 22px;
}
.about-copy p b { color: var(--navy-900); font-weight: 700; }
.about-copy p .hl { color: var(--amber-dark); font-weight: 700; }
.about-copy .lead-p { font-size: 1.15rem; color: var(--navy-800); font-weight: 500; }
.about-divider {
  height: 1px; background: linear-gradient(90deg, var(--slate-200), transparent);
  margin: 26px 0;
}

/* credibility strip */
.cred-strip {
  margin-top: 30px;
  display: flex; flex-wrap: wrap; gap: 14px;
}
.cred-badge {
  display: inline-flex; align-items: center; gap: 12px;
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  color: #fff;
  padding: 16px 22px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255,255,255,0.06);
  flex: 1 1 200px;
}
.cred-badge .cb-ico {
  flex-shrink: 0;
  width: 42px; height: 42px; border-radius: 11px;
  background: linear-gradient(135deg, var(--amber), var(--amber-dark));
  color: var(--navy-900);
  display: grid; place-items: center; font-size: 20px; font-weight: 900;
  font-family: var(--font-mono);
}
.cred-badge .cb-k { font-size: 14px; font-weight: 800; line-height: 1.2; }
.cred-badge .cb-v { font-size: 11px; color: rgba(255,255,255,0.62); margin-top: 3px; letter-spacing: .3px; }

@media (max-width: 980px) {
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-portrait { position: static; }
  .about-portrait .frame img { height: 360px; }
}

/* ============================================================
   LAUNCH (CTA band)
   ============================================================ */
#launch {
  position: relative;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(245,166,35,0.20), transparent 60%),
    linear-gradient(135deg, var(--navy-900), var(--navy-700));
  color: #fff;
  text-align: center;
  overflow: hidden;
}
#launch::before {
  content: ""; position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?auto=format&fit=crop&w=1920&q=80');
  background-size: cover; background-position: center; opacity: 0.08;
}
#launch .container { position: relative; z-index: 2; }
#launch .eyebrow { color: var(--amber-bright); justify-content: center; }
#launch .eyebrow::before { display: none; }
#launch h2 {
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; color: #fff;
  letter-spacing: -1px; margin-bottom: 18px;
}
#launch p { font-size: 1.18rem; color: rgba(255,255,255,0.82); max-width: 600px; margin: 0 auto 38px; }
.launch-actions { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }
.coming-note {
  margin-top: 26px; font-size: 13px; color: rgba(255,255,255,0.55);
  display: inline-flex; align-items: center; gap: 8px;
}

/* ============================================================
   CONTACT
   ============================================================ */
#contact { background: var(--white); }
.contact-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: stretch;
}
.contact-info {
  background: linear-gradient(160deg, var(--navy-900), var(--navy-700));
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  color: #fff;
  box-shadow: var(--shadow-xl);
}
.contact-info h3 { font-size: 1.6rem; font-weight: 800; margin-bottom: 8px; }
.contact-info .role { color: var(--amber-bright); font-weight: 700; margin-bottom: 26px; }
.contact-item { display: flex; align-items: center; gap: 16px; padding: 18px 0; border-top: 1px solid rgba(255,255,255,0.08); }
.contact-item .ci-ico {
  width: 46px; height: 46px; border-radius: 12px; flex-shrink: 0;
  background: rgba(245,166,35,0.16); color: var(--amber-bright);
  display: grid; place-items: center; font-size: 20px;
}
.contact-item .ci-k { font-size: 12px; color: rgba(255,255,255,0.5); letter-spacing: 1px; text-transform: uppercase; font-weight: 700; }
.contact-item .ci-v { font-size: 17px; font-weight: 600; color: #fff; }
.contact-item a.ci-v:hover { color: var(--amber-bright); }

.contact-form {
  background: var(--slate-50);
  border-radius: var(--radius-lg);
  padding: 36px 34px;
  border: 1px solid var(--slate-100);
}
.contact-form h3 { font-size: 1.4rem; color: var(--navy-900); font-weight: 800; margin-bottom: 6px; }
.contact-form p.sub { color: var(--slate-400); margin-bottom: 24px; font-size: 15px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 13px; font-weight: 700; color: var(--navy-800); margin-bottom: 7px; }
.field input, .field textarea {
  width: 100%; padding: 13px 16px; border-radius: 10px;
  border: 1.5px solid var(--slate-200); background: #fff;
  font-family: inherit; font-size: 15px; color: var(--navy-900);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(245,166,35,0.15);
}
.field textarea { resize: vertical; min-height: 120px; }
.contact-form .btn-primary { width: 100%; justify-content: center; margin-top: 6px; }
.form-note { font-size: 12px; color: var(--slate-400); margin-top: 12px; text-align: center; }
.form-success {
  display: none;
  background: rgba(45,212,191,0.12); border: 1px solid rgba(45,212,191,0.4);
  color: #0d9488; padding: 14px 16px; border-radius: 10px; font-weight: 600; font-size: 14px; margin-bottom: 18px;
}
.form-success.show { display: block; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--navy-900);
  color: rgba(255,255,255,0.6);
  padding: 50px 0 28px;
}
.footer-top {
  display: flex; justify-content: space-between; align-items: flex-start; gap: 30px; flex-wrap: wrap;
  padding-bottom: 30px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand { max-width: 360px; }
.footer-brand .brand { margin-bottom: 14px; }
.footer-brand p { font-size: 14px; line-height: 1.6; }
.footer-links { display: flex; gap: 60px; flex-wrap: wrap; }
.footer-col h5 { color: #fff; font-size: 13px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 14px; }
.footer-col a { display: block; font-size: 14px; padding: 5px 0; color: rgba(255,255,255,0.6); transition: color .2s ease; }
.footer-col a:hover { color: var(--amber-bright); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  padding-top: 22px; font-size: 13px;
}
.footer-bottom .dom { color: var(--amber-bright); font-weight: 600; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.8,.2,1); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { margin-top: 20px; max-width: 460px; }
  .what-grid, .why-grid { grid-template-columns: repeat(2, 1fr); }
  .example-grid, .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute; top: 64px; right: 18px;
    background: var(--navy-900); border-radius: 14px; padding: 22px 26px; gap: 18px;
    box-shadow: var(--shadow-xl); align-items: flex-start; min-width: 200px;
  }
  .what-grid, .why-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; }
  .section-pad, .section-pad-lg { padding: 70px 0; }
  .what-note { flex-direction: column; text-align: left; }
  .float-badge { display: none; }
}

/* ============================================================
   PRINT
   ============================================================ */
@media print {
  .navbar, .hero-cta .btn-secondary, #launch::before, .float-badge, .nav-toggle, .form-success { display: none !important; }
  body { color: #000; font-size: 12px; }
  .hero { min-height: auto; background: #fff !important; color: #000; }
  .hero h1, .hero .lead, .hero .tagline, .hero-badge { color: #000; }
  .hero h1 .accent { color: var(--amber-dark); }
  .hero-stats .num { color: #000; }
  .hero::before, .hero::after { display: none; }
  .mock-card { box-shadow: none; transform: none; border: 1px solid #ccc; }
  .what-note, .contact-info, .report-card, #launch { background: #fff !important; color: #000 !important; border: 1px solid #ddd; }
  .what-note p, .contact-info .ci-v, .report-stat .v, #launch h2 { color: #000 !important; }
  .section-pad, .section-pad-lg { padding: 28px 0; }
  .feature, .why-card { box-shadow: none; border: 1px solid #ddd; }
  .btn-primary { background: var(--amber-dark) !important; color: #000 !important; box-shadow: none; }
}
