:root {
  --color-bg: #101010;
  --color-bg-2: #161616;
  --color-panel: #1d1d1b;
  --color-panel-soft: #24231f;
  --color-line: rgba(255, 255, 255, 0.12);
  --color-line-strong: rgba(255, 106, 0, 0.42);
  --color-text: #f7f4ef;
  --color-muted: #bdb7ad;
  --color-subtle: #827b72;
  --color-orange: #ff6a00;
  --color-orange-2: #ff8a2b;
  --color-success: #57c785;
  --color-warning: #d6a553;
  --color-data: #8aa0a8;
  --shadow-glow: 0 0 34px rgba(255, 106, 0, 0.18);
  --shadow-panel: 0 20px 60px rgba(0, 0, 0, 0.36);
  --radius: 8px;
  --radius-sm: 6px;
  --max: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-display: Montserrat, Poppins, Inter, "Segoe UI", sans-serif;
  --font-body: Inter, Montserrat, "Segoe UI", sans-serif;
  
  /* User provided variables */
  --orange: #ff6a00;
  --orange-dark: #9b3f00;
  --black: #050505;
  --white: #f7f4ef;
  --muted-light: rgba(255, 255, 255, 0.72);
  --line-light: rgba(255, 106, 0, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 16% 12%, rgba(255, 106, 0, 0.18), transparent 30rem),
    radial-gradient(circle at 88% 4%, rgba(138, 160, 168, 0.1), transparent 24rem),
    linear-gradient(135deg, #101010 0%, #151512 52%, #0e0e0d 100%);
  color: var(--color-text);
  font-family: var(--font-body);
  line-height: 1.6;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background: none;
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 106, 0, 0.05), transparent 18%, transparent 82%, rgba(255, 106, 0, 0.04)),
    repeating-linear-gradient(90deg, transparent 0, transparent 96px, rgba(255, 255, 255, 0.025) 97px, transparent 98px);
  opacity: 0.48;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-shell {
  overflow: hidden;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 100px;
  display: grid;
  grid-template-columns: 280px 1fr 280px;
  align-items: center;
  padding: 0 clamp(20px, 4vw, 72px);
  background: rgba(0, 0, 0, 0.94);
  border-bottom: 1px solid rgba(255, 106, 0, 0.22);
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: fit-content;
  padding: 12px 18px;
  border-radius: 12px;
  background: rgba(255, 106, 0, 0.045);
  border: 1px solid rgba(255, 106, 0, 0.18);
  box-shadow: 0 0 32px rgba(255, 106, 0, 0.08);
  text-decoration: none;
}

.brand img {
  display: block;
  width: 180px;
  height: auto;
  max-height: 68px;
  object-fit: contain;
}

.nav-links,
.nav-actions {
  display: flex;
  align-items: center;
}

.nav-links {
  justify-content: center;
  gap: 38px;
}

.nav-actions {
  justify-content: flex-end;
  gap: 18px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.01em;
  transition: color 180ms ease, transform 180ms ease;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: #fff;
  transform: translateY(-1px);
}

.nav-login {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  font-size: 15px;
  font-weight: 800;
  transition: color 180ms ease;
}

.nav-login:hover {
  color: #fff;
}

.btn-small.btn-primary {
  height: 52px;
  min-width: 150px;
  padding: 0 26px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 900;
  background: #ff6a00;
  color: #080808;
  box-shadow: 0 0 28px rgba(255, 106, 0, 0.32);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.btn-small.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(255, 106, 0, 0.46);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-sm);
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--color-text);
  transition: transform 220ms var(--ease), opacity 220ms var(--ease);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: transform 240ms var(--ease), border-color 240ms var(--ease), background 240ms var(--ease), color 240ms var(--ease), box-shadow 240ms var(--ease);
  position: relative;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn:active {
  transform: translateY(-1px) scale(0.98);
}

.btn-primary,
.btn--primary {
  background: var(--color-orange);
  color: #150f0a;
  box-shadow: 0 14px 32px rgba(255, 106, 0, 0.22);
}

.btn-primary:hover,
.btn--primary:hover {
  background: var(--color-orange-2);
  box-shadow: 0 18px 48px rgba(255, 106, 0, 0.32);
}

.btn-secondary,
.btn--secondary {
  border-color: rgba(255, 106, 0, 0.52);
  background: rgba(255, 106, 0, 0.08);
  color: var(--color-text);
}

.btn-secondary:hover,
.btn--secondary:hover {
  border-color: var(--color-orange);
  background: rgba(255, 106, 0, 0.12);
  box-shadow: var(--shadow-glow);
}

