:root {
  --bg: #080908;
  --panel: #111410;
  --panel-soft: #171d16;
  --panel-bright: #d7ff43;
  --ink: #f7f8ef;
  --muted: #a7b09f;
  --muted-strong: #d7dfce;
  --line: rgba(247, 248, 239, 0.12);
  --lime: #c9ff2f;
  --lime-dark: #83b900;
  --orange: #ff8a3d;
  --shadow: 0 32px 90px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 80% 2%, rgba(201, 255, 47, 0.16), transparent 24rem),
    radial-gradient(circle at 10% 22%, rgba(255, 138, 61, 0.1), transparent 22rem),
    var(--bg);
  line-height: 1.45;
}

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

.site-header {
  min-height: 860px;
  padding: 24px 0 80px;
  overflow: hidden;
}

.nav {
  position: sticky;
  top: 18px;
  z-index: 20;
  width: min(1120px, calc(100% - 32px));
  min-height: 64px;
  margin: 0 auto;
  padding: 8px;
  display: grid;
  grid-template-columns: 1fr auto auto 1fr;
  align-items: center;
  gap: 14px;
  background: rgba(17, 20, 16, 0.82);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.logo,
.footer-logo {
  padding-left: 18px;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.logo::before {
  content: "";
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  background: url("/assets/favicon.svg") center / contain no-repeat;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--muted-strong);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a {
  padding: 12px 16px;
  border-radius: 999px;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.08);
}

.language-switch {
  padding: 4px;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.language-switch a {
  min-width: 38px;
  padding: 9px 10px;
  border-radius: 999px;
  color: var(--muted-strong);
  font-size: 12px;
  font-weight: 900;
  text-align: center;
}

.language-switch a:hover,
.language-switch a.active {
  background: var(--ink);
  color: #111407;
}

.nav-cta {
  justify-self: end;
  padding: 13px 18px;
  background: var(--lime);
  border-radius: 999px;
  color: #111407;
  font-size: 14px;
  font-weight: 900;
}

.hero {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 84px 0 0;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: 42px;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--lime);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 22px;
  font-size: clamp(70px, 13vw, 168px);
  line-height: 0.82;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 620px;
  font-size: clamp(46px, 5.1vw, 64px);
  line-height: 1;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(42px, 7vw, 86px);
  line-height: 0.92;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 16px;
  font-size: clamp(24px, 2.8vw, 36px);
  line-height: 1;
  letter-spacing: 0;
}

.hero-text {
  max-width: 600px;
  margin-bottom: 34px;
  color: var(--muted-strong);
  font-size: 20px;
}

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

.button {
  min-height: 56px;
  padding: 16px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

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

.button-primary {
  background: var(--lime);
  color: #111407;
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
}

.hero-stage {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
}

.hero-stage::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: var(--lime);
  filter: blur(24px);
  opacity: 0.12;
}

.phone {
  position: relative;
  width: min(330px, 82vw);
  min-height: 560px;
  padding: 14px;
  background: #050605;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 44px;
  box-shadow: 0 38px 100px rgba(0, 0, 0, 0.5);
  transform: rotate(4deg);
}

.phone-bar {
  position: absolute;
  top: 22px;
  left: 50%;
  width: 92px;
  height: 26px;
  transform: translateX(-50%);
  background: #050605;
  border-radius: 999px;
  z-index: 2;
}

.phone-screen {
  min-height: 532px;
  padding: 56px 22px 22px;
  background:
    linear-gradient(180deg, rgba(201, 255, 47, 0.22), transparent 32%),
    #141a12;
  border-radius: 34px;
  overflow: hidden;
}

.status-dot {
  width: 12px;
  height: 12px;
  display: inline-block;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 24px var(--lime);
}

.screen-label {
  margin: 20px 0 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.phone-screen h2 {
  margin-bottom: 24px;
  font-size: 52px;
}

.mini-chart {
  height: 130px;
  margin-bottom: 22px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: end;
  gap: 10px;
}

.mini-chart span {
  display: block;
  background: linear-gradient(180deg, var(--lime), var(--lime-dark));
  border-radius: 999px 999px 8px 8px;
}

.message-card {
  margin-top: 12px;
  padding: 16px;
  background: var(--lime);
  border-radius: 20px;
  color: #101407;
  font-size: 14px;
  font-weight: 900;
}

.message-card.alt {
  background: rgba(255, 255, 255, 0.1);
  color: var(--ink);
}

.floating-card {
  position: absolute;
  width: 172px;
  padding: 18px;
  background: rgba(247, 248, 239, 0.94);
  border-radius: 26px;
  color: #111407;
  box-shadow: var(--shadow);
}

.floating-card strong {
  display: block;
  font-size: 32px;
  line-height: 1;
}

.floating-card span {
  display: block;
  margin-top: 8px;
  color: #4a5141;
  font-size: 13px;
  font-weight: 800;
}

.floating-top {
  top: 74px;
  right: 10px;
}

.floating-bottom {
  left: 8px;
  bottom: 90px;
  background: var(--orange);
}

.ticker {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0;
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
}

.ticker::-webkit-scrollbar {
  display: none;
}

.ticker span {
  flex: 0 0 auto;
  padding: 14px 18px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted-strong);
  font-size: 14px;
  font-weight: 900;
}

.section {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 104px 0;
}

.section-heading {
  max-width: 900px;
  margin-bottom: 42px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 20px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.service-card {
  min-height: 330px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  grid-column: span 2;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.featured-card {
  grid-column: span 4;
  background:
    linear-gradient(135deg, rgba(201, 255, 47, 0.18), rgba(255, 138, 61, 0.08)),
    var(--panel-soft);
}

.card-index {
  width: fit-content;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  color: var(--lime);
  font-size: 13px;
  font-weight: 900;
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 16px;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 48px;
  align-items: start;
}

.sticky-copy {
  position: sticky;
  top: 120px;
}

.audience-panel {
  display: grid;
  gap: 12px;
}

.audience-row {
  min-height: 120px;
  padding: 24px;
  display: grid;
  align-content: space-between;
  background: var(--panel-bright);
  border-radius: 30px;
  color: #101407;
}

.audience-row:nth-child(even) {
  background: #f6f2e8;
}

.audience-row strong {
  font-size: clamp(28px, 4vw, 46px);
  line-height: 0.95;
}

.audience-row span {
  color: #3f4735;
  font-weight: 800;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: 44px;
  align-items: stretch;
}

.contact-visual {
  min-height: 440px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    linear-gradient(160deg, rgba(201, 255, 47, 0.9), rgba(255, 138, 61, 0.92)),
    var(--lime);
  border-radius: 42px;
  color: #101407;
  box-shadow: var(--shadow);
}

.contact-visual p {
  margin: 0;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-visual strong {
  max-width: 420px;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.9;
}

.contact-box {
  margin-top: 28px;
  padding: 12px;
  display: grid;
  gap: 10px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 30px;
  font-style: normal;
}

.contact-box a,
.contact-box span {
  padding: 18px;
  display: block;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 20px;
}

.contact-box a {
  color: var(--ink);
  font-weight: 900;
}

.contact-box a:hover {
  color: var(--lime);
}

.contact-box span {
  color: var(--muted);
}

.contact-note {
  max-width: 620px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.contact-note a {
  color: var(--muted-strong);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: rgba(215, 223, 206, 0.35);
  text-underline-offset: 3px;
}

.contact-note a:hover {
  color: var(--lime);
}

.site-footer {
  width: min(1120px, calc(100% - 32px));
  margin: 34px auto 0;
  padding: 30px;
  color: var(--muted);
  background:
    radial-gradient(circle at 88% 12%, rgba(201, 255, 47, 0.18), transparent 20rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)),
    var(--panel);
  border: 1px solid var(--line);
  border-radius: 42px 42px 0 0;
  box-shadow: var(--shadow);
  font-size: 14px;
}

.footer-hero {
  padding-bottom: 32px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}

.footer-hero .button {
  flex: 0 0 auto;
}

.footer-logo {
  display: block;
  padding-left: 0;
  color: var(--ink);
  font-size: clamp(54px, 10vw, 128px);
  line-height: 0.85;
}

.footer-hero p {
  max-width: 520px;
  margin: 22px 0 0;
  color: var(--muted-strong);
  font-size: 20px;
}

.footer-grid {
  padding: 34px 0;
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) repeat(3, minmax(150px, 0.6fr));
  gap: 28px;
  border-bottom: 1px solid var(--line);
}

.footer-grid h2 {
  max-width: 520px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(34px, 5vw, 62px);
  line-height: 0.95;
}

.footer-grid nav,
.footer-bottom nav {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-grid strong {
  margin-bottom: 4px;
  color: var(--lime);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-grid a,
.footer-bottom a {
  color: var(--muted-strong);
  font-weight: 800;
}

.footer-grid span {
  color: var(--muted);
}

.site-footer a:hover {
  color: var(--lime);
}

.footer-bottom {
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom span {
  color: var(--muted-strong);
  font-weight: 800;
}

.compact-footer {
  margin-top: 64px;
}

.compact-footer .footer-hero {
  padding-bottom: 28px;
}

.compact-footer .footer-logo {
  font-size: clamp(46px, 9vw, 96px);
}

.compact-footer .footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.legal-header {
  background: var(--panel);
  color: var(--ink);
}

.legal-page {
  width: min(880px, calc(100% - 32px));
  min-height: 58vh;
  margin: 0 auto;
  padding: 72px 0;
}

.legal-page h1 {
  margin-bottom: 24px;
  color: var(--ink);
  font-size: clamp(42px, 7vw, 78px);
  line-height: 0.95;
}

.legal-page h2 {
  margin: 36px 0 14px;
  color: var(--ink);
  font-size: clamp(26px, 3.4vw, 38px);
  line-height: 1.05;
}

.legal-page p {
  color: var(--muted);
  font-size: 18px;
}

.legal-page ul {
  margin: 0 0 20px;
  padding-left: 22px;
  color: var(--muted);
  font-size: 18px;
}

.legal-page li {
  margin-bottom: 10px;
}

.legal-page a {
  color: var(--lime);
  font-weight: 900;
}

@media (max-width: 940px) {
  .site-header {
    min-height: auto;
  }

  .hero h1 {
    max-width: 680px;
    font-size: 52px;
  }

  .hero,
  .split-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: 540px;
  }

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

  .service-card,
  .featured-card {
    grid-column: auto;
    min-height: 260px;
  }

  .sticky-copy {
    position: static;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding-top: 12px;
  }

  .nav {
    position: static;
    grid-template-columns: 1fr;
    border-radius: 30px;
  }

  .logo {
    padding: 8px 12px 0;
  }

  .nav-links {
    justify-content: space-between;
    width: 100%;
    order: 3;
  }

  .nav-links a {
    padding: 10px 8px;
    font-size: 13px;
  }

  .nav-cta {
    justify-self: stretch;
    text-align: center;
  }

  .language-switch {
    justify-self: stretch;
    justify-content: space-between;
  }

  .language-switch a {
    flex: 1;
  }

  .hero {
    padding-top: 58px;
    gap: 28px;
  }

  .hero h1 {
    font-size: 36px;
    line-height: 1;
  }

  .hero-text {
    font-size: 18px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-stage {
    min-height: 500px;
  }

  .phone {
    min-height: 500px;
  }

  .phone-screen {
    min-height: 472px;
  }

  .floating-card {
    width: 146px;
    padding: 14px;
    border-radius: 20px;
  }

  .floating-card strong {
    font-size: 26px;
  }

  .floating-top {
    top: 18px;
    right: 0;
  }

  .floating-bottom {
    left: 0;
    bottom: 38px;
  }

  .section {
    padding: 72px 0;
  }

  .contact-visual {
    min-height: 340px;
    border-radius: 30px;
  }

  .site-footer {
    padding: 22px;
    border-radius: 30px 30px 0 0;
  }

  .footer-hero,
  .footer-bottom {
    flex-direction: column;
    align-items: stretch;
  }

  .footer-hero .button {
    width: 100%;
  }

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