:root {
  --bg: #f4f2ec;
  --bg-2: #edf1f7;
  --page-bg-1: #fffdf8;
  --page-bg-2: #f4f2ec;
  --page-bg-3: #edf1f7;
  --page-glow-1: rgba(255, 122, 0, 0.12);
  --page-glow-2: rgba(255, 176, 87, 0.14);
  --page-glow-3: rgba(255, 122, 0, 0.08);
  --header-bg: rgba(255, 253, 248, 0.82);
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: #ffffff;
  --surface-soft: rgba(255, 255, 255, 0.92);
  --surface-panel: rgba(255, 255, 255, 0.96);
  --surface-chip: rgba(255, 255, 255, 0.9);
  --surface-deep: #111827;
  --surface-deep-2: #1f2937;
  --text: #121826;
  --muted: #5f6878;
  --line: rgba(15, 23, 42, 0.1);
  --shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
  --accent: #ff7a00;
  --accent-2: #ffb057;
  --accent-soft: rgba(255, 122, 0, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

html[data-theme="dark"] {
  --bg: #0b0f14;
  --bg-2: #101720;
  --page-bg-1: #0b0f14;
  --page-bg-2: #101720;
  --page-bg-3: #0f1620;
  --page-glow-1: rgba(255, 122, 0, 0.14);
  --page-glow-2: rgba(255, 176, 87, 0.08);
  --page-glow-3: rgba(255, 122, 0, 0.06);
  --header-bg: rgba(11, 15, 20, 0.82);
  --surface: rgba(17, 24, 39, 0.76);
  --surface-strong: rgba(17, 24, 39, 0.9);
  --surface-soft: rgba(255, 255, 255, 0.08);
  --surface-panel: rgba(17, 24, 39, 0.84);
  --surface-chip: rgba(255, 255, 255, 0.08);
  --surface-deep: #f8fafc;
  --surface-deep-2: #dbe2ee;
  --text: #f8fafc;
  --muted: #a6b0c2;
  --line: rgba(255, 255, 255, 0.08);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  --accent: #ff7a00;
  --accent-2: #ffb057;
  --accent-soft: rgba(255, 122, 0, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: "Montserrat", sans-serif;
  background:
    radial-gradient(circle at 12% 16%, var(--page-glow-1), transparent 26%),
    radial-gradient(circle at 86% 12%, var(--page-glow-2), transparent 24%),
    radial-gradient(circle at 72% 82%, var(--page-glow-3), transparent 28%),
    linear-gradient(180deg, var(--page-bg-1) 0%, var(--page-bg-2) 42%, var(--page-bg-3) 100%);
  color: var(--text);
  transition: background-color 200ms ease, color 200ms ease;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.06) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.75), transparent 88%);
}

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

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

.container {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: var(--header-bg);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  min-width: 0;
}

.brand-logo {
  width: 148px;
  height: auto;
  object-fit: contain;
  flex: none;
}

html[data-theme="light"] .brand-logo-dark {
  display: none;
}