.btn-ghost {
  border-color: var(--color-line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--color-text);
}

.btn-small {
  min-height: 40px;
  padding: 0 16px;
  font-size: 0.78rem;
}

.section {
  padding: clamp(64px, 10vw, 118px) clamp(20px, 4vw, 54px);
}

.section-tight {
  padding-top: clamp(42px, 7vw, 78px);
  padding-bottom: clamp(42px, 7vw, 78px);
}

.container {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--color-orange-2);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-kicker::before {
  width: 38px;
  height: 1px;
  content: "";
  background: var(--color-orange);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: var(--font-display);
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  max-width: 980px;
  font-size: clamp(2.8rem, 8vw, 6.8rem);
  font-weight: 900;
}

h2 {
  max-width: 780px;
  font-size: clamp(2rem, 5vw, 4.25rem);
  font-weight: 900;
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
}

p {
  margin: 0;
  color: var(--color-muted);
}

.lead {
  max-width: 720px;
  color: #ded9d1;
  font-size: clamp(1.02rem, 2vw, 1.24rem);
}

.muted {
  color: var(--color-muted);
}

.hero {
  position: relative;
  min-height: calc(100vh - 100px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0;
  padding: 64px 60px 48px 100px;
  overflow: hidden;
  background:
    radial-gradient(circle at 74% 46%, rgba(255, 106, 0, 0.08), transparent 34%),
    linear-gradient(90deg, #050505 0%, #070604 46%, #030303 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 96px 96px;
  opacity: 0.5;
  pointer-events: none;
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 3;
  max-width: 610px;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 26px;
  color: #ff6a00;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero__eyebrow span {
  width: 42px;
  height: 2px;
  background: #ff6a00;
}

.hero h1 {
  margin: 0;
  color: #f7f4ef;
  font-size: clamp(58px, 5.4vw, 92px);
  line-height: 0.94;
  letter-spacing: -0.065em;
  font-weight: 950;
}

.hero h1 strong {
  color: #ff6a00;
  font-style: normal;
}

.hero p {
  max-width: 580px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 600;
}

.hero__actions {
  display: flex;
  gap: 18px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  height: 54px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background: #ff6a00;
  color: #080808;
  box-shadow: 0 0 32px rgba(255, 106, 0, 0.28);
}

.btn--secondary {
  color: #fff;
  border: 1px solid rgba(255, 106, 0, 0.55);
  background: rgba(255, 106, 0, 0.035);
}

.hero__benefits {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  margin-top: 24px;
  max-width: none;
}

.hero__benefits div {
  height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  border: 1px solid rgba(255, 106, 0, 0.32);
  border-radius: 8px;
  background: rgba(255, 106, 0, 0.025);
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 700;
}

.hero__visual {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 620px;
  overflow: visible;
  pointer-events: none;
}

.hero__visual img {
  display: block;
  width: min(100%, 860px);
  max-width: 860px;
  height: auto;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 0 34px rgba(255, 106, 0, 0.14));
  transform: translateX(-40px) translateY(10px);
}

.hero__visual::before,
.hero__visual::after {
  content: none !important;
  display: none !important;
}

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr;
    padding: clamp(48px, 8vw, 72px) clamp(20px, 4vw, 48px) 60px;
    gap: 32px;
  }

  .hero__benefits {
    flex-wrap: wrap;
  }

  .hero__visual {
    min-height: auto;
    justify-content: center;
    margin-top: 0;
  }

  .hero__visual img {
    transform: none;
    max-width: min(100%, 560px);
  }
}

.platform-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 106, 0, 0.28);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(29, 29, 27, 0.92), rgba(11, 11, 10, 0.95));
  box-shadow: var(--shadow-panel), var(--shadow-glow);
}

.platform-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 18px;
  border-bottom: 1px solid var(--color-line);
}

.platform-top img {
  width: 96px;
}

.status-dot {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-success);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.status-dot::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  content: "";
  background: var(--color-success);
  box-shadow: 0 0 18px rgba(87, 199, 133, 0.7);
}

.platform-body {
  display: grid;
  gap: 18px;
  padding: 20px;
}

.deal-preview {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: start;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--color-line);
}

