:root {
  --ink: #111827;
  --muted: #667085;
  --line: #e4ebe8;
  --soft: #f6faf8;
  --paper: #ffffff;
  --teal: #057a6f;
  --teal-dark: #035f56;
  --green: #78c841;
  --amber: #f4b740;
  --coral: #f06b55;
  --shadow: 0 24px 80px rgba(17, 24, 39, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    linear-gradient(90deg, rgba(5, 122, 111, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(5, 122, 111, 0.04) 1px, transparent 1px),
    var(--paper);
  background-size: 42px 42px;
  text-rendering: optimizeLegibility;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 5vw, 64px);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(219, 229, 225, 0.8);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 280px;
}

.brand-logo {
  display: block;
  width: 72px;
  height: 50px;
  overflow: hidden;
  background: white;
  border: 1px solid rgba(5, 122, 111, 0.14);
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(17, 24, 39, 0.1);
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.nav {
  display: flex;
  gap: 26px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

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

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 0;
  border-radius: 10px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.nav-cta,
.button.primary {
  color: white;
  background: var(--teal);
  box-shadow: 0 10px 24px rgba(8, 118, 107, 0.22);
}

.button.primary:hover,
.nav-cta:hover {
  background: var(--teal-dark);
}

.button.secondary {
  color: var(--teal);
  background: #e8f4f1;
}

.button.whatsapp {
  color: white;
  background: #1fa855;
}

.button.full {
  width: 100%;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.86fr);
  gap: clamp(26px, 4vw, 56px);
  min-height: calc(100vh - 75px);
  padding: clamp(32px, 6vw, 80px) clamp(18px, 5vw, 64px) 52px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.82) 46%, rgba(255, 255, 255, 0.2) 100%),
    url("https://images.unsplash.com/photo-1560184897-ae75f418493e?auto=format&fit=crop&w=1800&q=80") center / cover;
}

.hero-copy {
  align-self: center;
  max-width: 760px;
}

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

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

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(40px, 5.4vw, 68px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 20px;
}

.lead {
  max-width: 680px;
  color: #344844;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.5;
}

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

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-row span {
  padding: 9px 12px;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(8, 118, 107, 0.16);
  border-radius: 999px;
}

.search-card,
.panel,
.advisor-card,
.step-grid article {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(219, 229, 225, 0.9);
  box-shadow: var(--shadow);
}

.search-card {
  align-self: center;
  padding: 26px;
  border-radius: 22px;
  backdrop-filter: blur(18px);
  position: relative;
}

.smart-progress {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin: 0 0 16px;
}

.smart-progress span {
  height: 6px;
  background: #e6efec;
  border-radius: 999px;
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.smart-progress .active {
  background: linear-gradient(90deg, var(--teal), var(--green));
  box-shadow: 0 0 22px rgba(120, 200, 65, 0.42);
}

.search-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  border: 1px solid rgba(120, 200, 65, 0.28);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  padding: 1px;
}

.card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.card-header span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.card-header strong {
  max-width: 210px;
  font-size: 24px;
  line-height: 1.05;
  text-align: right;
}

.ai-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 0 0 14px;
}

.ai-strip span {
  display: grid;
  min-height: 34px;
  place-items: center;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 900;
  background: linear-gradient(180deg, #f3fbf8, #e7f4f0);
  border: 1px solid rgba(5, 122, 111, 0.14);
  border-radius: 999px;
}

.segmented {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 14px;
  padding: 5px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 10px;
}

.segmented input {
  position: absolute;
  opacity: 0;
}

.segmented span {
  display: grid;
  min-height: 42px;
  place-items: center;
  color: var(--muted);
  font-weight: 800;
  border-radius: 7px;
  cursor: pointer;
}

.segmented input:checked + span {
  color: white;
  background: var(--teal);
}

.field {
  display: grid;
  gap: 7px;
  margin-bottom: 12px;
}

.field span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

input,
select {
  width: 100%;
  min-height: 46px;
  padding: 0 12px;
  color: var(--ink);
  font: inherit;
  font-weight: 650;
  background: white;
  border: 1px solid var(--line);
  border-radius: 10px;
  outline: none;
}

input:focus,
select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(8, 118, 107, 0.12);
}

.consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  margin: 4px 0 14px;
  color: #53625e;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}

.consent input {
  width: 18px;
  min-height: 18px;
  margin: 1px 0 0;
  accent-color: var(--teal);
}

