:root {
  --bg: #0a0a0b;
  --bg-elev: #121215;
  --bg-deep: #050506;
  --line: #1f1f23;
  --line-strong: #2a2a30;
  --text: #f1ede4;
  --text-dim: #8b867c;
  --text-faint: #4a4842;
  --amber: #ff9d2f;
  --amber-deep: #d97706;
  --amber-glow: rgba(255, 157, 47, 0.15);
  --signal: #7dd3fc;
  --alert: #ef4444;
  --grid: rgba(255, 255, 255, 0.025);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 300;
  line-height: 1.55;
  overflow-x: hidden;
  background-image:
    linear-gradient(var(--grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid) 1px, transparent 1px);
  background-size: 64px 64px;
}

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

/* ============ STATUS BAR ============ */
.status-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--bg-deep);
  border-bottom: 1px solid var(--line);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-dim);
  
  transition: transform 0.3s ease-in-out; 
}

.status-bar.hidden {
  transform: translateY(-100%); /* This pushes the header exactly 100% of its height UP and off screen */
}
.status-bar .left { display: flex; gap: 28px; align-items: center; }
.status-bar .right { display: flex; gap: 20px; align-items: center; }
.status-dot {
  display: inline-block;
  width: 7px; height: 7px;
  background: #4ade80;
  border-radius: 50%;
  margin-right: 8px;
  box-shadow: 0 0 10px #4ade80;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 10px #4ade80; }
  50% { opacity: 0.55; box-shadow: 0 0 4px #4ade80; }
}
.sys-id { color: var(--amber); }
@media (max-width: 720px) {
  .status-bar { font-size: 10px; padding: 9px 16px; }
  .status-bar .left { gap: 14px; }
  .status-bar .hide-mobile { display: none; }
}

/* ============ HEADER / NAV ============ */
.logo {
  display: inline-block;
  height: 40px; /* Reduced from 90px so the header is allowed to shrink */
  transition: opacity 0.2s;
}
.logo:hover {
  opacity: 0.8;
}
.logo img {
  height: 100%;
  width: auto;
  display: block;
}

/* ============ LAYOUT ============ */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 720px) { .container { padding: 0 20px; } }

section { padding: 120px 0; position: relative; }
@media (max-width: 720px) { section { padding: 80px 0; } }

/* ============ TYPOGRAPHY ============ */
h1, h2, h3, .display {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 0.92;
  text-transform: uppercase;
}
.mono {
  font-family: 'IBM Plex Mono', monospace;
  letter-spacing: 0.04em;
}
.section-tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  color: var(--amber);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}
.section-tag::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--amber);
}

/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  padding-top: 120px; /* Increased from 100px to make room for the bigger logo */
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 900px; height: 900px;
  background: radial-gradient(circle, var(--amber-glow) 0%, transparent 60%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
}

.hero h1 {
  font-size: clamp(64px, 10vw, 144px);
  line-height: 0.88;
  margin: 24px 0 32px;
}
.hero h1 .accent { color: var(--amber); }
.hero h1 .stroke {
  -webkit-text-stroke: 2px var(--text);
  color: transparent;
  font-weight: 600;
}
.hero-sub {
  font-size: 18px;
  color: var(--text-dim);
  max-width: 540px;
  margin-bottom: 40px;
  line-height: 1.6;
}
.hero-sub strong { color: var(--text); font-weight: 400; }

.hero-meta {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.hero-meta div {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-faint);
}
.hero-meta div span {
  display: block;
  color: var(--text);
  font-size: 14px;
  margin-top: 6px;
  font-weight: 500;
}

/* Console panel */
.console {
  background: var(--bg-deep);
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255, 157, 47, 0.06),
    0 30px 80px rgba(0, 0, 0, 0.5);
  position: relative;
}
.console-header {
  background: var(--bg-elev);
  border-bottom: 1px solid var(--line);
  padding: 12px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.console-header .tx-status {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--amber);
}
.tx-pulse {
  width: 8px; height: 8px;
  background: var(--amber);
  border-radius: 50%;
  animation: tx-pulse 1.2s ease-in-out infinite;
}
@keyframes tx-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

