:root {
  color-scheme: light;
  --primary: #F97316;
  --primary-light: #FDBA74;
  --primary-dark: #B45309;
  --accent: #FB923C;
  --background: #EEF2FF;
  --surface: #F7F9FF;
  --surface-soft: #E8EEF9;
  --card: #FFFFFF;
  --text: #3F2A1D;
  --text-soft: #6B4E3D;
  --muted: #7B7280;
  --muted-light: #AAA5B3;
  --border: #D7DCE8;
  --button-secondary: #E8EEF9;
  --shadow: 0 24px 70px rgba(53, 37, 28, 0.12);
  --header-bg: rgba(238, 242, 255, 0.82);
  --glow-one: rgba(249, 115, 22, 0.18);
  --glow-two: rgba(253, 186, 116, 0.2);
}

html[data-theme="dark"] {
  color-scheme: dark;
  --primary: #F97316;
  --primary-light: #FDBA74;
  --primary-dark: #B45309;
  --accent: #FB923C;
  --background: #0F1722;
  --surface: #182231;
  --surface-soft: #243041;
  --card: #182231;
  --text: #F8E6DA;
  --text-soft: #E6C9B7;
  --muted: #B79D8E;
  --muted-light: #8D8078;
  --border: #2B3747;
  --button-secondary: #243041;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
  --header-bg: rgba(15, 23, 34, 0.82);
  --glow-one: rgba(249, 115, 22, 0.16);
  --glow-two: rgba(251, 146, 60, 0.11);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at top left, var(--glow-two), transparent 34rem),
    var(--background);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  transition: background-color .25s ease, color .25s ease;
}

a {
  color: inherit;
}

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

button,
select {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.ambient {
  position: fixed;
  z-index: -1;
  width: 28rem;
  height: 28rem;
  border-radius: 999px;
  filter: blur(80px);
  opacity: .45;
  pointer-events: none;
}

.ambient-one {
  top: 8rem;
  right: -12rem;
  background: var(--glow-one);
}

.ambient-two {
  bottom: 4rem;
  left: -15rem;
  background: var(--glow-two);
}

.section-shell,
.site-header {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 16px;
  padding: 10px 14px;
  border: 1px solid color-mix(in srgb,
      var(--border) 75%,
      transparent);
  border-radius: 20px;
  background: var(--header-bg);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  gap: 13px;
  min-width: 0;
  color: var(--text);
  text-decoration: none;
}

.brand-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  object-fit: contain;
}

.brand-divider {
  width: 1px;
  height: 39px;
  flex-shrink: 0;
  border-radius: 999px;
  background: var(--border);
}

.brand-content {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  line-height: 1;
}

.brand-name {
  display: flex;
  align-items: center;
  color: var(--text);
  font-size: 1.55rem;
  font-weight: 850;
  white-space: nowrap;
}

.brand-name-rest {
  display: inline-block;
}