html[data-theme="dark"] .brand-logo-light {
  display: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-nav {
  display: flex;
  gap: 0.45rem;
  align-items: center;
  flex-wrap: wrap;
}

.site-nav a {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.72rem 1rem;
  border-radius: 999px;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.site-nav a:hover {
  background: rgba(255, 122, 0, 0.1);
  color: var(--text);
  transform: translateY(-1px);
}

.site-nav-cta {
  background: rgba(255, 122, 0, 0.12);
  color: var(--text) !important;
  border: 1px solid rgba(255, 122, 0, 0.14);
}

.site-nav-cta:hover {
  background: rgba(255, 122, 0, 0.18);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.85rem 1.2rem;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
  white-space: nowrap;
}

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

.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface-chip);
  backdrop-filter: blur(10px);
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.theme-toggle:hover {
  transform: translateY(-1px);
}

html[data-theme="dark"] .theme-toggle {
  background: var(--surface-chip);
}

.theme-toggle {
  border: 1px solid rgba(255, 122, 0, 0.18);
}

.theme-toggle .material-symbols-outlined {
  font-family: "Material Symbols Outlined";
  font-size: 1.1rem;
  line-height: 1;
  color: var(--accent);
  user-select: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #1b1308;
  box-shadow: 0 16px 30px rgba(255, 122, 0, 0.25);
}

.btn-primary:hover {
  box-shadow: 0 20px 36px rgba(255, 122, 0, 0.3);
}

.btn-secondary {
  background: var(--surface-panel);
  color: var(--text);
  border-color: rgba(255, 122, 0, 0.14);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

html[data-theme="dark"] .btn-secondary {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.hero {
  padding: clamp(3.5rem, 8vw, 6.5rem) 0 2rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(380px, 1.08fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: var(--surface-chip);
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

html[data-theme="dark"] .eyebrow {
  background: var(--surface-chip);
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 6px var(--accent-soft);
}

.hero h1,
.section h2 {
  margin: 1.2rem 0 1rem;
  font-size: clamp(2.8rem, 5vw, 5.2rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
  max-width: 14ch;
}

.section h2 {
  margin-top: 0;
  font-size: clamp(2rem, 3vw, 3.2rem);
  max-width: 16ch;
}

.hero p,
.section-lede,
.feature-card p,
.step-card p,
.process-card p {
  color: var(--muted);
  line-height: 1.7;
}

.hero p {
  margin: 0;
  max-width: 60ch;
  font-size: 1.05rem;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1.8rem 0 1.3rem;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1.6rem;
}

.hero-tags span {
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 600;
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.05);
}

html[data-theme="dark"] .hero-tags span {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.14);
}

.hero-stats,
.feature-grid,
.steps-grid,
.process-grid {
  display: grid;
  gap: 1rem;
}

.hero-stats {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stat-card,
.feature-card,
.step-card,
.process-card,
.cta-card,
.dashboard-card {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.stat-card {
  border-radius: 20px;
  padding: 1rem;
}

.stat-card strong {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
  color: var(--text);
}

.stat-card span {
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--muted);
}

.hero-visual {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: start;
  min-height: 620px;
  padding: 2.25rem 2.5rem 1.75rem;
  isolation: isolate;
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(2px);
  opacity: 0.95;
  animation: float 8s ease-in-out infinite;
}

.orb-one {
  width: 128px;
  height: 128px;
  background: radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.85), rgba(255, 122, 0, 0.92));
  top: 24px;
  right: 42px;
}

.orb-two {
  width: 180px;
  height: 180px;
  background: radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.82), rgba(255, 176, 87, 0.22));
  bottom: 28px;
  left: 0;
  animation-delay: -2.4s;
}

.dashboard-card {
  position: relative;
  border-radius: var(--radius-xl);
  grid-area: auto;
  width: 100%;
  margin-top: 2rem;
  padding: 1.3rem;
  overflow: hidden;
}

.dashboard-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, var(--surface-soft), transparent 52%),
    radial-gradient(circle at top right, rgba(255, 122, 0, 0.12), transparent 28%);
  pointer-events: none;
}

.dashboard-head,
.signal-row,
.process-card,
.cta-grid {
  position: relative;
  z-index: 1;
}

.dashboard-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.panel-title,
.feature-card h3,
.step-card h3,
.process-card h3 {
  color: var(--text);
}

.panel-title {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.panel-subtitle {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
  margin-top: 0.2rem;
}

.status-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 122, 0, 0.08);
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
}

.status-chip::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #19b26d;
  box-shadow: 0 0 0 5px rgba(25, 178, 109, 0.15);
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.metric {
  border-radius: 22px;
  padding: 1rem;
  min-height: 120px;
}

.metric-dark {
  background: rgba(255, 248, 240, 0.96);
  border: 1px solid rgba(255, 122, 0, 0.1);
}

html[data-theme="dark"] .metric-dark {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.metric-light {
  background: var(--surface-strong);
  border: 1px solid var(--line);
}

.metric strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 0.45rem;
  font-weight: 800;
}

.metric-dark strong,
.metric-dark span {
  color: var(--text);
}

.metric-light strong,
.metric-light span {
  color: var(--text);
}

.metric span {
  opacity: 0.82;
  font-size: 0.92rem;
  line-height: 1.45;
}

.signal-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 0.35rem;
}

.signal-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-radius: 18px;
  padding: 0.95rem 1rem;
  background: var(--surface-strong);
  border: 1px solid var(--line);
}