.shortcode-display {
  padding: 40px 28px 28px;
  text-align: center;
  border-bottom: 1px solid var(--line);
}
.shortcode-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 14px;
}
.shortcode {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 900;
  font-size: clamp(52px, 7.5vw, 84px);
  color: var(--amber);
  line-height: 1;
  letter-spacing: 0.08em;
  text-shadow: 0 0 40px rgba(255, 157, 47, 0.4);
  white-space: nowrap;
}
.shortcode-note {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  color: var(--text-faint);
  margin-top: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.sms-feed {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 220px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
}
.sms-msg {
  display: flex;
  gap: 12px;
  padding: 10px 12px;
  background: var(--bg-elev);
  border-left: 2px solid var(--amber);
  opacity: 0;
  transform: translateX(-8px);
  animation: msg-in 0.5s forwards;
}
.sms-msg.alt { border-left-color: var(--signal); }
.sms-msg:nth-child(1) { animation-delay: 0.3s; }
.sms-msg:nth-child(2) { animation-delay: 1.5s; }
.sms-msg:nth-child(3) { animation-delay: 2.7s; }
@keyframes msg-in {
  to { opacity: 1; transform: translateX(0); }
}
.sms-time { color: var(--text-faint); flex-shrink: 0; }
.sms-body { color: var(--text); }
.sms-body .tag { color: var(--amber); font-weight: 500; }
.sms-msg.alt .sms-body .tag { color: var(--signal); }

/* ============ BUTTONS / CTAS ============ */
.cta-row { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 8px; margin-bottom: 40px; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn-primary {
  background: var(--amber);
  color: var(--bg);
  border-color: var(--amber);
}
.btn-primary:hover {
  background: transparent;
  color: var(--amber);
  box-shadow: 0 0 30px rgba(255, 157, 47, 0.3);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line-strong);
}
.btn-ghost:hover {
  border-color: var(--amber);
  color: var(--amber);
}
.btn .arrow { transition: transform 0.2s; }
.btn:hover .arrow { transform: translateX(4px); }

/* ============ PROBLEM / WHY SECTION ============ */
.why {
  border-top: 1px solid var(--line);
  background:
    radial-gradient(ellipse at top, var(--bg-elev) 0%, transparent 70%),
    var(--bg);
}
.why-header { max-width: 900px; margin-bottom: 80px; }
.why-header h2 {
  font-size: clamp(40px, 6vw, 76px);
  margin-bottom: 28px;
}
.why-header h2 .accent { color: var(--amber); }
.why-header p {
  font-size: 19px;
  color: var(--text-dim);
  max-width: 720px;
  line-height: 1.6;
}

.problems {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
@media (max-width: 880px) {
  .problems { grid-template-columns: 1fr; }
}
.problem {
  background: var(--bg);
  padding: 40px 32px;
  position: relative;
  transition: background 0.3s;
}
.problem:hover { background: var(--bg-elev); }
.problem-num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: var(--amber);
  letter-spacing: 0.15em;
  margin-bottom: 20px;
}
.problem h3 {
  font-size: 26px;
  margin-bottom: 14px;
  color: var(--text);
}
.problem p {
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.6;
}

/* ============ HOW IT WORKS ============ */
.how { border-top: 1px solid var(--line); }
.how-header { display: flex; justify-content: space-between; align-items: end; margin-bottom: 80px; flex-wrap: wrap; gap: 30px; }
.how-header h2 {
  font-size: clamp(40px, 6vw, 76px);
  max-width: 700px;
}
.how-header h2 .accent { color: var(--amber); }
.how-header .lede {
  color: var(--text-dim);
  max-width: 380px;
  font-size: 15px;
  line-height: 1.6;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
@media (max-width: 1000px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }

.step {
  padding: 32px 24px;
  border: 1px solid var(--line);
  background: var(--bg-elev);
  position: relative;
  transition: border-color 0.3s;
}
.step:hover { border-color: var(--amber); }
.step-num {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 900;
  font-size: 72px;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 18px;
  -webkit-text-stroke: 1px var(--amber);
}
.step h3 {
  font-size: 22px;
  margin-bottom: 12px;
}
.step p {
  color: var(--text-dim);
  font-size: 14px;
  line-height: 1.6;
}

/* ============ USE CASES ============ */
.cases { border-top: 1px solid var(--line); background: var(--bg-deep); }
.cases-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  margin-top: 60px;
  border: 1px solid var(--line);
}
@media (max-width: 760px) { .cases-grid { grid-template-columns: 1fr; } }
.case {
  background: var(--bg);
  padding: 36px 30px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.case-id {
  font-family: 'IBM Plex Mono', monospace;
  color: var(--amber);
  font-size: 11px;
  letter-spacing: 0.15em;
  padding-top: 6px;
  flex-shrink: 0;
}
.case-body h3 {
  font-size: 22px;
  margin-bottom: 10px;
}
.case-body p {
  color: var(--text-dim);
  font-size: 14.5px;
  line-height: 1.6;
}

/* ============ AUDIENCE ============ */
.audience { border-top: 1px solid var(--line); }
.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 900px) { .audience-grid { grid-template-columns: 1fr; gap: 50px; } }
.audience h2 {
  font-size: clamp(40px, 6vw, 72px);
  margin-bottom: 28px;
  line-height: 0.95;
}
.audience h2 .accent { color: var(--amber); }
.audience > .container > div > p {
  color: var(--text-dim);
  font-size: 17px;
  line-height: 1.7;
}

.audience-list {
  list-style: none;
  border-top: 1px solid var(--line);
}
.audience-list li {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 20px;
  align-items: baseline;
  transition: padding-left 0.3s, color 0.3s;
  cursor: default;
}
.audience-list li:hover { padding-left: 12px; }
.audience-list li:hover .audience-name { color: var(--amber); }
.audience-tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: var(--text-faint);
  letter-spacing: 0.12em;
  width: 50px;
  flex-shrink: 0;
}
.audience-name {
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: 26px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  transition: color 0.3s;
}
.audience-desc {
  color: var(--text-dim);
  font-size: 14px;
  margin-left: auto;
  text-align: right;
  max-width: 280px;
}
@media (max-width: 600px) {
  .audience-desc { display: none; }
}