.brand-benefits {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.brand-benefit {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.brand-benefit-icon {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-benefit:first-child {
  color: #4D9A32;
}

.brand-benefit:last-child {
  color: var(--primary);
}

.brand-benefit-separator {
  width: 3px;
  height: 3px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--muted-light);
}

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

.brand:hover .brand-name {
  color: var(--primary);
}

.brand-icon,
.brand-name {
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.select-wrap select {
  min-height: 42px;
  padding: 0 38px 0 13px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background-color: var(--surface);
  color: var(--text);
  cursor: pointer;
  outline: none;
}

.select-wrap select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, .16);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  align-items: center;
  gap: clamp(48px, 7vw, 96px);
  min-height: calc(100vh - 90px);
  padding-block: 80px;
}

.eyebrow,
.section-kicker {
  color: var(--primary-dark);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

html[data-theme="dark"] .eyebrow,
html[data-theme="dark"] .section-kicker {
  color: var(--primary-light);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border: 1px solid rgba(249, 115, 22, .24);
  border-radius: 999px;
  background: rgba(249, 115, 22, .08);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 6px rgba(249, 115, 22, .12);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-block: 24px 22px;
  font-size: clamp(3.5rem, 8vw, 7rem);
  line-height: .94;
  letter-spacing: -.065em;
}

h1 span {
  display: block;
}

.gradient-text {
  padding-bottom: .08em;
  background: linear-gradient(120deg, var(--primary-dark), var(--primary), var(--primary-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-text {
  max-width: 680px;
  color: var(--text-soft);
  font-size: clamp(1.05rem, 1.9vw, 1.25rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding-inline: 20px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: transform .2s ease, border-color .2s ease, background-color .2s ease;
}

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

.button-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 14px 30px rgba(249, 115, 22, .26);
}

.button-primary:hover {
  background: #EA580C;
}

.button-secondary {
  border-color: var(--border);
  background: var(--button-secondary);
  color: var(--text);
}

.domain-line {
  margin-top: 26px;
  color: var(--muted);
  font-size: .95rem;
}

.domain-line strong {
  margin-left: 6px;
  color: var(--text);
}

.hero-visual {
  position: relative;
}

.visual-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 30px;
  background: var(--card);
  box-shadow: var(--shadow);
  transform: rotate(2deg);
}

.visual-card:hover {
  scale: 1.01;
}

.visual-topbar {
  display: flex;
  gap: 7px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.visual-topbar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--border);
}

.visual-content {
  position: relative;
  min-height: 510px;
  overflow: hidden;
  background:
    linear-gradient(var(--surface-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--surface-soft) 1px, transparent 1px),
    var(--card);
  background-size: 42px 42px;
}

.center-mark {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 3;
  width: 120px;
  height: 120px;
  transform: translate(-50%, -50%) rotate(-2deg);
}

.center-mark img {
  width: 100%;
  height: 100%;
}

.orbit {
  position: absolute;
  inset: 50% auto auto 50%;
  border: 1px dashed rgba(249, 115, 22, .4);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.orbit-one {
  width: 300px;
  height: 300px;
}

.orbit-two {
  width: 430px;
  height: 430px;
}

.mini-card {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 210px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: color-mix(in srgb, var(--card) 88%, transparent);
  box-shadow: 0 14px 30px rgba(0, 0, 0, .1);
  backdrop-filter: blur(12px);
}

.mini-card {
  transition:
    transform 0.35s cubic-bezier(.2, .8, .2, 1),
    box-shadow 0.35s ease,
    border-color 0.35s ease,
    background-color 0.35s ease;
  transform-origin: center;
  will-change: transform;
}

.mini-card:hover {
  transform: translateY(-8px) scale(1.06);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, .18),
    0 0 40px rgba(249, 115, 22, .18);
  border-color: rgba(249, 115, 22, .45);
  background: color-mix(in srgb, var(--card) 95%, white 5%);
}

.mini-card:hover .mini-icon {
  transform: rotate(-8deg) scale(1.15);
}

.mini-icon {
  transition: transform .35s cubic-bezier(.2, .8, .2, 1);
}

.mini-card strong,
.mini-card small {
  display: block;
}

.mini-card small {
  color: var(--muted);
  font-size: .75rem;
}

.mini-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 13px;
  background: rgba(249, 115, 22, .12);
}

.item-one {
  top: 50px;
  left: 22px;
}

.item-two {
  top: 130px;
  right: 0;
}

.item-three {
  bottom: 38px;
  left: 40px;
}

.info-section,
.development-section,
.contact-section {
  padding-block: 76px;
}

.section-heading {
  display: grid;
  grid-template-columns: .65fr 1.35fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 36px;
}

.section-heading h2,
.development-card h2,
.contact-card h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4.5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -.045em;
}

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

.feature-card {
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--card);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .05);
}

.feature-number {
  display: inline-flex;
  margin-bottom: 48px;
  color: var(--primary);
  font-weight: 900;
}

.feature-card h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
}