.deal-preview span,
.eyebrow {
  color: var(--color-orange-2);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.deal-preview h3 {
  margin-top: 6px;
}

.deal-preview p {
  margin-top: 8px;
  font-size: 0.92rem;
}

.score-badge {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(255, 106, 0, 0.42);
  border-radius: var(--radius);
  color: var(--color-orange);
  font-weight: 900;
  background: rgba(255, 106, 0, 0.08);
}

.mini-metrics,
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.metric {
  padding: 16px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.metric strong {
  display: block;
  color: var(--color-text);
  font-size: clamp(1.35rem, 2.3vw, 2.2rem);
  line-height: 1;
}

.metric span {
  display: block;
  margin-top: 7px;
  color: var(--color-muted);
  font-size: 0.78rem;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.44fr);
  gap: 34px;
  align-items: end;
  margin-bottom: 34px;
}

.step-grid,
.benefit-grid,
.difference-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.step-card,
.benefit-card,
.difference-card,
.faq-item,
.form-panel,
.auth-panel,
.timeline-card {
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
  transition: border-color 300ms var(--ease), background 300ms var(--ease), box-shadow 300ms var(--ease);
}

.step-card:hover,
.benefit-card:hover,
.difference-card:hover {
  border-color: rgba(255, 106, 0, 0.34);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 8px 24px rgba(255, 106, 0, 0.08);
}

.step-card,
.benefit-card,
.difference-card,
.timeline-card {
  padding: 24px;
}

.step-index {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 30px;
  border: 1px solid rgba(255, 106, 0, 0.48);
  border-radius: var(--radius-sm);
  color: var(--color-orange);
  font-weight: 900;
  background: rgba(255, 106, 0, 0.07);
}

.step-card p,
.benefit-card p,
.difference-card p {
  margin-top: 12px;
}

.opportunity-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.opportunity-card {
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  transition: transform 300ms var(--ease), border-color 300ms var(--ease), box-shadow 300ms var(--ease), background 300ms var(--ease);
}

.opportunity-card:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(255, 106, 0, 0.62);
  box-shadow: 0 24px 48px rgba(255, 106, 0, 0.18), var(--shadow-glow);
  background: rgba(255, 255, 255, 0.06);
}

.opportunity-art {
  position: relative;
  min-height: 164px;
  overflow: hidden;
  background:
    radial-gradient(circle at 22% 28%, rgba(255, 106, 0, 0.46), transparent 22%),
    linear-gradient(135deg, rgba(255, 106, 0, 0.2), rgba(138, 160, 168, 0.12)),
    #151514;
}

.opportunity-art::before,
.opportunity-art::after {
  position: absolute;
  content: "";
}

.opportunity-art::before {
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 26px 26px;
}

.opportunity-art::after {
  right: -26px;
  bottom: -22px;
  width: 130px;
  height: 130px;
  border: 1px solid rgba(255, 106, 0, 0.44);
  transform: rotate(28deg);
}

.art-health {
  background:
    radial-gradient(circle at 20% 30%, rgba(87, 199, 133, 0.34), transparent 26%),
    linear-gradient(135deg, rgba(87, 199, 133, 0.18), rgba(255, 106, 0, 0.1)),
    #151514;
}

.art-agro {
  background:
    radial-gradient(circle at 30% 24%, rgba(214, 165, 83, 0.38), transparent 24%),
    linear-gradient(135deg, rgba(214, 165, 83, 0.18), rgba(87, 199, 133, 0.1)),
    #151514;
}

.art-energy {
  background:
    radial-gradient(circle at 30% 30%, rgba(138, 160, 168, 0.34), transparent 25%),
    linear-gradient(135deg, rgba(138, 160, 168, 0.18), rgba(255, 106, 0, 0.11)),
    #151514;
}

.opportunity-logo {
  position: absolute;
  left: 18px;
  bottom: -26px;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  color: var(--color-text);
  font-weight: 900;
  background: #111;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.36);
}

.card-body {
  display: grid;
  gap: 18px;
  padding: 42px 20px 20px;
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(255, 106, 0, 0.34);
  border-radius: 999px;
  color: var(--color-orange-2);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: rgba(255, 106, 0, 0.07);
}

.tag-muted {
  border-color: var(--color-line);
  color: var(--color-muted);
  background: rgba(255, 255, 255, 0.035);
}

.card-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--color-line);
}

.card-stats span {
  display: block;
  color: var(--color-subtle);
  font-size: 0.74rem;
}

.card-stats strong {
  display: block;
  color: var(--color-text);
  line-height: 1.1;
}

.progress {
  overflow: hidden;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

.progress span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--color-orange), var(--color-orange-2));
  transition: width 1000ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 0 12px rgba(255, 106, 0, 0.34);
}

