:root {
  --orange: #ff7a1a;
  --orange-dark: #d9580d;
  --orange-deep: #9a3412;
  --orange-soft: #fff0e5;
  --ink: #1f2933;
  --ink-2: #3f4b5a;
  --muted: #677384;
  --line: #e6e9ee;
  --white: #ffffff;
  --blue: #2563eb;
  --green: #10b981;
  --surface: rgba(255, 255, 255, 0.82);
  --shadow: 0 24px 70px rgba(31, 41, 51, 0.12);
  --shadow-strong: 0 34px 110px rgba(31, 41, 51, 0.2);
  --radius: 22px;
  --max: 1220px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 247, 237, 0.58), transparent 460px),
    #fbfcfe;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
}

body.nav-open {
  overflow: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 54px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(230, 233, 238, 0.82);
  backdrop-filter: blur(18px);
  transition:
    box-shadow 180ms ease,
    background 180ms ease;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 850;
  letter-spacing: 0;
  white-space: nowrap;
}

.site-header:hover {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 35px rgba(31, 41, 51, 0.08);
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--orange), #ff9d3d);
  border-radius: 50%;
  box-shadow: 0 12px 24px rgba(255, 122, 26, 0.28);
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2vw, 26px);
  color: var(--ink-2);
  font-size: 0.92rem;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  padding: 10px 0;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--orange);
  border-radius: 99px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 850;
  line-height: 1;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.header-cta,
.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  box-shadow: 0 18px 34px rgba(255, 122, 26, 0.34);
}

.btn-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.header-cta:hover,
.btn:hover {
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  justify-self: end;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 999px;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
  border-radius: 99px;
}

.section-band,
.section,
.final-cta {
  position: relative;
  overflow: hidden;
}

.section-inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  min-height: 100vh;
  padding: 122px 0 76px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    radial-gradient(circle at 78% 20%, rgba(255, 122, 26, 0.26), transparent 30%),
    linear-gradient(90deg, #111827 0%, #1f2933 43%, #f7efe6 43.2%, #ffffff 100%);
  background-size:
    46px 46px,
    46px 46px,
    auto,
    auto;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.78fr) minmax(480px, 1.22fr);
  gap: clamp(34px, 5vw, 66px);
  align-items: center;
}

.eyebrow {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-labels {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 24px;
}

.company-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin: 0;
  padding: 0 13px;
  color: var(--white);
  background: rgba(255, 122, 26, 0.18);
  border: 1px solid rgba(255, 122, 26, 0.42);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.08em;
}

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

h1 {
  max-width: 690px;
  margin-bottom: 22px;
  color: var(--white);
  font-size: clamp(2.35rem, 4.8vw, 4.65rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h1 span,
h1 strong {
  display: block;
}

h1 span {
  color: var(--white);
  font-weight: 900;
}

h1 strong {
  margin-top: 10px;
  color: #ffb86b;
  font-weight: 900;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4.3vw, 3.55rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
  line-height: 1.25;
}

.hero-text,
.lead,
.section-copy p,
.final-cta p {
  color: var(--muted);
  font-size: clamp(1.02rem, 1.6vw, 1.22rem);
}

.hero .hero-text {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.78);
}

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

.hero-metrics {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 30px;
  max-width: 520px;
}

.hero-metrics div {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 14px 16px;
  background: rgba(17, 24, 39, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 16px;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(16px);
}

.hero-metrics strong,
.hero-metrics span {
  display: block;
}

.hero-metrics strong {
  margin-bottom: 4px;
  color: var(--white);
  font-size: 0.98rem;
}

.hero-metrics span {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.82rem;
  font-weight: 700;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.trust-row span,
.target-row span,
.benefits span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  color: var(--ink-2);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 800;
}

.hero .trust-row span {
  color: var(--white);
  background: rgba(17, 24, 39, 0.66);
  border-color: rgba(255, 255, 255, 0.24);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(14px);
}

.hero-visual {
  position: relative;
  min-height: 610px;
}

.screen,
.device,
.feature-card,
.demo-card,
.step,
.section-cta,
.demo-note {
  background: var(--surface);
  border: 1px solid rgba(230, 233, 238, 0.95);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.visual-halo {
  position: absolute;
  inset: 18px 0 18px 22px;
  background:
    linear-gradient(135deg, rgba(255, 122, 26, 0.36), rgba(16, 185, 129, 0.16)),
    #182230;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 34px;
  filter: blur(0);
  transform: rotate(1deg);
}

.screen-main {
  position: absolute;
  right: 0;
  top: 34px;
  width: min(100%, 700px);
  min-height: 470px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.96)),
    #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 22px;
  box-shadow: var(--shadow-strong);
}

.screen-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  padding: 2px 4px 0;
}