.feature-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.development-card {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 52px;
  padding: clamp(28px, 5vw, 60px);
  border: 1px solid rgba(249, 115, 22, .2);
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(249, 115, 22, .13), transparent 48%),
    var(--card);
  box-shadow: var(--shadow);
}

.development-card p {
  max-width: 670px;
  margin: 20px 0 0;
  color: var(--text-soft);
  font-size: 1.05rem;
}

.progress-panel {
  align-self: center;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: var(--surface);
}

.progress-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 9px;
  font-size: .9rem;
}

.progress-row strong {
  color: var(--primary);
}

.progress-bar {
  height: 8px;
  margin-bottom: 24px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--surface-soft);
}

.progress-bar:last-child {
  margin-bottom: 0;
}

.progress-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--primary-dark), var(--primary-light));
}

.contact-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: clamp(28px, 5vw, 54px);
  border-radius: 30px;
  background: #151A22;
  color: #fff;
}

.contact-card .section-kicker {
  color: var(--primary-light);
}

.contact-card h2 {
  max-width: 700px;
  margin-top: 10px;
}

.contact-card p {
  margin: 14px 0 0;
  color: #C8CED7;
}

.email-link {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 14px;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding-block: 34px 48px;
  color: var(--muted);
  font-size: .9rem;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 92px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-text {
    margin-inline: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .section-heading,
  .development-card {
    grid-template-columns: 1fr;
  }

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

  .feature-card {
    min-height: auto;
  }

  .feature-number {
    margin-bottom: 28px;
  }

  .contact-card {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .select-wrap select {
    width: 76px;
    padding-inline: 7px 20px;
    font-size: 0.72rem;
  }
}

@media (max-width: 520px) {

  .brand-benefits {
    display: none;
  }

  .brand {
    gap: 6px;
  }

  .brand-icon {
    width: 38px;
    height: 38px;
  }

  .brand-name {
    font-size: 1.15rem;
  }
}

@media (max-width: 620px) {

  .section-shell,
  .site-header {
    width: min(100% - 24px, 1180px);
  }

  .site-header {
    top: 8px;
    margin-top: 8px;
    padding: 8px;
  }

  .header-actions {
    gap: 6px;
  }

  .select-wrap select {
    width: 88px;
    min-height: 38px;
    padding: 0 24px 0 9px;
    font-size: .8rem;
  }

  .hero {
    padding-block: 64px;
  }

  h1 {
    font-size: clamp(3.1rem, 17vw, 5rem);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .visual-content {
    min-height: 430px;
  }

  .center-mark {
    width: 130px;
    height: 130px;
  }

  .orbit-one {
    width: 240px;
    height: 240px;
  }

  .orbit-two {
    width: 350px;
    height: 350px;
  }

  .mini-card {
    width: 170px;
    padding: 10px;
  }

  .item-one {
    top: 32px;
    left: 10px;
  }

  .item-two {
    top: 185px;
    right: 8px;
  }

  .item-three {
    bottom: 28px;
    left: 14px;
  }

  .info-section,
  .development-section,
  .contact-section {
    padding-block: 54px;
  }

  .section-heading {
    gap: 18px;
  }

  .development-card,
  .contact-card {
    border-radius: 24px;
  }

  .progress-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 0;
  }

  .email-link {
    width: 100%;
    justify-content: space-between;
    overflow-wrap: anywhere;
  }

  .site-footer {
    flex-direction: column;
    gap: 8px;
  }
}


@media (max-width: 700px) {
  .brand {
    gap: 9px;
  }

  .brand-icon {
    width: 40px;
    height: 40px;
  }

  .brand-divider {
    height: 32px;
  }

  .brand-name {
    font-size: 1.3rem;
  }

  .brand-benefits {
    font-size: 0.59rem;
    gap: 5px;
  }

  .brand-benefit-icon {
    width: 11px;
    height: 11px;
  }
}

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

  *,
  *::before,
  *::after {
    transition: none !important;
  }
}