:root {
  --sun: #ffd24a;
  --orange: #ff5c1a;
  --magenta: #ff2d78;
  --violet: #9b3dff;
  --electric: #1ba8ff;
  --cyan: #3ee0ff;
  --navy-0: #050814;
  --navy-1: #0a1028;
  --navy-2: #101a3a;
  --ink: #f4f7ff;
  --muted: #b7c0d8;
  --glass: rgba(10, 16, 40, 0.62);
  --line: rgba(255, 255, 255, 0.14);
  --spectrum: linear-gradient(115deg, #ffd24a 0%, #ff5c1a 28%, #ff2d78 55%, #9b3dff 78%, #1ba8ff 100%);
  --shadow: 0 30px 80px rgba(3, 6, 20, 0.45);
  --radius: 18px;
  --header-h: 82px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--navy-0);
  font-family: Sora, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}

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

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

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  border: 0;
  background: none;
}

:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

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

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 40;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--navy-0);
  font-weight: 700;
}

.skip-link:focus {
  top: 12px;
}

/* Atmosphere */
.atmosphere {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 12% -10%, rgba(255, 92, 26, 0.55), transparent 42%),
    radial-gradient(ellipse at 88% 0%, rgba(27, 168, 255, 0.5), transparent 44%),
    radial-gradient(ellipse at 50% 35%, rgba(255, 45, 120, 0.22), transparent 38%),
    radial-gradient(ellipse at 72% 88%, rgba(155, 61, 255, 0.32), transparent 42%),
    linear-gradient(180deg, #0b1433 0%, #070b1c 42%, #081226 100%);
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  mix-blend-mode: screen;
  animation: drift 22s ease-in-out infinite;
}

.orb-sun {
  width: 46vw;
  height: 46vw;
  left: -12%;
  top: -16%;
  background: #ff7a1a;
  opacity: 0.36;
}

.orb-magenta {
  width: 38vw;
  height: 38vw;
  right: 8%;
  top: 18%;
  background: #ff2d78;
  opacity: 0.2;
  animation-delay: -7s;
}

.orb-blue {
  width: 50vw;
  height: 50vw;
  right: -18%;
  top: -8%;
  background: #1ba8ff;
  opacity: 0.32;
  animation-delay: -12s;
}

.orb-violet {
  width: 40vw;
  height: 40vw;
  left: 18%;
  bottom: -18%;
  background: #7a2dff;
  opacity: 0.22;
  animation-delay: -3s;
}

.mesh {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.22;
}

.mesh-lines {
  animation: meshPulse 14s ease-in-out infinite;
}

.grain {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

@keyframes drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(4%, 6%) scale(1.08); }
}

@keyframes meshPulse {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

@keyframes shimmer {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: none; }
}

.reveal {
  animation: fadeUp 0.8s cubic-bezier(0.2, 0.7, 0.2, 1) both;
  animation-delay: var(--d, 0s);
}

/* Header */
.site-header,
main,
.site-footer {
  position: relative;
  z-index: 2;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: var(--header-h);
  border-bottom: 1px solid transparent;
  background: linear-gradient(180deg, rgba(5, 8, 20, 0.55), rgba(5, 8, 20, 0.08));
  backdrop-filter: blur(16px);
  transition: background 0.3s, border-color 0.3s;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(6, 10, 28, 0.92);
  border-bottom-color: var(--line);
}

.header-inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 28px;
}

.header-panel {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
}

.menu-toggle-bars,
.menu-toggle-bars::before,
.menu-toggle-bars::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 99px;
  background: #fff;
}

.menu-toggle-bars {
  position: relative;
}

.menu-toggle-bars::before,
.menu-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-toggle-bars::before { top: -6px; }
.menu-toggle-bars::after { top: 6px; }

.site-header.is-open .menu-toggle-bars {
  background: transparent;
}

.site-header.is-open .menu-toggle-bars::before {
  top: 0;
  transform: rotate(45deg);
}

.site-header.is-open .menu-toggle-bars::after {
  top: 0;
  transform: rotate(-45deg);
}