html[data-theme="dark"] .signal-row {
  background: rgba(255, 255, 255, 0.06);
}

.signal-row strong {
  display: block;
  font-size: 0.96rem;
  margin-bottom: 0.2rem;
}

.signal-row span {
  color: var(--muted);
  font-size: 0.9rem;
}

.signal-track {
  width: 132px;
  height: 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.08);
  overflow: hidden;
  flex: none;
}

.signal-track::before {
  content: "";
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.signal-row:nth-child(1) .signal-track::before {
  width: 82%;
}

.signal-row:nth-child(2) .signal-track::before {
  width: 58%;
}

.signal-row:nth-child(3) .signal-track::before {
  width: 44%;
}


.section {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.8rem;
}

.section-head .eyebrow {
  width: fit-content;
}

.section-lede {
  margin: 0;
  max-width: 68ch;
  font-size: 1.02rem;
}

.feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-card,
.step-card,
.process-card {
  border-radius: var(--radius-lg);
  padding: 1.35rem;
}

.feature-card {
  min-height: 228px;
  position: relative;
  overflow: hidden;
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: auto -12% -12% auto;
  width: 140px;
  height: 140px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 122, 0, 0.16), transparent 68%);
  pointer-events: none;
}

.feature-icon,
.step-number,
.process-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(255, 122, 0, 0.12);
  color: var(--accent);
  font-weight: 800;
}

.feature-card h3,
.step-card h3,
.process-card h3 {
  margin: 1rem 0 0.5rem;
  font-size: 1.22rem;
  line-height: 1.15;
}

.feature-card p,
.step-card p,
.process-card p {
  margin: 0;
}

.feature-card ul,
.step-card ul {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.feature-card li,
.step-card li {
  display: flex;
  gap: 0.65rem;
  color: var(--text);
  font-size: 0.94rem;
  line-height: 1.5;
}

.feature-card li::before,
.step-card li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  margin-top: 0.5rem;
  flex: none;
}

.band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.62));
}

html[data-theme="dark"] .band {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.06));
}

.steps-grid,
.process-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.step-card,
.process-card {
  background: rgba(255, 255, 255, 0.76);
}

html[data-theme="dark"] .step-card,
html[data-theme="dark"] .process-card,
html[data-theme="dark"] .dashboard-card,
html[data-theme="dark"] .cta-card {
  background: var(--surface);
}

.process-card {
  min-height: 210px;
}

.cta-card {
  position: relative;
  border-radius: calc(var(--radius-xl) + 4px);
  padding: clamp(1.6rem, 4vw, 2.3rem);
  overflow: hidden;
}

.cta-card::before {
  content: "";
  position: absolute;
  inset: auto -80px -110px auto;
  width: 320px;
  height: 320px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 122, 0, 0.36), transparent 68%);
  pointer-events: none;
}

.cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto;
  gap: 1.5rem;
  align-items: start;
}

.cta-eyebrow {
  background: rgba(255, 122, 0, 0.08);
  border-color: rgba(255, 122, 0, 0.12);
}

.cta-card .section-lede {
  max-width: 56ch;
}

.contact-form {
  display: grid;
  gap: 1rem;
  min-width: 0;
}

.contact-flow {
  display: grid;
  gap: 1rem;
}

.contact-form,
.contact-success,
.contract-card {
  transition: opacity 360ms ease, transform 360ms ease, max-height 360ms ease, margin 360ms ease;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

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

.contact-form label {
  display: grid;
  gap: 0.45rem;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--surface-strong);
  color: var(--text);
  padding: 0.95rem 1rem;
  font: inherit;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
}

.select-wrap {
  position: relative;
}

.select-trigger {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--surface-strong);
  color: var(--text);
  padding: 0.95rem 1rem;
  font: inherit;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
}

.select-trigger .material-symbols-outlined {
  color: var(--accent);
  font-size: 1.2rem;
  line-height: 1;
  flex: none;
}

.select-wrap.is-open .select-trigger {
  border-color: rgba(255, 122, 0, 0.55);
  box-shadow: 0 0 0 4px rgba(255, 122, 0, 0.12);
}