/* ============ FOUNDER ============ */
.founder {
  border-top: 1px solid var(--line);
  background:
    linear-gradient(180deg, transparent, var(--bg-elev) 50%, transparent);
}
.founder-wrap {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.founder-mark {
  width: 70px;
  height: 70px;
  margin: 0 auto 36px;
  border: 1.5px solid var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  transform: rotate(45deg);
}
.founder-mark svg {
  transform: rotate(-45deg);
}
.founder blockquote {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 600;
  font-size: clamp(28px, 4.5vw, 50px);
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 40px;
  letter-spacing: -0.005em;
}
.founder blockquote .accent { color: var(--amber); }
.founder-cite {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-dim);
}
.founder-cite .name { color: var(--text); }

/* ============ CTA / CONTACT ============ */
.contact {
  border-top: 1px solid var(--line);
  background: var(--bg-deep);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } }
.contact h2 {
  font-size: clamp(44px, 7vw, 96px);
  line-height: 0.92;
  margin-bottom: 28px;
}
.contact h2 .accent { color: var(--amber); }
.contact p.lede {
  color: var(--text-dim);
  font-size: 17px;
  line-height: 1.6;
  max-width: 540px;
  margin-bottom: 32px;
}

.contact-card {
  background: var(--bg);
  border: 1px solid var(--line-strong);
  padding: 36px 32px;
}
.contact-card-header {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: var(--amber);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.contact-row {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
}
.contact-row:last-child { border-bottom: 0; }
.contact-row .label { color: var(--text-faint); text-transform: uppercase; letter-spacing: 0.12em; font-size: 11px; }
.contact-row .val { color: var(--text); }
.contact-row .val a { color: var(--amber); text-decoration: none; }
.contact-row .val a:hover { text-decoration: underline; }

/* ============ FOOTER ============ */
footer {
  padding: 36px 0 40px;
  border-top: 1px solid var(--line);
  background: var(--bg-deep);
}
footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  flex-wrap: wrap;
  gap: 16px;
}
footer .legal { color: var(--text-dim); }
footer .mark { color: var(--amber); }

/* Added for the Policy/Terms Links */
.footer-links {
  margin-top: 10px;
}
.footer-links a {
  color: var(--text-dim);
  text-decoration: underline;
  margin-right: 18px;
  transition: color 0.2s ease;
  font-size: 11px;
}
.footer-links a:hover {
  color: var(--amber);
}

/* ============ DECORATIVE ============ */
.corner-mark {
  position: absolute;
  width: 14px; height: 14px;
  border: 1px solid var(--amber);
  pointer-events: none;
}
.corner-mark.tl { top: -1px; left: -1px; border-right: 0; border-bottom: 0; }
.corner-mark.tr { top: -1px; right: -1px; border-left: 0; border-bottom: 0; }
.corner-mark.bl { bottom: -1px; left: -1px; border-right: 0; border-top: 0; }
.corner-mark.br { bottom: -1px; right: -1px; border-left: 0; border-top: 0; }

/* ============ FORMS (REGISTRATION) ============ */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 650px) {
  .form-grid { grid-template-columns: 1fr; }
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group.full-width {
  grid-column: 1 / -1;
}
.form-group label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.form-group input {
  background: var(--bg-deep);
  border: 1px solid var(--line-strong);
  color: var(--text);
  padding: 14px 16px;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 15px;
  border-radius: 3px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus {
  outline: none;
  border-color: var(--amber);
  box-shadow: 0 0 12px rgba(255, 157, 47, 0.15);
}
.form-group input::placeholder {
  color: var(--text-faint);
}