.screen-top span {
  width: 14px;
  height: 14px;
  background: var(--orange);
  border-radius: 50%;
  box-shadow:
    22px 0 0 #ffc266,
    44px 0 0 var(--green);
}

.screen-top strong {
  margin-left: 54px;
}

.mock-shell {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 16px;
  min-height: 390px;
}

.mock-sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 14px 10px;
  background: linear-gradient(180deg, #111827, #202a37);
  border-radius: 16px;
}

.mock-sidebar b {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--white);
  background: var(--orange);
  border-radius: 12px;
  font-size: 0.74rem;
}

.mock-sidebar i {
  display: block;
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.16);
  border-radius: 10px;
}

.mock-content {
  min-width: 0;
}

.mock-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
  padding: 14px;
  background: #fff7ed;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.mock-toolbar small,
.mock-toolbar strong {
  display: block;
}

.mock-toolbar small {
  color: var(--muted);
  font-weight: 800;
}

.mock-toolbar button {
  min-height: 38px;
  padding: 0 14px;
  color: var(--white);
  background: var(--orange);
  border: 0;
  border-radius: 999px;
  font-weight: 900;
}

.screen-top em {
  margin-left: auto;
  padding: 6px 11px;
  color: #067647;
  background: #dcfce7;
  border-radius: 999px;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 900;
}

.vote-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) repeat(3, 76px);
  gap: 13px;
  align-items: stretch;
  padding: 16px;
  background:
    linear-gradient(135deg, rgba(255, 122, 26, 0.16), transparent 44%),
    #202a37;
  border-radius: 20px;
}

.vote-panel small {
  display: block;
  color: #aab6c5;
  font-weight: 800;
}

.vote-panel strong {
  display: block;
  margin-top: 6px;
  color: var(--white);
}

.score {
  display: grid;
  min-height: 76px;
  place-items: center;
  color: var(--white);
  border-radius: 17px;
  font-size: 1.55rem;
  font-weight: 950;
}

.score.yes {
  background: var(--green);
}

.score.no {
  background: #ef4444;
}

.score.abst {
  background: var(--blue);
}

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

.member-grid span {
  padding: 14px;
  border-radius: 16px;
  font-weight: 850;
}

.member-grid .ok {
  color: #067647;
  background: #dcfce7;
}

.member-grid .warn {
  color: #9a3412;
  background: #ffedd5;
}

.member-grid .no {
  color: #991b1b;
  background: #fee2e2;
}

.device {
  position: absolute;
  border-radius: 24px;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.device:hover,
.feature-card:hover,
.demo-card:hover,
.step:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 90px rgba(31, 41, 51, 0.16);
}

.tablet {
  left: 0;
  bottom: 28px;
  width: 232px;
  padding: 18px;
}

.tablet strong,
.phone strong {
  display: block;
  margin-top: 10px;
}

.tablet p,
.phone p {
  margin: 6px 0 14px;
  color: var(--muted);
}

.tablet button {
  width: 100%;
  min-height: 42px;
  color: var(--white);
  border: 0;
  background: var(--green);
  border-radius: 14px;
  font-weight: 900;
}

.device-header {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 98px;
  padding: 14px;
  background:
    linear-gradient(135deg, rgba(255, 122, 26, 0.82), rgba(37, 99, 235, 0.72)),
    #f3f6fa;
  border-radius: 16px;
}

.device-header span,
.device-header strong {
  color: var(--white);
}

.device-header span {
  font-size: 0.76rem;
  font-weight: 800;
}

.device-header strong {
  margin: 2px 0 0;
}

.phone {
  right: 46px;
  bottom: 0;
  width: 164px;
  padding: 15px;
}

.phone span {
  display: block;
  height: 120px;
  background:
    linear-gradient(180deg, rgba(31, 41, 51, 0.86), rgba(31, 41, 51, 0.7)),
    repeating-linear-gradient(90deg, transparent 0 16px, rgba(255, 255, 255, 0.12) 16px 18px);
  border-radius: 18px;
}

