/* =============== */
/* Base / Globals  */
/* =============== */

html {
  background: #000;
}

:root {
  --bg: #050505;
  --bg-elev: #0f0f0f;
  --card: #141414;
  --line: #252525;
  --text: #f5f5f5;
  --muted: #9a9a9a;
  --accent: #f5f5f5;
  --accent-soft: #2b2b2b;
}

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

body {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  background: radial-gradient(circle at top, #151515 0%, #050505 55%, #000 100%);
  color: var(--text);
  line-height: 1.5;
}

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

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.wrap {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

/* =============== */
/* Header (shared) */
/* =============== */

header {
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  position: sticky;
  top: 0;
  backdrop-filter: blur(18px);
  background: linear-gradient(
    to bottom,
    rgba(5, 5, 5, 0.92),
    rgba(5, 5, 5, 0.75),
    transparent
  );
  z-index: 10;
}

.top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.brand-mark {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-logo-link {
  display: inline-flex;
  align-items: center;
}

.brand-logo-img {
  height: 45px;
  width: auto;
  display: block;
}

.brand-logo {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  letter-spacing: 0.16em;
  font-size: 11px;
  text-transform: uppercase;
}

.brand-text {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
}

/* small pill-style link (used as "Press kit", "Back", etc.) */
.pill-link,
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: rgba(10, 10, 10, 0.9);
  color: var(--muted);
}

.pill-link span {
  opacity: 0.7;
}

.pill-link:hover,
.back-link:hover {
  border-color: #3a3a3a;
  background: #111;
}

/* =============== */
/* Buttons         */
/* =============== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 20px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 13px;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.12s ease;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
  transform: none;
}

.btn-primary {
  background: var(--accent);
  color: #050505;
  border-color: #444;
  font-weight: 600;
}

.btn-primary:hover {
  background: #e3e3e3;
  border-color: #444;
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
}

.btn-ghost:hover {
  border-color: #3b3b3b;
  background: #101010;
  transform: translateY(-1px);
}

/* =============== */
/* MAIN PAGE (index.html) */
/* =============== */

/* hero layout */
.hero {
  padding: 52px 0 72px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  gap: 32px;
  align-items: center;
}

@media (min-width: 880px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  }
}

.hero-kicker {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  color: var(--muted);
  margin-bottom: 10px;
}

.hero-title {
  font-size: clamp(32px, 6vw, 52px);
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin-bottom: 14px;
}

.hero-title-logo {
  font-size: 0;
}

.hero-logo {
  max-width: clamp(200px, 30vw, 340px);
  width: 100%;
  height: auto;
  display: block;
}

.hero-title span {
  color: var(--accent);
}

.hero-sub {
  font-size: 14px;
  color: var(--muted);
  max-width: 360px;
  margin-bottom: 24px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}

.hero-note {
  font-size: 12px;
  color: var(--muted);
}

/* visual block / mock phone */
.hero-visual {
  position: relative;
  min-height: 260px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: radial-gradient(circle at 0% 0%, #383838 0%, #202020 26%, #050505 85%);
  overflow: hidden;
  padding: 16px;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.9);
}

.floating-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(5, 5, 5, 0.68);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
}

.phone-shell {
  position: absolute;
  inset: 52px 40px 24px 40px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: radial-gradient(circle at 20% 0%, #f5f5f5 0%, #c7c7c7 30%, #1a1a1a 70%);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.phone-overlay {
  position: absolute;
  inset: 1px;
  border-radius: 24px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.4));
  mix-blend-mode: multiply;
}

.phone-content {
  position: relative;
  z-index: 1;
  padding: 18px 16px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.phone-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
}

.phone-headline {
  font-size: 17px;
  font-weight: 600;
}

.phone-metrics {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 11px;
  color: var(--muted);
}

.pill-metric {
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(10, 10, 10, 0.7);
}

/* "How it works" section */
.section {
  padding: 40px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  background: radial-gradient(circle at bottom, #101010 0%, #050505 55%, #000 100%);
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  margin-bottom: 24px;
}

.section-title {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--muted);
}

.section-tagline {
  font-size: 13px;
  color: var(--muted);
  max-width: 260px;
}

.story-grid {
  display: grid;
  gap: 18px;
}

@media (min-width: 860px) {
  .story-grid {
    grid-template-columns: 2fr 1.3fr;
  }
}

.story-card {
  border-radius: 26px;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, #181818, #090909);
  overflow: hidden;
  position: relative;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
}

.story-card.large {
  min-height: 230px;
}

.story-title {
  font-size: 18px;
  margin-bottom: 6px;
}

.story-text {
  font-size: 13px;
  color: var(--muted);
  max-width: 320px;
}

.story-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: var(--muted);
  margin-top: 18px;
}

.story-chip {
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid var(--accent-soft);
  background: #101010;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 10px;
}

.story-chip-button {
  background: #fff;
  color: #050505;
  border-color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  box-shadow:
    0 0 10px rgba(255, 255, 255, 0.3),
    0 0 20px rgba(255, 255, 255, 0.15);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.story-chip-button:hover {
  box-shadow:
    0 0 12px rgba(255, 255, 255, 0.45),
    0 0 26px rgba(255, 255, 255, 0.25);
  transform: translateY(-1px);
}

/* short promise strip */
.strip {
  padding: 26px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  background: #050505;
}

.strip-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--muted);
}

