﻿:root {
  --bg: #07090c;
  --ink: #f6f8fb;
  --muted: #b8c2cf;
  --soft: #111821;
  --panel: #151f2a;
  --line: rgba(255, 255, 255, 0.14);
  --cyan: #2bd3ff;
  --orange: #ff7a2f;
  --green: #6ee08f;
  --paper: #f3f0e8;
  --dark-ink: #111820;
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 12px clamp(20px, 4vw, 56px);
  background: rgba(7, 9, 12, 0.86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand img {
  width: 116px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.6vw, 30px);
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--ink);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  padding: 9px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 150px clamp(20px, 6vw, 76px) 90px;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  object-fit: cover;
  filter: saturate(1.05) contrast(1.08);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 9, 12, 0.96) 0%, rgba(7, 9, 12, 0.78) 52%, rgba(7, 9, 12, 0.22) 100%),
    linear-gradient(0deg, rgba(7, 9, 12, 0.94) 0%, rgba(7, 9, 12, 0.16) 50%);
}


.strategy-hero {
  background: #050608;
}

.strategy-hero .hero-media {
  object-fit: contain;
  object-position: center right;
  padding: clamp(84px, 10vw, 132px) clamp(20px, 5vw, 70px) clamp(34px, 5vw, 58px) clamp(20px, 5vw, 70px);
  opacity: 0.92;
}

@media (max-width: 760px) {
  .strategy-hero .hero-media {
    object-position: center top;
    padding: 86px 12px 0;
    opacity: 0.72;
  }
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 920px;
}

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

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(42px, 6.6vw, 78px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(24px, 2.55vw, 38px);
  line-height: 1.16;
  letter-spacing: 0;
  text-wrap: balance;
}

h3 {
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.22;
}

.hero-copy {
  max-width: 760px;
  color: #d9e4ee;
  font-size: clamp(18px, 1.7vw, 23px);
  line-height: 1.34;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 6px;
  padding: 0 20px;
  text-decoration: none;
  font-weight: 900;
}

.button.primary {
  color: #071018;
  background: var(--cyan);
}

.button.secondary {
  border: 1px solid var(--line);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.07);
}

.intro-band {
  padding: 34px clamp(20px, 6vw, 76px);
  background: var(--paper);
  color: var(--dark-ink);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 34px;
  max-width: 1180px;
  margin: 0 auto;
  align-items: center;
}

.intro-grid p {
  margin-bottom: 0;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.24;
  font-weight: 900;
}

.value-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.value-list li {
  position: relative;
  padding-left: 22px;
  font-weight: 800;
}

.value-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
}

.section {
  padding: clamp(72px, 9vw, 132px) clamp(20px, 6vw, 76px);
}

.section-heading {
  max-width: 980px;
}

.section-heading p:not(.eyebrow),
.split-section p,
.roadmap-grid p,
.contact-band p {
  color: var(--muted);
  font-size: 18px;
}

.domain-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 46px;
  border: 1px solid var(--line);
  background: var(--line);
}

.domain-grid article {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 26px;
  background: var(--soft);
}

.domain-grid article:nth-child(3n + 2) {
  background: #101d18;
}

.domain-grid article:nth-child(4n) {
  background: #241a14;
}

.domain-grid strong {
  font-size: 19px;
}

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

.split-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(32px, 6vw, 78px);
  align-items: center;
  background: #0a1118;
}

.image-panel {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.image-panel img {
  width: 100%;
  min-height: 380px;
  object-fit: cover;
}

.signal-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.signal-list span {
  min-height: 58px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(43, 211, 255, 0.22);
  border-radius: 6px;
  padding: 12px 14px;
  color: #e8f6ff;
  background: rgba(43, 211, 255, 0.07);
  font-weight: 800;
}

.roadmap-section {
  background: var(--paper);
  color: var(--dark-ink);
}

.roadmap-section .eyebrow {
  color: #1d7f99;
}

.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 44px;
}

.roadmap-grid article {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid rgba(17, 24, 32, 0.16);
  border-radius: 8px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.62);
}

.roadmap-grid span {
  color: #1d7f99;
  font-weight: 950;
}

.roadmap-grid strong {
  font-size: 20px;
}