.select-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 0.45rem);
  z-index: 10;
  display: grid;
  gap: 0.25rem;
  padding: 0.55rem;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--surface-panel);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.18);
  backdrop-filter: blur(18px);
}

.select-option {
  width: 100%;
  padding: 0.8rem 0.9rem;
  border: 0;
  border-radius: 14px;
  background: transparent;
  color: var(--text);
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.select-option:hover,
.select-option:focus-visible {
  outline: none;
  background: rgba(255, 122, 0, 0.12);
}

.select-option.is-selected {
  background: rgba(255, 122, 0, 0.16);
}

html[data-theme="dark"] .select-trigger,
html[data-theme="dark"] .select-menu {
  background: rgba(255, 255, 255, 0.06);
}

html[data-theme="dark"] .select-trigger {
  border-color: rgba(255, 255, 255, 0.08);
}

html[data-theme="dark"] .select-menu {
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.32);
}

html[data-theme="dark"] .select-option:hover,
html[data-theme="dark"] .select-option:focus-visible {
  background: rgba(255, 255, 255, 0.08);
}

html[data-theme="dark"] .select-option.is-selected {
  background: rgba(255, 122, 0, 0.16);
}

.select-menu[hidden] {
  display: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: color-mix(in srgb, var(--muted) 72%, transparent);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(255, 122, 0, 0.45);
  box-shadow: 0 0 0 4px rgba(255, 122, 0, 0.12);
}

html[data-theme="dark"] .contact-form input,
html[data-theme="dark"] .contact-form select,
html[data-theme="dark"] .contact-form textarea {
  background: rgba(255, 255, 255, 0.06);
}

.contact-flow.is-submitted .contact-form {
  opacity: 0;
  transform: translateY(12px) scale(0.98);
  max-height: 0;
  margin: 0;
  overflow: hidden;
  pointer-events: none;
}

.form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.form-status {
  margin: 0;
  min-height: 1.2rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.form-actions .btn {
  min-width: 160px;
}

.contact-success {
  display: grid;
  gap: 0.55rem;
  align-content: center;
  justify-items: start;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(10px);
}

.contact-success .material-symbols-outlined {
  font-size: 2.2rem;
  color: #19b26d;
}

.contact-success strong {
  font-size: 1.5rem;
  color: var(--text);
}

.contact-success p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.contact-flow.is-submitted .contact-success {
  max-height: 220px;
  opacity: 1;
  transform: translateY(0);
  padding: 1rem 0;
}

.contract-card {
  display: grid;
  gap: 0.95rem;
  padding: 1rem 1.1rem;
  border-radius: 22px;
  background: var(--surface-strong);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

html[data-theme="dark"] .contract-card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.08);
}

.contract-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.contract-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.32rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 122, 0, 0.12);
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contract-head strong {
  font-size: 0.98rem;
  color: var(--text);
}

.contract-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.contract-label {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contract-card code {
  display: block;
  padding: 0.9rem;
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.04);
  color: var(--text);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  font-size: 0.82rem;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

html[data-theme="dark"] .contract-card code {
  background: rgba(255, 255, 255, 0.06);
}

.site-footer {
  padding: 1.2rem 0 2rem;
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(var(--rotate, 0deg));
  }

  50% {
    transform: translateY(-10px) rotate(var(--rotate, 0deg));
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .feature-grid,
  .steps-grid,
  .process-grid,
  .cta-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: auto;
    padding: 0;
  }

  .dashboard-card {
    margin: 0;
  }

  .cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .container {
    width: min(100% - 1.2rem, 1180px);
  }

  .site-header {
    position: static;
  }

  .header-inner {
    padding: 0.9rem 0;
  }

  .brand {
    width: 100%;
  }

  .header-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .site-nav {
    width: 100%;
    justify-content: flex-start;
  }

  .site-nav a {
    padding-inline: 0.85rem;
  }

  .hero {
    padding-top: 2.5rem;
  }

  .hero h1 {
    max-width: 100%;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: auto;
    padding: 0;
  }

  .dashboard-card {
    padding: 1rem;
    margin: 0;
  }

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

  .signal-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .signal-track {
    width: 100%;
  }

  .section h2 {
    max-width: 100%;
  }

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

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

  .form-full {
    grid-column: auto;
  }

  .form-actions {
    align-items: flex-start;
  }

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