.strip-inner strong {
  color: var(--text);
}

/* main page footer CTA */
.footer-card {
  border-radius: 24px;
  border: 1px solid var(--line);
  background: radial-gradient(circle at top left, #333 0%, #141414 40%, #050505 100%);
  padding: 24px 20px 22px;
  text-align: center;
}

.footer-title {
  font-size: 18px;
  margin-bottom: 6px;
  color: var(--text);
}

.footer-text {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 18px;
}

.footer-meta {
  margin-top: 10px;
  font-size: 11px;
  color: var(--muted);
}

/* =============== */
/* LEARN MORE PAGE */
/* =============== */

.intro {
  padding: 42px 0 10px;
}

.intro-kicker {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  color: var(--muted);
  margin-bottom: 10px;
}

.intro-title {
  font-size: clamp(26px, 4vw, 34px);
  font-weight: 600;
  margin-bottom: 6px;
}

.intro-sub {
  font-size: 14px;
  color: var(--muted);
  max-width: 460px;
}

main.learn-more-main {
  padding: 14px 0 60px;
}

.section-body {
  font-size: 14px;
  color: var(--text);
}

/* Reuse .section, .section-title from above, just tweak spacing */
.learn-more-main .section {
  margin-top: 28px;
  padding: 22px 18px 22px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, #181818, #080808);
}

.learn-more-main .section + .section {
  margin-top: 18px;
}

/* =============== */
/* REQUEST DEMO PAGE */
/* =============== */

main.request-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 0 60px;
}

.form-card {
  width: 100%;
  max-width: 460px;
  margin-inline: auto;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, #181818, #080808);
  padding: 26px 22px 22px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.7);
}

.form-eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--muted);
  margin-bottom: 6px;
}

.form-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 4px;
}

.form-sub {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 18px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.field-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.field {
  flex: 1;
  min-width: 120px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.field.invalid input {
  border-color: #ff6b6b;
}

.input-error {
  font-size: 11px;
  color: #ff6b6b;
  min-height: 13px;
}

label {
  font-size: 12px;
  color: var(--muted);
}

input {
  appearance: none;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--bg-elev);
  color: var(--text);
  padding: 9px 12px;
  font-size: 13px;
  outline: none;
  transition: border-color 0.15s ease, background 0.15s ease;
}

input::placeholder {
  color: #666;
}

input:focus {
  border-color: #3c3c3c;
  background: #111111;
}

.checkbox-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 12px;
  color: var(--muted);
}

.checkbox-field label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--text);
}

.checkbox-field input[type="checkbox"] {
  appearance: auto;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  border-radius: 4px;
  accent-color: var(--accent);
}

.inline-link {
  color: var(--accent);
  text-decoration: underline;
}

.notice {
  margin-top: 12px;
  font-size: 11px;
  color: var(--muted);
  font-style: italic;
}

/* =============== */
/* PRIVACY PAGE    */
/* =============== */

main.privacy-main {
  flex: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 40px 0 60px;
}

.privacy-card {
  max-width: 720px;
  text-align: left;
  gap: 10px;
}

.privacy-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

.privacy-body {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text);
  margin-bottom: 12px;
}

.privacy-body:last-of-type {
  margin-bottom: 0;
}

/* =============== */
/* ERROR PAGE      */
/* =============== */

.error-main .form-card {
  text-align: center;
}

.error-title {
  font-size: 28px;
  font-weight: 700;
  margin: 2px 0 8px;
}

.error-sub {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 18px;
}

.error-actions {
  margin-top: 10px;
  display: flex;
  justify-content: center;
}

.home-logo-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, #181818, #080808);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.55);
  transition: transform 0.12s ease, border-color 0.15s ease, background 0.15s ease;
}

.home-logo-button:hover {
  transform: translateY(-1px);
  border-color: #3b3b3b;
  background: #101010;
}

.home-logo-img {
  width: 42px;
  height: auto;
}

/* =============== */
/* THANK YOU PAGE  */
/* =============== */

main.thank-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 0 60px;
}

.thank-card {
  width: 100%;
  max-width: 560px;
  margin-inline: auto;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: linear-gradient(160deg, #1a1a1a, #080808);
  padding: 34px 28px 26px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.75);
}

.thanks-eyebrow {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.thanks-title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 4px;
}

.thanks-sub {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 18px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 26px;
  color: var(--text);
}

.thank-details {
  display: grid;
  gap: 18px;
  margin-bottom: 24px;
}

@media (min-width: 640px) {
  .thank-details {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.detail {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 8, 8, 0.7);
  padding: 16px;
}

.detail h2 {
  font-size: 14px;
  margin-bottom: 6px;
}

.detail p {
  font-size: 13px;
  color: var(--muted);
}

.thanks-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}

/* =============== */
/* Shared footer   */
/* =============== */

footer {
  padding: 16px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-size: 11px;
  text-align: center;
  background: #050505;
  margin-top: auto;
}