.progress-row {
  display: grid;
  gap: 8px;
}

.progress-labels {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: var(--color-muted);
  font-size: 0.8rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.path-panel {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 106, 0, 0.045));
}

.list-check {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.list-check li {
  position: relative;
  padding-left: 24px;
  color: #ddd6ce;
}

.list-check li::before {
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  content: "";
  background: var(--color-orange);
  box-shadow: 0 0 16px rgba(255, 106, 0, 0.55);
}

.cta-band {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
  background:
    radial-gradient(circle at 75% 50%, rgba(255, 106, 0, 0.22), transparent 26rem),
    linear-gradient(90deg, rgba(255, 106, 0, 0.1), rgba(255, 255, 255, 0.025));
}

.cta-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
}

.page-hero {
  padding: clamp(58px, 9vw, 118px) clamp(20px, 4vw, 54px) clamp(42px, 7vw, 78px);
  border-bottom: 1px solid var(--color-line);
}

.page-hero .container {
  display: grid;
  gap: 24px;
}

.page-hero h1 {
  font-size: clamp(2.4rem, 6vw, 5.5rem);
}

.toolbar {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) repeat(3, minmax(150px, 0.38fr));
  gap: 12px;
  margin-bottom: 26px;
  padding: 14px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}

.field,
.select-field,
.textarea-field {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-sm);
  padding: 0 14px;
  outline: none;
  background: rgba(0, 0, 0, 0.2);
  color: var(--color-text);
  transition: border-color 240ms var(--ease), box-shadow 240ms var(--ease), background 240ms var(--ease);
}

.textarea-field {
  min-height: 118px;
  padding: 14px;
  resize: vertical;
}

.field:focus,
.select-field:focus,
.textarea-field:focus {
  border-color: rgba(255, 106, 0, 0.88);
  box-shadow: 0 0 0 4px rgba(255, 106, 0, 0.15), inset 0 0 0 1px rgba(255, 106, 0, 0.22);
  background: rgba(0, 0, 0, 0.3);
}

.select-field option {
  color: #111;
}

.deal-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.38fr);
  gap: 22px;
  align-items: stretch;
}

.deal-cover {
  overflow: hidden;
  min-height: 360px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 20% 28%, rgba(255, 106, 0, 0.34), transparent 22%),
    linear-gradient(135deg, rgba(255, 106, 0, 0.13), rgba(138, 160, 168, 0.09)),
    #141414;
}

.deal-cover-content {
  display: grid;
  align-content: end;
  min-height: inherit;
  padding: clamp(24px, 5vw, 54px);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 42px 42px;
}

.deal-aside {
  display: grid;
  gap: 18px;
  align-content: start;
  padding: 22px;
  border: 1px solid rgba(255, 106, 0, 0.32);
  border-radius: var(--radius);
  background: rgba(20, 20, 19, 0.9);
  box-shadow: var(--shadow-glow);
}

.data-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.data-box {
  padding: 18px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.data-box span {
  display: block;
  color: var(--color-subtle);
  font-size: 0.76rem;
}

.data-box strong {
  display: block;
  margin-top: 5px;
  color: var(--color-text);
  font-size: 1.04rem;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(280px, 0.32fr);
  gap: 34px;
  align-items: start;
}

.content-stack {
  display: grid;
  gap: 34px;
}

.content-block {
  padding-bottom: 34px;
  border-bottom: 1px solid var(--color-line);
}

.content-block h2 {
  margin-bottom: 14px;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
}

.doc-list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.doc-item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--color-line);
  color: var(--color-text);
}