.roadmap-grid p {
  color: #46505a;
  margin-bottom: 0;
}

.check-section {
  background: #071018;
}

.checker-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: 22px;
  align-items: start;
  margin-top: 42px;
}

.checker,
.result-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  box-shadow: var(--shadow);
}

.checker {
  padding: 24px;
}

.checker label,
.checker fieldset {
  display: grid;
  gap: 10px;
}

.checker > label span,
.checker legend {
  color: #eef7ff;
  font-weight: 900;
}

.checker select {
  min-height: 46px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 6px;
  padding: 0 12px;
  color: var(--ink);
  background: #08131f;
  font: inherit;
}

.checker fieldset {
  margin: 22px 0 0;
  border: 0;
  padding: 0;
}

.checker fieldset label {
  grid-template-columns: 20px 1fr;
  align-items: start;
  min-height: 44px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  padding: 12px;
  color: #dce7ef;
  background: #0b141d;
  cursor: pointer;
}

.checker input {
  width: 16px;
  height: 16px;
  margin-top: 4px;
  accent-color: var(--cyan);
}

.result-panel {
  position: sticky;
  top: 96px;
  padding: 28px;
}

.result-panel h3 {
  font-size: clamp(24px, 2.6vw, 34px);
}

.result-panel p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
}

.score-bar {
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
  margin: 24px 0;
}

.score-bar span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--cyan), var(--green), var(--orange));
  transition: width 0.25s ease;
}

.module-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  min-height: 42px;
  margin-bottom: 24px;
}

.module-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid rgba(43, 211, 255, 0.36);
  border-radius: 6px;
  padding: 0 10px;
  color: #dff8ff;
  background: rgba(43, 211, 255, 0.08);
  font-size: 13px;
  font-weight: 900;
}

.contact-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: clamp(54px, 7vw, 92px) clamp(20px, 6vw, 76px);
  background: #101a16;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.contact-band h2 {
  max-width: 840px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px clamp(20px, 6vw, 76px);
  color: var(--muted);
  background: #050608;
  border-top: 1px solid var(--line);
}

.site-footer img {
  width: 82px;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 1080px) {
  .domain-grid,
  .roadmap-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-section,
  .checker-layout,
  .contact-band {
    grid-template-columns: 1fr;
  }

  .result-panel {
    position: static;
  }
}

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

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 20px 18px;
    background: rgba(7, 9, 12, 0.98);
    border-bottom: 1px solid var(--line);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 13px 0;
  }

  .hero {
    min-height: 88vh;
    padding: 122px 20px 72px;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(7, 9, 12, 0.96) 0%, rgba(7, 9, 12, 0.68) 58%, rgba(7, 9, 12, 0.3) 100%);
  }

  .intro-grid,
  .domain-grid,
  .roadmap-grid,
  .value-list,
  .signal-list {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 62px 20px;
  }

  .domain-grid article,
  .roadmap-grid article {
    min-height: auto;
  }

  .image-panel img {
    min-height: 280px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

.privacy-note {
  padding: clamp(48px, 6vw, 78px) clamp(20px, 6vw, 76px);
  color: var(--dark-ink);
  background: var(--paper);
  border-top: 1px solid rgba(17, 24, 32, 0.12);
}

.privacy-note .eyebrow {
  color: #1d7f99;
}

.privacy-note div {
  max-width: 980px;
}

.privacy-note h2 {
  max-width: 760px;
}

.privacy-note p {
  max-width: 920px;
  color: #46505a;
  font-size: 17px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 22px;
}

.checker input[type="text"],
.checker input[type="email"],
.checker input[type="tel"] {
  min-height: 46px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 6px;
  padding: 0 12px;
  color: var(--ink);
  background: #08131f;
  font: inherit;
}

.privacy-consent {
  margin-top: 20px;
  border: 1px solid rgba(43, 211, 255, 0.26);
  border-radius: 8px;
  padding: 14px;
  background: rgba(43, 211, 255, 0.07);
}

.privacy-consent label {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  color: #dce7ef;
  font-size: 14px;
}

.privacy-consent a {
  color: var(--cyan);
  font-weight: 900;
  text-decoration: none;
}

.result-panel button.button {
  width: 100%;
  border: 0;
  cursor: pointer;
  font: inherit;
}

@media (max-width: 760px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

.thanks-page {
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: clamp(32px, 6vw, 76px);
  background: #07090c;
}

.thanks-panel {
  max-width: 760px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(28px, 5vw, 52px);
  background: var(--soft);
  box-shadow: var(--shadow);
}

.thanks-panel h1 {
  margin-bottom: 18px;
  font-size: clamp(42px, 6vw, 72px);
}

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

.error-note {
  margin: 22px 0;
  border: 1px solid rgba(255, 122, 47, 0.36);
  border-radius: 8px;
  padding: 14px;
  color: #ffe8dc;
  background: rgba(255, 122, 47, 0.1);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}


.site-header .brand img {
  width: min(230px, 46vw);
  max-height: 54px;
  object-fit: contain;
}

.privacy-consent label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.45;
}

.privacy-consent input[type="checkbox"] {
  flex: 0 0 auto;
  margin-top: 4px;
}

.privacy-consent a {
  display: inline;
  white-space: nowrap;
}

.strategy-hero .hero-content {
  max-width: 1040px;
}

.strategy-hero h1 {
  font-size: clamp(56px, 8.2vw, 112px);
  line-height: 0.92;
  max-width: 980px;
  text-shadow: 0 16px 36px rgba(0, 0, 0, 0.72);
}

.strategy-hero .hero-copy {
  max-width: 820px;
  font-size: clamp(21px, 2.1vw, 30px);
  line-height: 1.24;
  color: #eef7ff;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.68);
}

.strategy-hero .eyebrow {
  font-size: clamp(14px, 1.25vw, 18px);
  letter-spacing: 0;
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.78);
}