.wordmark {
  font-family: Outfit, sans-serif;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -1.3px;
  white-space: nowrap;
}

.wordmark span:not(.brand-slash) {
  font-weight: 600;
}

.brand-slash {
  margin-left: 2px;
  background: var(--spectrum);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 6s linear infinite;
}

nav {
  display: flex;
  gap: 22px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
}

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

.btn-navy {
  color: #fff;
  background: linear-gradient(180deg, #1d3352, #14263c);
  border: 1px solid rgba(255, 255, 255, 0.12);
  height: 43px;
  padding: 0 18px;
  font-size: 14px;
}

.btn-spectrum {
  color: #fff;
  background: var(--spectrum);
  background-size: 180% 180%;
  animation: shimmer 7s linear infinite;
  box-shadow: 0 12px 30px rgba(255, 92, 26, 0.28), 0 8px 24px rgba(27, 168, 255, 0.18);
}

.primary-cta.btn-spectrum {
  background: linear-gradient(115deg, #a43a08, #b81750, #6630ac, #1555a5);
}

.header-cta svg,
.primary-cta svg,
.submit-button svg {
  flex: none;
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1.02fr 1fr;
  align-items: center;
  gap: 56px;
  padding-top: 56px;
  padding-bottom: 42px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #ffc9a8;
  font-size: 12px;
  font-weight: 700;
}

.eyebrow-line {
  width: 23px;
  height: 3px;
  background: var(--spectrum);
  border-radius: 99px;
}

.hero h1,
.section-heading h2,
.signup-copy h2,
.module-detail h3,
.interest-form h3,
.form-success h3 {
  font-family: Outfit, sans-serif;
}

.hero h1 {
  margin: 18px 0 0;
  font-size: clamp(34px, 4.5vw, 56px);
  font-weight: 800;
  letter-spacing: -2.2px;
  line-height: 1.06;
}

.hero h1 span {
  background: var(--spectrum);
  background-size: 180% 180%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 8s linear infinite;
}

.brand-promise {
  margin: 16px 0 0;
  max-width: 28ch;
  color: #ffc4a0;
  font-family: Outfit, sans-serif;
  font-size: clamp(17px, 1.7vw, 21px);
  font-weight: 600;
  letter-spacing: -0.3px;
  line-height: 1.35;
}

.hero-conversion {
  display: inline-block;
  margin: 22px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: #fff;
  font-family: Outfit, sans-serif;
  font-size: clamp(22px, 2.3vw, 28px);
  font-weight: 700;
  letter-spacing: -0.7px;
  line-height: 1.2;
}

.hero-description {
  max-width: 470px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.primary-cta {
  margin-top: 28px;
  min-height: 54px;
  padding: 16px 24px;
  font-size: 15px;
}

.hero-note {
  margin-top: 13px;
  color: #93a0c0;
  font-size: 13px;
}

.hero-visual {
  width: 100%;
}

.brand-art {
  overflow: hidden;
  border-radius: 22px 22px 0 0;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12), 0 0 80px rgba(255, 92, 26, 0.28), 0 0 120px rgba(27, 168, 255, 0.22);
}

.brand-art img {
  width: 100%;
  height: auto;
}

.concept-panel {
  color: #fff;
  background: linear-gradient(180deg, rgba(17, 18, 52, 0.92), rgba(10, 16, 40, 0.94));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 0;
  border-radius: 0 0 22px 22px;
  padding: 26px 26px 0;
  backdrop-filter: blur(18px);
}

.concept-heading {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.small-label {
  color: var(--cyan);
}

.concept-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 17px;
  font-weight: 600;
  transition: color 0.2s, transform 0.2s;
}

.concept-row small {
  display: block;
  margin-top: 4px;
  color: #a9b6d4;
  font-size: 13px;
  font-weight: 400;
}

.concept-row svg {
  margin-left: auto;
  flex: none;
  color: #92aabd;
}

.concept-index {
  font-family: Outfit, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.tone-orange .concept-index { color: var(--orange); }
.tone-blue .concept-index { color: var(--electric); }
.tone-magenta .concept-index { color: var(--magenta); }

.concept-row.tone-orange:hover { color: #ffb089; }
.concept-row.tone-blue:hover { color: #8ad4ff; }
.concept-row.tone-magenta:hover { color: #ff9ac0; }

.concept-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 0 18px;
  color: #c5d0ea;
  font-size: 13px;
}

.visual-caption {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
  color: #8e9bb8;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.hero-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 22px;
  border-top: 1px solid var(--line);
  color: #9aa6c4;
  font-size: 13px;
}

.hero-bottom a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 700;
}

/* Ticker */
.ticker {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: rgba(8, 12, 32, 0.35);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.ticker-track {
  display: flex;
  gap: 36px;
  width: max-content;
  padding: 14px 36px 14px 0;
  animation: ticker 32s linear infinite;
  font-family: Outfit, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.ticker-track span::before {
  content: "●";
  margin-right: 12px;
}

.t-sun { color: var(--sun); }
.t-orange { color: var(--orange); }
.t-magenta { color: var(--magenta); }
.t-violet { color: #c084ff; }
.t-blue { color: var(--electric); }
.t-cyan { color: var(--cyan); }

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Sections */
.section-space {
  padding-block: 88px;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 45px;
  margin-bottom: 38px;
}

.section-heading .eyebrow {
  color: #ff9a63;
}

.section-heading h2 {
  margin: 14px 0 0;
  font-size: clamp(30px, 3.2vw, 44px);
  font-weight: 800;
  letter-spacing: -1.4px;
  line-height: 1.14;
}

.section-heading > p {
  max-width: 340px;
  padding-bottom: 4px;
  color: var(--muted);
  font-size: 16px;
}

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

.pain-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  padding: 26px 26px 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(12, 16, 42, 0.55);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.pain-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 5px;
  background: var(--card-accent);
}

.pain-card::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -50px;
  bottom: -70px;
  border-radius: 50%;
  background: var(--card-accent);
  opacity: 0.18;
  filter: blur(18px);
}

.pain-card.orange { --card-accent: linear-gradient(90deg, #ffd24a, #ff5c1a); }
.pain-card.blue { --card-accent: linear-gradient(90deg, #3ee0ff, #1ba8ff); }
.pain-card.purple { --card-accent: linear-gradient(90deg, #ff2d78, #9b3dff); }

.pain-card.orange { background: linear-gradient(180deg, rgba(255, 92, 26, 0.22), rgba(12, 16, 42, 0.7)); }
.pain-card.blue { background: linear-gradient(180deg, rgba(27, 168, 255, 0.22), rgba(12, 16, 42, 0.7)); }
.pain-card.purple { background: linear-gradient(180deg, rgba(255, 45, 120, 0.2), rgba(12, 16, 42, 0.7)); }

.card-number {
  font-family: Outfit, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #ffe4c2;
}

.pain-card.blue .card-number { color: #c6eeff; }
.pain-card.purple .card-number { color: #ffd0e4; }

.pain-card h3 {
  max-width: 240px;
  margin: 28px 0 16px;
  font-size: 25px;
  font-weight: 700;
  letter-spacing: -0.6px;
  line-height: 1.25;
}

.pain-card > p {
  min-height: 108px;
  color: #d5dcef;
  font-size: 15px;
  line-height: 1.7;
}

.pain-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 12px;
  font-weight: 700;
}

.pain-tag span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ffd24a;
  box-shadow: 0 0 10px #ffd24a;
}

.pain-card.blue .pain-tag span {
  background: var(--electric);
  box-shadow: 0 0 10px var(--electric);
}

.pain-card.purple .pain-tag span {
  background: var(--magenta);
  box-shadow: 0 0 10px var(--magenta);
}

/* Modules */
.module-tabs {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(10, 16, 40, 0.5);
}

.tab-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid var(--line);
}

.tab-list button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 8px 16px;
  border-radius: 12px;
  color: #c9d2ea;
  font-size: 14px;
  font-weight: 700;
}

.tab-list button:hover:not(.is-active) {
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
}

.tab-list button.is-active {
  color: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.tab-list button.tone-orange.is-active {
  background: linear-gradient(135deg, #a43a08, #b43c10);
}

.tab-list button.tone-blue.is-active {
  background: linear-gradient(135deg, #075b80, #174db8);
}

.tab-list button.tone-magenta.is-active {
  background: linear-gradient(135deg, #b81750, #6630ac);
}

.tab-panels {
  margin-top: 0;
}

.module-detail {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  padding: 42px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(8, 12, 32, 0.35));
}

.module-detail.is-active {
  display: grid;
}

.planned-label {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  background: linear-gradient(115deg, #a43a08, #b81750, #6630ac, #1555a5);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.module-detail h3 {
  margin: 0 0 14px;
  font-size: 31px;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.2;
}

.module-detail p {
  color: var(--muted);
  font-size: 16px;
}

.module-detail ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.module-detail li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  line-height: 1.5;
}

.module-detail li svg {
  flex: none;
  margin-top: 2px;
  color: var(--orange);
}

#panel-caixa li svg { color: var(--electric); }
#panel-marketing li svg { color: var(--magenta); }

.calendar-strip {
  display: grid;
  grid-template-columns: 170px 1fr auto;
  align-items: center;
  gap: 28px;
  margin-top: 24px;
  padding: 26px 28px;
  border-radius: 18px;
  border: 1px solid rgba(27, 168, 255, 0.35);
  background: linear-gradient(90deg, rgba(27, 168, 255, 0.18), rgba(155, 61, 255, 0.16) 50%, rgba(255, 45, 120, 0.12));
}

.calendar-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
}

.calendar-strip h3 {
  margin: 0 0 6px;
  font-family: Outfit, sans-serif;
  font-size: 18px;
}

.calendar-strip p {
  margin: 0;
  max-width: 560px;
  color: var(--muted);
  font-size: 14px;
}

.calendar-strip a {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

/* Signup */
.signup-section {
  position: relative;
  padding-block: 92px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 0% 0%, rgba(255, 92, 26, 0.35), transparent 42%),
    radial-gradient(ellipse at 100% 100%, rgba(27, 168, 255, 0.32), transparent 46%),
    linear-gradient(180deg, rgba(17, 14, 48, 0.4), rgba(8, 12, 32, 0.2));
  border-top: 4px solid transparent;
  border-image: var(--spectrum) 1;
}

.signup-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.signup-copy .eyebrow {
  color: #ffb089;
}

.signup-copy h2 {
  margin: 22px 0 0;
  font-size: clamp(38px, 4.2vw, 56px);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.08;
}

.signup-copy h2 span {
  background: var(--spectrum);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.signup-copy > p:not(.eyebrow) {
  max-width: 400px;
  margin-top: 24px;
  color: #d0d8ee;
  font-size: 16px;
}

.signup-copy ul {
  margin: 26px 0 32px;
  padding: 0;
  list-style: none;
}

.signup-copy li {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  color: #e8edf8;
  font-size: 14px;
}

.signup-copy li svg {
  flex: none;
  color: #ff986b;
}

.whatsapp-cta {
  max-width: 100%;
  height: auto;
  min-height: 44px;
  margin-bottom: 24px;
  padding: 12px 18px;
  text-align: center;
}

.whatsapp-cta svg {
  flex: none;
}

.development-note {
  max-width: 420px;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid rgba(255, 210, 74, 0.28);
  background: rgba(255, 210, 74, 0.08);
}

.development-note strong {
  display: block;
  margin-bottom: 6px;
}

.development-note p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.interest-form {
  position: relative;
  overflow: hidden;
  color: var(--navy-0);
  background: #fff;
  border-radius: 22px;
  padding: 32px 32px 26px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.4), 0 24px 60px rgba(255, 45, 120, 0.16), 0 10px 40px rgba(27, 168, 255, 0.16);
}

.interest-form::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: var(--spectrum);
}

.interest-form h3,
.form-success h3 {
  margin: 8px 0 6px;
  font-size: 25px;
  letter-spacing: -0.6px;
}

.form-intro {
  margin: 0 0 22px;
  color: #5b6578;
}

.form-fields {
  display: grid;
  gap: 16px;
}

.form-field label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 600;
}

.form-field label span {
  color: #7d858d;
  font-size: 12px;
  font-weight: 400;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  border: 1.5px solid #d8dee8;
  border-radius: 12px;
  padding: 12px 14px;
  background: #f7f9ff;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-field textarea {
  min-height: 96px;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: #ff5c1a;
  box-shadow: 0 0 0 4px rgba(255, 92, 26, 0.15);
}

.field-error {
  margin: 6px 0 0;
  color: #c81e4a;
  font-size: 12px;
}

.honey-field {
  position: absolute;
  left: -9999px;
  height: 0;
  overflow: hidden;
}

.consent-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 18px 0 8px;
  font-size: 13px;
  line-height: 1.45;
}

.consent-row input {
  margin-top: 3px;
  accent-color: #ff5c1a;
}

.submit-button {
  width: 100%;
  margin-top: 14px;
  min-height: 52px;
  padding: 14px 18px;
}

.privacy-note {
  margin: 14px 0 0;
  color: #6b7384;
  font-size: 12px;
  line-height: 1.5;
}

.privacy-note a {
  color: #d44712;
  font-weight: 700;
  text-decoration: underline;
}

.form-success {
  padding: 28px 8px 18px;
  text-align: center;
}

.success-burst {
  width: 84px;
  height: 84px;
  margin: 8px auto 18px;
  border-radius: 50%;
  background: var(--spectrum);
  box-shadow: 0 0 0 10px rgba(255, 92, 26, 0.12), 0 0 0 20px rgba(27, 168, 255, 0.08);
}

.form-success p {
  color: #5b6578;
}

/* Footer */
.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 42px 0 48px;
  border-top: 1px solid var(--line);
}

.site-footer p,
.footer-end span {
  color: var(--muted);
  font-size: 14px;
}

.footer-end {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.footer-end a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
}

@media (max-width: 980px) {
  .hero,
  .signup-grid,
  .module-detail.is-active,
  .calendar-strip,
  .section-heading,
  .pain-grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .header-panel {
    display: none;
    flex-basis: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    margin: 0 0 12px;
    padding: 8px 0 4px;
    border-top: 1px solid var(--line);
  }

  .site-header.is-open .header-panel {
    display: flex;
  }

  .header-inner {
    flex-wrap: wrap;
    gap: 12px 16px;
  }

  nav {
    flex-direction: column;
    gap: 0;
  }

  nav a {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 8px 4px;
  }

  .header-cta {
    width: 100%;
    margin-top: 6px;
  }

  .hero {
    gap: 32px;
    padding-top: 36px;
  }

  .hero-bottom,
  .visual-caption,
  .concept-heading {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .calendar-strip a {
    justify-self: start;
    white-space: normal;
  }

  .tab-list button {
    flex: 1 1 auto;
    justify-content: center;
  }

  .primary-cta {
    width: 100%;
  }

  .footer-end {
    align-items: flex-start;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(1180px, calc(100% - 28px));
  }

  .wordmark {
    font-size: 22px;
  }

  .hero h1 {
    letter-spacing: -1.4px;
    font-size: clamp(30px, 9vw, 40px);
  }

  .hero-conversion {
    font-size: clamp(20px, 6vw, 24px);
  }

  .section-space {
    padding-block: 64px;
  }

  .signup-section {
    padding-block: 64px;
  }

  .interest-form {
    padding: 24px 18px 20px;
  }

  .form-field input,
  .form-field textarea,
  .form-field select {
    font-size: 16px;
  }

  .module-detail {
    padding: 28px 20px;
  }

  .pain-card > p {
    min-height: 0;
  }

  .concept-row {
    font-size: 16px;
    gap: 12px;
  }

  .submit-button {
    white-space: normal;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  html {
    scroll-behavior: auto;
  }
}