.doc-item span {
  color: var(--color-muted);
  font-size: 0.88rem;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.requirements {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: start;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-grid .full {
  grid-column: 1 / -1;
}

.form-panel,
.auth-panel {
  padding: clamp(22px, 4vw, 34px);
}

.form-message {
  display: none;
  margin-top: 14px;
  padding: 12px 14px;
  border: 1px solid rgba(87, 199, 133, 0.45);
  border-radius: var(--radius-sm);
  color: #c9f5dc;
  background: rgba(87, 199, 133, 0.1);
}

.form-message.is-visible {
  display: block;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  overflow: hidden;
}

.faq-item button {
  display: flex;
  justify-content: space-between;
  width: 100%;
  border: 0;
  padding: 18px 20px;
  color: var(--color-text);
  text-align: left;
  background: transparent;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 320ms var(--ease);
}

.faq-answer > div {
  overflow: hidden;
  padding: 0 20px;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-answer > div {
  padding-bottom: 18px;
}

.auth-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.58fr);
  gap: 28px;
  align-items: stretch;
  min-height: calc(100vh - 78px);
}

.auth-side {
  display: grid;
  align-content: center;
  gap: 24px;
  padding: clamp(28px, 6vw, 72px);
  background:
    radial-gradient(circle at 16% 22%, rgba(255, 106, 0, 0.26), transparent 22rem),
    rgba(255, 255, 255, 0.025);
}

.auth-box {
  display: grid;
  align-content: center;
  padding: clamp(24px, 5vw, 56px);
}

.auth-panel {
  width: min(100%, 480px);
}

.auth-panel form {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.segmented {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 6px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.2);
}

.segmented button {
  min-height: 40px;
  border: 0;
  border-radius: var(--radius-sm);
  color: var(--color-muted);
  font-weight: 800;
  background: transparent;
}

.segmented button.is-active {
  color: #160f0a;
  background: var(--color-orange);
}

.account-toggle {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
  margin-bottom: 24px;
}

.account-option {
  position: relative;
  z-index: 2;
  border: 0;
  padding: 12px 16px;
  border-radius: 6px;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 700;
  cursor: pointer;
  transition: color 220ms ease, transform 220ms ease;
}

.account-option.active {
  color: #111;
}

.account-option:hover {
  color: #fff;
}

.account-option.active:hover {
  color: #111;
}

.account-toggle::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: calc(50% - 4px);
  height: calc(100% - 8px);
  border-radius: 6px;
  background: #ff6a00;
  box-shadow: 0 0 24px rgba(255, 106, 0, 0.35);
  transition: transform 280ms cubic-bezier(.2,.8,.2,1);
}

.account-toggle.startup-selected::before {
  transform: translateX(100%);
}

.onboarding-copy,
.form-fields,
.journey-cards {
  transition: opacity 220ms ease, transform 220ms ease, filter 220ms ease;
}

.onboarding-copy span {
  display: block;
  margin-bottom: 10px;
  color: var(--color-orange-2);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.onboarding-copy h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 12px;
}

.onboarding-copy p {
  font-size: 0.98rem;
  line-height: 1.5;
}

.is-changing {
  opacity: 0;
  transform: translateY(8px);
  filter: blur(4px);
}

.model-chip {
  margin-top: 14px;
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 106, 0, 0.12);
  border: 1px solid rgba(255, 106, 0, 0.28);
  color: #ff7a1a;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.footer {
  border-top: 1px solid var(--color-line);
  padding: 46px clamp(20px, 4vw, 54px);
  background: rgba(0, 0, 0, 0.22);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.1fr) repeat(3, minmax(140px, 0.45fr));
  gap: 28px;
}

.footer img {
  width: 134px;
  margin-bottom: 16px;
}

.footer h4 {
  margin-bottom: 12px;
  color: var(--color-text);
  font-size: 0.86rem;
  text-transform: uppercase;
}

.footer a {
  display: block;
  margin-top: 8px;
  color: var(--color-muted);
  font-size: 0.9rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid var(--color-line);
  color: var(--color-subtle);
  font-size: 0.82rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 100ms;
}

.delay-2 {
  transition-delay: 200ms;
}

.delay-3 {
  transition-delay: 300ms;
}

@media (max-width: 1100px) {
  .navbar {
    flex-wrap: wrap;
    height: auto;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .nav-links,
  .nav-actions {
    display: none;
  }

  .nav-open .nav-links,
  .nav-open .nav-actions {
    display: flex;
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding-top: 10px;
  }

  .nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .hero-grid,
  .section-heading,
  .split,
  .deal-hero,
  .detail-layout,
  .requirements,
  .auth-layout {
    grid-template-columns: 1fr;
  }

  .toolbar {
    grid-template-columns: 1fr 1fr;
  }

  .timeline,
  .data-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  .brand img {
    width: 136px;
  }

  .hero {
    min-height: auto;
  }

  .mini-metrics,
  .metrics-grid,
  .step-grid,
  .benefit-grid,
  .difference-grid,
  .opportunity-grid,
  .footer-grid,
  .cta-content {
    grid-template-columns: 1fr;
  }

  .toolbar,
  .form-grid,
  .card-stats,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .footer-bottom,
  .cta-content {
    display: grid;
  }

  .hero-actions .btn,
  .cta-content .btn,
  .auth-panel .btn {
    width: 100%;
  }

  .section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .page-hero {
    padding-left: 18px;
    padding-right: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