.section {
  padding: clamp(82px, 11vw, 132px) 0;
}

.muted {
  background:
    linear-gradient(180deg, #f6f8fb, #eef3f8);
}

.proof-strip {
  padding: 18px 0;
  background: #182230;
}

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

.proof-grid span {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0 16px;
  color: #dbe4ef;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  font-size: 0.88rem;
  font-weight: 800;
}

.split,
.benefit-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(28px, 6vw, 74px);
  align-items: start;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.feature-grid,
.demo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.feature-card,
.demo-card,
.step {
  border-radius: var(--radius);
}

.feature-card {
  position: relative;
  min-height: 238px;
  padding: 24px;
  overflow: hidden;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.feature-card::after {
  position: absolute;
  right: -34px;
  bottom: -34px;
  width: 96px;
  height: 96px;
  content: "";
  background: rgba(255, 122, 26, 0.1);
  border-radius: 50%;
}

.feature-card:hover {
  border-color: rgba(255, 122, 26, 0.45);
}

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

.icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 950;
}

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

.step {
  position: relative;
  min-height: 220px;
  padding: 28px;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.step span {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 30px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--ink), #111827);
  border-radius: 17px;
  font-weight: 950;
}

.orange-band {
  color: var(--white);
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 255, 255, 0.18), transparent 26%),
    linear-gradient(135deg, #f97316, #c2410c);
}

.orange-band .eyebrow,
.orange-band p {
  color: rgba(255, 255, 255, 0.82);
}

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

.benefits span {
  color: var(--white);
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.22);
}