.form-assurance {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  text-align: center;
}

.form-step {
  animation: form-step-in 0.24s ease;
}

.form-step[hidden] {
  display: none;
}

.form-actions {
  display: grid;
  gap: 10px;
  margin-top: 6px;
}

.form-actions.split {
  grid-template-columns: minmax(110px, 0.58fr) minmax(180px, 1fr);
}

.result-teaser {
  margin-bottom: 16px;
  padding: 16px;
  background: linear-gradient(135deg, #eaf8f3, #f7fbf9);
  border: 1px solid rgba(5, 122, 111, 0.14);
  border-left: 4px solid var(--green);
  border-radius: 12px;
}

.result-teaser span,
.result-teaser strong {
  display: block;
}

.result-teaser span {
  margin-bottom: 5px;
  color: var(--teal-dark);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.result-teaser strong {
  margin-bottom: 6px;
  font-size: 23px;
}

.result-teaser p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.form-error {
  min-height: 18px;
  margin: 8px 0 0;
  color: #b42318;
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

@keyframes form-step-in {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.grid-2,
.grid-3 {
  display: grid;
  gap: 12px;
}

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

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

.hidden {
  display: none;
}

.steps,
.tech-preview,
.diagnostic,
.zones {
  padding: 78px clamp(18px, 5vw, 64px);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 28px;
}

.steps {
  color: white;
  text-align: center;
  background: #34485d;
}

.steps .section-heading {
  margin-right: auto;
  margin-left: auto;
}

.steps .eyebrow {
  color: #a9f06d;
}

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

.step-grid article {
  padding: 14px 20px 4px;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.step-grid .step-icon {
  display: grid;
  width: 72px;
  height: 72px;
  margin: 0 auto 14px;
  place-items: center;
  color: white;
  font-size: 40px;
  font-weight: 950;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
}

.step-grid h3 {
  color: #a9f06d;
}

.step-grid p,
.panel p,
.advisor-card p {
  color: var(--muted);
  line-height: 1.6;
}

.step-grid p {
  max-width: 280px;
  margin-right: auto;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
}

.tech-preview {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: center;
  background: #f3eee8;
}

.tech-copy {
  max-width: 560px;
  justify-self: end;
}

.tech-copy p:not(.eyebrow) {
  color: #586560;
  font-size: 17px;
  line-height: 1.7;
}

.market-visual {
  position: relative;
  min-height: 420px;
}

.radar-card {
  position: absolute;
  top: 0;
  right: 78px;
  z-index: 4;
  display: grid;
  width: 132px;
  height: 132px;
  place-items: center;
  color: white;
  background: radial-gradient(circle, rgba(120, 200, 65, 0.98), rgba(5, 122, 111, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 34px;
  box-shadow: 0 24px 60px rgba(5, 122, 111, 0.26);
}

.radar-card span {
  position: absolute;
  width: 92px;
  height: 92px;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 50%;
}

.radar-card span:nth-child(2) {
  width: 58px;
  height: 58px;
}

.radar-card strong {
  position: relative;
  font-size: 36px;
  font-weight: 950;
}

.map-card {
  position: absolute;
  inset: 34px 120px 40px 0;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(242, 249, 247, 0.94)),
    linear-gradient(35deg, transparent 48%, rgba(5, 122, 111, 0.18) 49% 52%, transparent 53%),
    linear-gradient(145deg, transparent 45%, rgba(120, 200, 65, 0.2) 46% 50%, transparent 51%);
  border: 1px solid rgba(5, 122, 111, 0.16);
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(17, 24, 39, 0.14);
  transform: perspective(900px) rotateX(58deg) rotateZ(-8deg);
  transform-origin: center;
}

.map-grid {
  position: absolute;
  inset: -30px;
  background-image:
    linear-gradient(rgba(5, 122, 111, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(5, 122, 111, 0.14) 1px, transparent 1px);
  background-size: 56px 56px;
}

.pin {
  position: absolute;
  width: 18px;
  height: 18px;
  background: var(--coral);
  border: 4px solid white;
  border-radius: 50% 50% 50% 4px;
  box-shadow: 0 10px 18px rgba(240, 107, 85, 0.38);
  transform: rotate(-45deg);
}

.pin-a {
  top: 80px;
  left: 110px;
}

.pin-b {
  top: 130px;
  right: 120px;
}

.pin-c {
  bottom: 76px;
  left: 260px;
}

.route-line {
  position: absolute;
  height: 7px;
  background: rgba(120, 200, 65, 0.45);
  border-radius: 999px;
}

.route-one {
  top: 154px;
  left: 118px;
  width: 210px;
  transform: rotate(18deg);
}

.route-two {
  right: 105px;
  bottom: 112px;
  width: 170px;
  transform: rotate(-24deg);
}

.score-card {
  position: absolute;
  right: 18px;
  bottom: 0;
  width: min(330px, 92%);
  padding: 18px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(228, 235, 232, 0.95);
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(17, 24, 39, 0.16);
}

.engine-section {
  padding: 78px clamp(18px, 5vw, 64px);
  color: white;
  background:
    linear-gradient(135deg, rgba(3, 95, 86, 0.94), rgba(17, 24, 39, 0.96)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: auto, 44px 44px, 44px 44px;
}

.engine-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.engine-shell .eyebrow {
  color: #a9f06d;
}

.engine-shell p:not(.eyebrow) {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.7;
}

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

.engine-grid article {
  min-height: 178px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.engine-grid span {
  display: inline-flex;
  margin-bottom: 24px;
  color: #a9f06d;
  font-size: 12px;
  font-weight: 950;
}

.engine-grid strong {
  display: block;
  margin-bottom: 8px;
  font-size: 22px;
}

.engine-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.5;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 8px 10px;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 950;
  background: #eaf8f3;
  border: 1px solid rgba(5, 122, 111, 0.14);
  border-radius: 999px;
}

.live-badge span {
  width: 9px;
  height: 9px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(120, 200, 65, 0.18);
}

.mini-profile {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.home-avatar {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  background: #e9f6f2;
  border-radius: 16px;
}

.mini-profile strong,
.mini-profile span {
  display: block;
}

.mini-profile span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.score-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 14px;
}

.score-row span {
  color: var(--muted);
  font-weight: 850;
}

.score-row strong {
  color: var(--teal);
  font-size: 42px;
  line-height: 1;
}

.metric {
  display: grid;
  gap: 7px;
  margin-top: 11px;
}

.metric span {
  color: #51615c;
  font-size: 13px;
  font-weight: 850;
}

.metric div {
  overflow: hidden;
  height: 9px;
  background: #edf2f0;
  border-radius: 999px;
}

.metric i {
  display: block;
  width: 80%;
  height: 100%;
  background: linear-gradient(90deg, var(--green), var(--teal));
  border-radius: inherit;
  transition: width 0.2s ease;
}

.diagnostic {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 22px;
  background: var(--soft);
}

.panel,
.advisor-card {
  padding: clamp(24px, 4vw, 40px);
  border-radius: 22px;
}

.live-price-console {
  position: relative;
  overflow: hidden;
  margin: 24px 0;
  padding: 22px;
  color: white;
  background:
    radial-gradient(circle at 20% 20%, rgba(120, 200, 65, 0.24), transparent 34%),
    linear-gradient(135deg, #0f2b30, #111827 70%);
  border: 1px solid rgba(169, 240, 109, 0.22);
  border-radius: 20px;
  box-shadow: 0 24px 70px rgba(17, 24, 39, 0.16);
}

.live-price-console::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
}

.console-top,
.price-ticker,
.confidence-track,
.signal-grid {
  position: relative;
  z-index: 1;
}

.console-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.console-top span,
.console-top strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.console-top i {
  display: block;
  width: 9px;
  height: 9px;
  background: #a9f06d;
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(169, 240, 109, 0.14), 0 0 24px rgba(169, 240, 109, 0.62);
}

.price-ticker {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 48px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.price-ticker span {
  min-width: 0;
  padding: 16px;
  font-size: clamp(30px, 5vw, 56px);
  font-weight: 950;
  line-height: 1;
  text-align: center;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
}

.price-ticker em {
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--teal));
  border-radius: 999px;
  box-shadow: 0 0 20px rgba(120, 200, 65, 0.52);
}

.confidence-track {
  overflow: hidden;
  height: 10px;
  margin-top: 18px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
}

.confidence-track i {
  display: block;
  width: 80%;
  height: 100%;
  background: linear-gradient(90deg, #a9f06d, #14b8a6);
  border-radius: inherit;
  transition: width 0.25s ease;
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 14px;
}

.signal-grid span {
  padding: 9px 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 900;
  text-align: center;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
}

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

.result-box div {
  padding: 18px;
  background: #f7faf9;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.result-box span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.result-box strong {
  display: block;
  font-size: clamp(20px, 3vw, 31px);
  line-height: 1.05;
}

.velocity-panel {
  margin: 0 0 24px;
  padding: 20px;
  color: white;
  background:
    linear-gradient(135deg, rgba(5, 122, 111, 0.96), rgba(17, 24, 39, 0.98)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: auto, 26px 26px;
  border: 1px solid rgba(169, 240, 109, 0.22);
  border-radius: 18px;
  box-shadow: 0 18px 48px rgba(17, 24, 39, 0.14);
}

.velocity-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.velocity-heading span,
.velocity-heading strong {
  display: block;
}

.velocity-heading > div:first-child span {
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.velocity-heading > div:first-child strong {
  font-size: 21px;
}

.velocity-days {
  min-width: 92px;
  text-align: right;
}

.velocity-days strong {
  color: #a9f06d;
  font-size: 30px;
  line-height: 1;
}

.velocity-days span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 800;
}

.velocity-track {
  position: relative;
  height: 12px;
  margin: 18px 0 10px;
  background: rgba(255, 255, 255, 0.13);
  border-radius: 999px;
}

.velocity-track i {
  display: block;
  width: 66%;
  height: 100%;
  background: linear-gradient(90deg, #a9f06d, #14b8a6);
  border-radius: inherit;
  transition: width 0.35s ease;
}

.velocity-marker {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 22px;
  background: rgba(255, 255, 255, 0.72);
  transform: translate(-50%, -50%);
}

.velocity-scale {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 10px;
  font-weight: 850;
}

.velocity-panel p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.5;
}

.intel-panel {
  margin: 22px 0 24px;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(239, 248, 245, 0.98)),
    linear-gradient(90deg, rgba(5, 122, 111, 0.08) 1px, transparent 1px);
  background-size: auto, 24px 24px;
  border: 1px solid rgba(5, 122, 111, 0.14);
  border-radius: 18px;
}

.intel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.intel-header span,
.intel-header strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.intel-header i {
  width: 9px;
  height: 9px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(120, 200, 65, 0.16);
}

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

.intel-grid article {
  padding: 16px;
  background: #111827;
  border-radius: 16px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.intel-grid span {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.intel-grid strong {
  display: block;
  margin-bottom: 8px;
  color: white;
  font-size: 22px;
  line-height: 1;
}

.intel-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  line-height: 1.45;
}

.launch-plan {
  margin: 0 0 24px;
  padding: 20px;
  background: #ffffff;
  border: 1px solid rgba(5, 122, 111, 0.14);
  border-left: 5px solid var(--green);
  border-radius: 18px;
  box-shadow: 0 14px 42px rgba(17, 24, 39, 0.07);
}

.launch-plan > div:first-child {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
}

.launch-plan span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.launch-plan strong {
  color: var(--teal-dark);
  font-size: 22px;
}

.launch-plan p {
  margin-bottom: 16px;
}

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

.launch-steps span {
  display: grid;
  min-height: 38px;
  place-items: center;
  color: var(--teal-dark);
  background: #eaf8f3;
  border: 1px solid rgba(5, 122, 111, 0.12);
  border-radius: 999px;
  text-align: center;
}

.plan-list {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
}

.plan-list div {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
}

.plan-list p {
  margin: 0;
}

.check {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: white;
  font-weight: 900;
  background: var(--green);
  border-radius: 50%;
}

.advisor-photo {
  display: block;
  height: 230px;
  margin-bottom: 20px;
  background:
    linear-gradient(145deg, rgba(8, 118, 107, 0.18), rgba(123, 192, 67, 0.12)),
    url("https://images.unsplash.com/photo-1582407947304-fd86f028f716?auto=format&fit=crop&w=1000&q=80") center / cover;
  border-radius: 18px;
}

dl {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
}

dl div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

dt {
  font-weight: 900;
}

dd {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.zones {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
  align-items: center;
  background: #f3eee8;
}

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

.zone-tags a {
  color: #51615c;
  font-size: 13px;
  font-weight: 800;
}

.zone-tags a:hover {
  color: var(--teal);
}

.final-cta {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto 72px;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(246, 250, 248, 0.96)),
    linear-gradient(90deg, rgba(5, 122, 111, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(5, 122, 111, 0.06) 1px, transparent 1px);
  background-size: auto, 34px 34px, 34px 34px;
  border: 1px solid rgba(5, 122, 111, 0.14);
  border-radius: 22px;
  box-shadow: 0 24px 70px rgba(17, 24, 39, 0.1);
}

.cta-orbit {
  position: relative;
  display: grid;
  width: 88px;
  height: 88px;
  place-items: center;
  color: white;
  background: radial-gradient(circle, var(--green), var(--teal));
  border-radius: 28px;
  box-shadow: 0 18px 44px rgba(5, 122, 111, 0.24);
}

.cta-orbit span {
  position: absolute;
  width: 62px;
  height: 62px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
}

.cta-orbit span:nth-child(2) {
  width: 40px;
  height: 40px;
}

.cta-orbit strong {
  position: relative;
  font-size: 24px;
  font-weight: 950;
}

.final-cta-copy h2 {
  max-width: 680px;
  margin-bottom: 8px;
  font-size: clamp(26px, 3vw, 36px);
}

.final-cta-copy p:not(.eyebrow) {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.cta-tech {
  min-width: 210px;
  color: white;
  background: linear-gradient(135deg, var(--teal), var(--green));
  box-shadow: 0 18px 42px rgba(5, 122, 111, 0.24);
}

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

.footer {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  padding: 42px clamp(18px, 5vw, 64px) 26px;
  color: #dde8e4;
  background: #111827;
}

.footer p {
  grid-column: 1 / -1;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
  text-align: center;
}

.footer strong {
  display: block;
  margin-bottom: 12px;
  color: white;
}

.footer a {
  display: block;
  margin: 7px 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 900;
}

.footer a:hover {
  color: #a9f06d;
}

@media (max-width: 980px) {
  .nav {
    display: none;
  }

  .hero,
  .tech-preview,
  .engine-shell,
  .diagnostic,
  .zones,
  .footer {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .search-card {
    max-width: 640px;
  }

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

  .tech-copy {
    justify-self: start;
  }

  .market-visual {
    min-height: 480px;
  }

  .map-card {
    inset: 30px 40px 90px 0;
  }

  .score-card {
    right: 0;
  }

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

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

  .radar-card {
    right: 20px;
  }

  .final-cta {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cta-orbit {
    margin: 0 auto;
  }

  .final-cta-copy h2,
  .final-cta-copy p:not(.eyebrow) {
    margin-right: auto;
    margin-left: auto;
  }
}

@media (max-width: 640px) {
  .topbar {
    align-items: flex-start;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: 58px;
    height: 42px;
  }

  .brand strong {
    font-size: 14px;
  }

  .nav-cta {
    display: none;
  }

  h1 {
    font-size: 40px;
  }

  .hero {
    padding-top: 28px;
  }

  .grid-2,
  .grid-3,
  .result-box {
    grid-template-columns: 1fr;
  }

  .console-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .price-ticker {
    grid-template-columns: 1fr;
  }

  .price-ticker em {
    width: 42px;
    margin: 0 auto;
  }

  .signal-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .intel-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .launch-plan > div:first-child {
    align-items: flex-start;
    flex-direction: column;
  }

  .velocity-heading {
    align-items: flex-start;
  }

  .velocity-days {
    min-width: 78px;
  }

  .velocity-scale {
    font-size: 9px;
  }

  .launch-steps {
    grid-template-columns: 1fr;
  }

  .card-header {
    display: block;
  }

  .card-header strong {
    display: block;
    margin-top: 6px;
    text-align: left;
  }

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

  .footer {
    gap: 18px;
  }

  .tech-preview {
    padding-top: 52px;
    padding-bottom: 56px;
  }

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

  .map-card {
    inset: 18px 0 130px;
    transform: perspective(900px) rotateX(56deg) rotateZ(-7deg);
  }

  .score-card {
    right: 0;
    left: 0;
    width: 100%;
  }

  .radar-card {
    top: 10px;
    right: 12px;
    width: 94px;
    height: 94px;
    border-radius: 24px;
  }

  .radar-card span {
    width: 66px;
    height: 66px;
  }

  .radar-card span:nth-child(2) {
    width: 42px;
    height: 42px;
  }

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

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

  .final-cta {
    padding: 22px;
    margin-bottom: 42px;
  }

  .cta-tech {
    width: 100%;
  }

  .zone-tags {
    grid-template-columns: 1fr;
  }
}