@media (max-width: 760px) {
  .strategy-hero h1 {
    font-size: clamp(44px, 15vw, 68px);
    line-height: 0.96;
  }

  .strategy-hero .hero-copy {
    font-size: 20px;
  }
}

.strategy-hero h1 {
  font-size: clamp(42px, 6.6vw, 78px);
  line-height: 0.98;
  max-width: 830px;
}

.strategy-hero .hero-copy {
  font-size: clamp(18px, 1.7vw, 23px);
  line-height: 1.32;
  max-width: 760px;
}

.strategy-hero .eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid rgba(43, 211, 255, 0.42);
  border-radius: 6px;
  padding: 0 12px;
  color: #071018;
  background: #2bd3ff;
  font-size: clamp(15px, 1.35vw, 20px);
  font-weight: 950;
  text-shadow: none;
}

@media (max-width: 760px) {
  .strategy-hero h1 {
    font-size: clamp(42px, 6.6vw, 78px);
    line-height: 0.98;
  }

  .strategy-hero .hero-copy {
    font-size: clamp(18px, 1.7vw, 23px);
  }
}

.site-header .brand img {
  width: 116px;
  height: 54px;
  object-fit: contain;
  object-position: left center;
}

/* Final visual fixes: match homepage logo size and restore form input widths */
.site-header .brand img {
  width: 145px;
  height: 145px;
  max-height: none;
  object-fit: contain;
  object-position: left center;
}

.site-header {
  min-height: 174px;
  align-items: center;
}

.strategy-hero {
  padding-top: 230px;
}

.form-grid label {
  display: grid;
  gap: 10px;
  width: 100%;
}

.checker .form-grid input[type="text"],
.checker .form-grid input[type="email"],
.checker .form-grid input[type="tel"],
.checker select {
  width: 100%;
  min-width: 0;
  height: 58px;
  min-height: 58px;
}

.checker fieldset label input[type="checkbox"],
.privacy-consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-height: 18px;
}

@media (max-width: 760px) {
  .site-header .brand img {
    width: 112px;
    height: 112px;
  }

  .site-header {
    min-height: 134px;
  }

  .site-nav {
    top: 134px;
  }

  .strategy-hero {
    padding-top: 180px;
  }
}

.privacy-consent label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.privacy-consent .consent-text {
  display: block;
  flex: 1 1 auto;
  min-width: 0;
  line-height: 1.45;
}

.privacy-consent .consent-text a {
  display: inline;
  white-space: normal;
}