.demo-card {
  padding: 16px;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.mini-screen {
  min-height: 220px;
  margin-bottom: 18px;
  padding: 18px;
  overflow: hidden;
  color: var(--white);
  border-radius: 18px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.mini-screen span {
  display: block;
  width: 42px;
  height: 6px;
  margin-bottom: 36px;
  background: rgba(255, 255, 255, 0.44);
  border-radius: 999px;
}

.mini-screen strong {
  display: block;
  font-size: 1.2rem;
}

.mini-screen p {
  color: rgba(255, 255, 255, 0.78);
}

.mini-screen button,
.vote-buttons i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 15px;
  color: var(--ink);
  background: var(--white);
  border: 0;
  border-radius: 999px;
  font-style: normal;
  font-weight: 900;
}

.presidencia {
  background: linear-gradient(135deg, #1f2933, #475569);
}

.vereador {
  background: linear-gradient(135deg, #f97316, #ea580c);
}

.telao {
  background: linear-gradient(135deg, #111827, #2563eb);
}

.resultado {
  background: linear-gradient(135deg, #0f766e, #10b981);
}

.vote-buttons {
  display: flex;
  gap: 10px;
}

.mini-lines {
  display: grid;
  gap: 8px;
  margin: 20px 0;
}

.mini-lines i {
  display: block;
  height: 9px;
  background: rgba(255, 255, 255, 0.26);
  border-radius: 999px;
}

.mini-lines i:nth-child(2) {
  width: 76%;
}

.mini-lines i:nth-child(3) {
  width: 58%;
}

.mini-status {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  margin-top: 18px;
  padding: 0 12px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
}

.screen-votes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.screen-votes b {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 10px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  font-size: 0.78rem;
}

.section-cta,
.demo-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 34px;
  padding: 22px;
  border-radius: 22px;
}

.section-cta strong,
.section-cta span,
.demo-note strong,
.demo-note span {
  display: block;
}

.section-cta strong,
.demo-note strong {
  margin-bottom: 4px;
  font-size: 1.06rem;
}

.section-cta span,
.demo-note span {
  color: var(--muted);
}

.bar {
  width: 88%;
  height: 12px;
  margin-top: 32px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  box-shadow: 42px 0 0 rgba(255, 255, 255, 0.36);
}

.result-ring {
  display: grid;
  width: 86px;
  height: 86px;
  margin-top: 22px;
  place-items: center;
  border: 9px solid rgba(255, 255, 255, 0.9);
  border-left-color: rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  font-weight: 950;
}

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

.target-row span {
  min-height: 54px;
  padding: 0 22px;
  font-size: 1rem;
}

.final-cta {
  padding: clamp(78px, 12vw, 136px) 0;
  color: var(--white);
  text-align: center;
  background:
    linear-gradient(rgba(18, 24, 33, 0.78), rgba(18, 24, 33, 0.93)),
    radial-gradient(circle at 50% 18%, rgba(255, 122, 26, 0.58), transparent 36%),
    repeating-linear-gradient(90deg, transparent 0 58px, rgba(255, 255, 255, 0.035) 58px 59px),
    #121821;
}

.final-cta .section-inner {
  max-width: 850px;
}

.final-cta .eyebrow,
.final-cta p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.btn-email {
  color: var(--white);
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.site-footer {
  padding: 54px 0 24px;
  color: #cbd5e1;
  background: #121821;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.8fr;
  gap: 40px;
}

.footer-brand {
  color: var(--white);
}

.site-footer p {
  max-width: 500px;
  margin: 20px 0 0;
  color: #9aa8ba;
}

.site-footer h3 {
  color: var(--white);
  font-size: 1rem;
}

.site-footer a:not(.brand) {
  display: block;
  margin-top: 10px;
  color: #cbd5e1;
}

.copyright {
  width: min(var(--max), calc(100% - 40px));
  margin: 38px auto 0;
  padding-top: 24px;
  color: #8492a6;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.92rem;
}

.legal-line {
  display: block;
  margin-top: 8px;
  color: #6f7f95;
  font-size: 0.82rem;
}

.floating-cta {
  position: fixed;
  z-index: 45;
  right: 22px;
  bottom: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-radius: 999px;
  box-shadow: 0 22px 48px rgba(217, 88, 13, 0.34);
  font-weight: 950;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.floating-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 26px 58px rgba(217, 88, 13, 0.44);
}

.reveal {
  opacity: 0;
  transform: translateY(26px) scale(0.985);
  transition:
    opacity 720ms ease,
    transform 720ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .site-nav.is-open {
    position: fixed;
    top: 76px;
    right: 14px;
    left: 14px;
    display: grid;
    justify-content: stretch;
    gap: 4px;
    padding: 18px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open a {
    padding: 13px 10px;
  }

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

  .hero {
    min-height: auto;
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
      linear-gradient(180deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
      radial-gradient(circle at 82% 16%, rgba(255, 122, 26, 0.26), transparent 34%),
      linear-gradient(180deg, #111827 0%, #1f2933 64%, #f7efe6 64.2%, #ffffff 100%);
    background-size:
      46px 46px,
      46px 46px,
      auto,
      auto;
  }

  .hero-visual {
    min-height: 560px;
  }

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

@media (max-width: 700px) {
  .section-inner {
    width: min(100% - 28px, var(--max));
  }

  .site-header {
    min-height: 68px;
    padding: 12px 14px;
  }

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

  .site-nav.is-open {
    top: 68px;
  }

  .hero {
    padding-top: 104px;
    background:
      radial-gradient(circle at 78% 10%, rgba(255, 122, 26, 0.25), transparent 34%),
      linear-gradient(180deg, #111827 0%, #1f2933 68%, #f7efe6 68.2%, #ffffff 100%);
  }

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

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

  .hero-labels {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-metrics div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .btn {
    width: 100%;
  }

  .hero-visual {
    min-height: 620px;
  }

  .screen-main {
    top: 0;
    padding: 16px;
  }

  .vote-panel {
    grid-template-columns: 1fr;
  }

  .member-grid,
  .feature-grid,
  .demo-grid,
  .steps,
  .proof-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-metrics,
  .mock-shell {
    grid-template-columns: 1fr;
  }

  .mock-sidebar {
    display: none;
  }

  .mock-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .section-cta,
  .demo-note {
    align-items: stretch;
    flex-direction: column;
  }

  .tablet {
    bottom: 60px;
    width: 210px;
  }

  .phone {
    right: 0;
    bottom: 12px;
  }

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

  .floating-cta {
    right: 14px;
    bottom: 14px;
    left: 14px;
  }
}

@media (orientation: landscape) and (max-height: 560px) {
  .hero {
    min-height: auto;
    padding-top: 96px;
  }

  .hero-grid {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .hero-visual {
    min-height: 420px;
  }

  .screen-main {
    top: 0;
    min-height: 320px;
  }

  .tablet,
  .phone {
    display: none;
  }
}

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

  .reveal,
  .header-cta,
  .btn,
  .floating-cta,
  .device,
  .feature-card,
  .demo-card,
  .step {
    transition: none;
  }
}
