:root {
  --ink: #111318;
  --ink-soft: #20242d;
  --red: #d80f20;
  --red-dark: #af0715;
  --green: #087a3c;
  --green-dark: #066331;
  --cream: #f8f6f1;
  --paper: #ffffff;
  --line: #e6e7eb;
  --muted: #5d6470;
  --muted-light: #aeb5c1;
  --focus: #f8b500;
  --shadow-soft: 0 18px 50px rgba(17, 19, 24, 0.08);
  --shadow-strong: 0 28px 80px rgba(17, 19, 24, 0.16);
  --radius-small: 12px;
  --radius-medium: 20px;
  --radius-large: 30px;
  --shell: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family:
    "Segoe UI",
    Inter,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

button,
input,
select {
  font: inherit;
}

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

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--ink);
  color: #ffffff;
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(17, 19, 24, 0.08);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  min-width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
}

.brand-logo {
  width: auto;
  height: 35px;
}

.brand-divider {
  width: 1px;
  height: 27px;
  background: #d9dce2;
}

.brand-product {
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: -0.01em;
}

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

.header-nav a,
.login-link {
  position: relative;
  color: #404650;
  font-size: 0.87rem;
  font-weight: 700;
  text-decoration: none;
}

.header-nav a::after,
.login-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.header-nav a:hover::after,
.header-nav a:focus-visible::after,
.login-link:hover::after,
.login-link:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 13px;
  cursor: pointer;
  font-weight: 850;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease;
}

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

.button--compact {
  min-height: 43px;
  padding: 10px 15px;
  border-radius: 11px;
  font-size: 0.84rem;
}

.button--large {
  min-height: 58px;
  padding: 15px 23px;
}

.button--whatsapp {
  background: var(--green);
  color: #ffffff;
  box-shadow: 0 11px 25px rgba(8, 122, 60, 0.2);
}

.button--whatsapp:hover {
  background: var(--green-dark);
  box-shadow: 0 15px 32px rgba(8, 122, 60, 0.27);
}

.button--whatsapp img {
  width: 22px;
  height: 22px;
  filter: brightness(0) invert(1);
}

.button--secondary {
  border-color: #d3d6dc;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
}

.button--secondary:hover {
  border-color: var(--ink);
  background: #ffffff;
  box-shadow: 0 12px 25px rgba(17, 19, 24, 0.09);
}

.button--light {
  background: #ffffff;
  color: var(--ink);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
}

.button--light:hover {
  background: #f5f5f5;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 8%, rgba(216, 15, 32, 0.12), transparent 30%),
    linear-gradient(135deg, #fbfaf7 0%, #ffffff 48%, #f7f4ed 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(17, 19, 24, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 19, 24, 0.025) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, #000, transparent 82%);
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(4px);
}

.hero-glow--one {
  top: 6%;
  left: -150px;
  width: 340px;
  height: 340px;
  background: rgba(216, 15, 32, 0.06);
}

.hero-glow--two {
  right: 12%;
  bottom: -170px;
  width: 420px;
  height: 420px;
  background: rgba(8, 122, 60, 0.06);
}

.hero-grid {
  position: relative;
  z-index: 1;
  min-height: 690px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(440px, 0.98fr);
  align-items: center;
  gap: clamp(48px, 7vw, 90px);
  padding-block: 84px 96px;
}

.hero-copy {
  max-width: 650px;
}

.eyebrow,
.section-label {
  margin: 0 0 16px;
  color: var(--red);
  font-size: 0.77rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--red);
  box-shadow: 0 0 0 6px rgba(216, 15, 32, 0.11);
}

.hero h1 {
  max-width: 700px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.7rem, 5.3vw, 5rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.hero h1 span {
  display: block;
  color: var(--red);
}

.hero-lead {
  max-width: 610px;
  margin: 27px 0 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.7vw, 1.18rem);
  line-height: 1.7;
}

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

.hero-points {
  margin: 28px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 11px 22px;
  list-style: none;
}

.hero-points li {
  position: relative;
  padding-left: 22px;
  color: #444a54;
  font-size: 0.88rem;
  font-weight: 750;
}

.hero-points li::before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  color: var(--green);
  font-weight: 950;
}

.product-preview {
  position: relative;
  max-width: 540px;
  justify-self: end;
}

.preview-window {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(17, 19, 24, 0.1);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: var(--shadow-strong);
  transform: rotate(1.2deg);
}

.preview-bar {
  height: 51px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 17px;
  border-bottom: 1px solid #e9eaee;
  background: #f4f4f5;
}

.preview-bar > span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #c8cbd1;
}

.preview-bar > span:first-child {
  background: #ee5965;
}

.preview-bar > span:nth-child(2) {
  background: #f4ba43;
}

.preview-bar > span:nth-child(3) {
  background: #41b66a;
}

.preview-address {
  max-width: 230px;
  margin-left: 14px;
  overflow: hidden;
  color: #737985;
  font-size: 0.7rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.preview-body {
  min-height: 465px;
  padding: 38px 42px 40px;
  background:
    radial-gradient(circle at 100% 0, rgba(216, 15, 32, 0.08), transparent 35%),
    #ffffff;
}

.preview-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 850;
}

.preview-logo {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--red);
  color: #ffffff;
  font-weight: 950;
}

.preview-kicker {
  margin: 45px 0 11px;
  color: var(--red);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.preview-body h2 {
  max-width: 360px;
  margin: 0;
  font-size: clamp(1.55rem, 3vw, 2.18rem);
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.preview-body > p:not(.preview-kicker) {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.preview-options {
  margin-top: 26px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.preview-options span {
  min-height: 56px;
  display: grid;
  place-items: center;
  padding: 10px;
  border: 1px solid #dedfe3;
  border-radius: 12px;
  color: #606671;
  font-size: 0.68rem;
  font-weight: 750;
  text-align: center;
}

.preview-options .is-selected {
  border-color: var(--red);
  background: rgba(216, 15, 32, 0.055);
  color: var(--red-dark);
}

.preview-button {
  min-height: 52px;
  margin-top: 12px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--red);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 850;
}

.preview-safe {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: #747a84;
  font-size: 0.64rem;
}

.preview-safe span {
  color: var(--green);
  font-weight: 900;
}

.floating-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px 15px;
  border: 1px solid rgba(17, 19, 24, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 38px rgba(17, 19, 24, 0.16);
}

.floating-card--domain {
  top: 90px;
  right: -42px;
}

.floating-card--control {
  bottom: 46px;
  left: -72px;
}

.floating-card small,
.floating-card strong {
  display: block;
  line-height: 1.3;
}

.floating-card small {
  color: #727884;
  font-size: 0.61rem;
}

.floating-card strong {
  margin-top: 2px;
  color: var(--ink);
  font-size: 0.72rem;
}

.floating-icon {
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(8, 122, 60, 0.1);
  color: var(--green);
  font-weight: 900;
}

.floating-icon--red {
  background: rgba(216, 15, 32, 0.09);
  color: var(--red);
}

.proof-strip {
  border-top: 1px solid #ece7df;
  border-bottom: 1px solid #ece7df;
  background: var(--cream);
}

.proof-grid {
  min-height: 118px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
}

.proof-grid > div {
  padding: 25px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.proof-grid > div + div {
  border-left: 1px solid #e3ddd3;
}

.proof-grid strong,
.proof-grid span {
  display: block;
}

.proof-grid strong {
  font-size: 0.94rem;
  letter-spacing: -0.01em;
}

.proof-grid span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.5;
}

.section {
  padding-block: clamp(82px, 10vw, 132px);
}

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

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.control-intro h2,
.security-copy h2,
.contact-copy h2,
.faq-intro h2 {
  margin: 0;
  font-size: clamp(2.15rem, 4.4vw, 3.75rem);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 1.04;
}

.section-heading > p:last-child,
.control-intro > p,
.security-copy > p,
.contact-copy > p,
.faq-intro > p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1rem;
}

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

.benefit-card {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-medium);
  background: #ffffff;
  box-shadow: 0 14px 35px rgba(17, 19, 24, 0.05);
}

.benefit-card::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -90px;
  width: 190px;
  height: 190px;
  border: 26px solid rgba(216, 15, 32, 0.045);
  border-radius: 999px;
}

.benefit-card--featured {
  border-color: var(--ink);
  background: var(--ink);
  color: #ffffff;
  box-shadow: var(--shadow-soft);
  transform: translateY(-14px);
}

.benefit-card--featured::after {
  border-color: rgba(255, 255, 255, 0.06);
}

.card-number {
  color: var(--red);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.benefit-card--featured .card-number {
  color: #ff6674;
}

.benefit-card h3 {
  max-width: 260px;
  margin: 82px 0 0;
  font-size: 1.42rem;
  letter-spacing: -0.035em;
  line-height: 1.18;
}

.benefit-card p {
  position: relative;
  z-index: 1;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.benefit-card--featured p {
  color: #c5cad3;
}

.control-section {
  overflow: hidden;
  background: var(--cream);
}

.control-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.76fr) minmax(0, 1.24fr);
  align-items: start;
  gap: clamp(54px, 8vw, 104px);
}

.control-intro {
  position: sticky;
  top: 124px;
}

.text-link {
  width: fit-content;
  margin-top: 30px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--red-dark);
  font-weight: 850;
  text-decoration: none;
}

.text-link span {
  transition: transform 160ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.control-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.control-card {
  min-height: 190px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  gap: 31px;
  border: 1px solid #e3ded5;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.control-card:hover {
  border-color: rgba(216, 15, 32, 0.28);
  box-shadow: 0 16px 36px rgba(17, 19, 24, 0.06);
  transform: translateY(-3px);
}

.control-icon {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(216, 15, 32, 0.08);
  color: var(--red);
  font-size: 0.69rem;
  font-weight: 950;
}

.control-card h3 {
  margin: 0;
  font-size: 1.04rem;
  letter-spacing: -0.02em;
}

.control-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.83rem;
  line-height: 1.55;
}

.process-section {
  background: #ffffff;
}

.process-list {
  position: relative;
  margin: 58px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  list-style: none;
}

.process-list::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 27px;
  right: 16%;
  left: 16%;
  height: 1px;
  background: #d9dce1;
}

.process-list li {
  position: relative;
  z-index: 1;
}

.process-number {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border: 7px solid #ffffff;
  border-radius: 999px;
  background: var(--red);
  color: #ffffff;
  box-shadow: 0 0 0 1px rgba(216, 15, 32, 0.16);
  font-size: 0.84rem;
  font-weight: 900;
}

.process-list li > div {
  padding: 27px 32px 0 0;
}

.process-label {
  margin: 0 0 8px;
  color: var(--red);
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.process-list h3 {
  margin: 0;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
  line-height: 1.25;
}

.process-list li p:last-child {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.process-cta {
  margin-top: 66px;
  padding: 25px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  border: 1px solid #e4e5e8;
  border-radius: 18px;
  background: #fafafa;
}

.process-cta strong,
.process-cta span {
  display: block;
}

.process-cta strong {
  font-size: 1.05rem;
}

.process-cta span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.82rem;
}

.security-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 50%, rgba(216, 15, 32, 0.14), transparent 30%),
    var(--ink);
  color: #ffffff;
}

.security-layout {
  display: grid;
  grid-template-columns: minmax(380px, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(70px, 10vw, 132px);
}

.security-visual {
  position: relative;
  min-height: 470px;
  display: grid;
  place-items: center;
}

.security-orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 999px;
}

.security-orbit--outer {
  width: 430px;
  height: 430px;
}

.security-orbit--inner {
  width: 290px;
  height: 290px;
  border-color: rgba(216, 15, 32, 0.32);
}

.security-lock {
  position: relative;
  z-index: 2;
  width: 122px;
  height: 105px;
  margin-top: 45px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 28px;
  background: linear-gradient(145deg, #2d313b, #17191f);
  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.lock-shackle {
  position: absolute;
  z-index: -1;
  top: -68px;
  width: 77px;
  height: 86px;
  border: 15px solid #747b88;
  border-bottom: 0;
  border-radius: 44px 44px 0 0;
}

.lock-body {
  color: #ff5364;
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.secret-pill {
  position: absolute;
  z-index: 3;
  min-width: 190px;
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 13px;
  background: rgba(38, 42, 51, 0.9);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.26);
}

.secret-pill--api {
  top: 88px;
  left: -10px;
}

.secret-pill--turnstile {
  right: -20px;
  bottom: 76px;
}

.secret-pill span,
.secret-pill strong {
  display: block;
}

.secret-pill span {
  color: #9299a6;
  font-size: 0.57rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.secret-pill strong {
  margin-top: 5px;
  color: #ffffff;
  font-size: 0.76rem;
}

.section-label--light {
  color: #ff6674;
}

.security-copy h2 {
  max-width: 600px;
}

.security-copy > p {
  max-width: 610px;
  color: #bac0ca;
}

.security-list {
  margin: 30px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
  list-style: none;
}

.security-list li {
  display: grid;
  grid-template-columns: 27px minmax(0, 1fr);
  align-items: start;
  color: #e0e3e8;
  font-size: 0.91rem;
}

.security-list li > span {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(81, 207, 127, 0.12);
  color: #6ee69a;
  font-size: 0.7rem;
  font-weight: 900;
}

.security-list code {
  padding: 2px 5px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  font-family: Consolas, "Courier New", monospace;
  font-size: 0.86em;
}

.contact-section {
  background: var(--cream);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(440px, 1.15fr);
  align-items: start;
  gap: clamp(50px, 8vw, 100px);
}

.contact-copy {
  padding-top: 18px;
}

.contact-note {
  margin-top: 30px;
  padding: 17px 18px;
  display: grid;
  grid-template-columns: 27px minmax(0, 1fr);
  gap: 11px;
  border: 1px solid #e0d8cc;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.62);
}

.contact-note > span {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--ink);
  color: #ffffff;
  font-family: Georgia, serif;
  font-size: 0.78rem;
  font-weight: 700;
}

.contact-note p {
  margin: 0;
  color: var(--muted);
  font-size: 0.81rem;
  line-height: 1.55;
}

.contact-form {
  padding: clamp(25px, 4vw, 38px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 16px;
  border: 1px solid #e0dcd4;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.field {
  min-width: 0;
  display: grid;
  gap: 8px;
}

.field:nth-of-type(3),
.field:nth-of-type(4) {
  grid-column: 1 / -1;
}

.field label {
  color: #2c3139;
  font-size: 0.78rem;
  font-weight: 800;
}

.field label span {
  margin-left: 4px;
  color: #858b95;
  font-size: 0.67rem;
  font-weight: 650;
}

.field input,
.field select {
  width: 100%;
  min-height: 51px;
  padding: 12px 14px;
  border: 1px solid #d8dae0;
  border-radius: 11px;
  background: #fbfbfc;
  color: var(--ink);
  font-size: 0.87rem;
  transition:
    border-color 150ms ease,
    box-shadow 150ms ease,
    background-color 150ms ease;
}

.field input:hover,
.field select:hover {
  border-color: #b9bdc6;
}

.field input:focus,
.field select:focus {
  border-color: var(--red);
  outline: 0;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(216, 15, 32, 0.1);
}

.field input::placeholder {
  color: #9a9fa8;
}

.form-submit,
.form-privacy,
.form-status {
  grid-column: 1 / -1;
}

.form-submit {
  width: 100%;
  margin-top: 4px;
  border: 0;
}

.form-privacy,
.form-status {
  margin: 0;
  color: #737984;
  font-size: 0.7rem;
  text-align: center;
}

.form-status:empty {
  display: none;
}

.form-status[data-state="error"] {
  color: #9f1220;
  font-weight: 750;
}

.faq-section {
  background: #ffffff;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(270px, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: clamp(55px, 9vw, 112px);
}

.faq-intro {
  position: sticky;
  top: 124px;
}

.login-card {
  margin-top: 31px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  border: 1px solid #e0e2e7;
  border-radius: 14px;
  text-decoration: none;
  transition:
    border-color 160ms ease,
    transform 160ms ease,
    box-shadow 160ms ease;
}

.login-card:hover {
  border-color: var(--red);
  box-shadow: 0 12px 28px rgba(17, 19, 24, 0.07);
  transform: translateY(-2px);
}

.login-card small,
.login-card strong {
  display: block;
}

.login-card small {
  color: var(--muted);
  font-size: 0.67rem;
}

.login-card strong {
  margin-top: 2px;
  font-size: 0.91rem;
}

.login-card > span:last-child {
  color: var(--red);
  font-size: 1.15rem;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 25px 50px 25px 0;
  cursor: pointer;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 850;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 21px;
  right: 3px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #f2f3f5;
  color: var(--ink);
  font-size: 1.1rem;
  font-weight: 500;
  transition:
    transform 160ms ease,
    background-color 160ms ease,
    color 160ms ease;
}

.faq-list details[open] summary::after {
  background: var(--red);
  color: #ffffff;
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 690px;
  margin: -5px 52px 25px 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding-block: 74px;
  background: var(--red);
  color: #ffffff;
}

.final-cta::before,
.final-cta::after {
  content: "";
  position: absolute;
  border: 35px solid rgba(255, 255, 255, 0.07);
  border-radius: 999px;
}

.final-cta::before {
  top: -130px;
  left: -80px;
  width: 290px;
  height: 290px;
}

.final-cta::after {
  right: -90px;
  bottom: -190px;
  width: 360px;
  height: 360px;
}

.final-cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.final-cta h2 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  letter-spacing: -0.055em;
  line-height: 1.05;
}

.final-actions {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.final-login {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 800;
  text-underline-offset: 4px;
}

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

  .header-actions {
    margin-left: auto;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.88fr);
    gap: 45px;
  }

  .floating-card--domain {
    right: -15px;
  }

  .floating-card--control {
    left: -35px;
  }

  .security-layout {
    gap: 60px;
  }
}

@media (max-width: 860px) {
  .site-header {
    position: relative;
  }

  .header-inner {
    min-height: 72px;
  }

  .header-actions .login-link {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    padding-block: 70px 95px;
  }

  .hero-copy {
    max-width: 700px;
  }

  .product-preview {
    width: min(100%, 580px);
    justify-self: center;
  }

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

  .proof-grid > div {
    min-height: 92px;
    padding: 20px 0;
  }

  .proof-grid > div + div {
    border-top: 1px solid #e3ddd3;
    border-left: 0;
  }

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

  .benefit-card {
    min-height: 245px;
  }

  .benefit-card--featured {
    transform: none;
  }

  .benefit-card h3 {
    margin-top: 48px;
  }

  .control-layout,
  .security-layout,
  .contact-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .control-intro,
  .faq-intro {
    position: static;
  }

  .process-list {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .process-list::before {
    top: 28px;
    right: auto;
    bottom: 28px;
    left: 27px;
    width: 1px;
    height: auto;
  }

  .process-list li {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 22px;
  }

  .process-list li > div {
    padding: 5px 0 0;
  }

  .security-layout {
    gap: 45px;
  }

  .security-visual {
    order: 2;
  }

  .security-copy {
    order: 1;
  }

  .contact-copy {
    padding-top: 0;
  }

  .final-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .final-actions {
    align-items: flex-start;
  }
}

@media (max-width: 620px) {
  html {
    scroll-padding-top: 20px;
  }

  .shell {
    width: min(calc(100% - 28px), var(--shell));
  }

  .header-inner {
    gap: 12px;
  }

  .brand {
    gap: 8px;
  }

  .brand-logo {
    height: 29px;
  }

  .brand-divider {
    height: 22px;
  }

  .brand-product {
    max-width: 72px;
    font-size: 0.64rem;
    line-height: 1.15;
  }

  .header-actions {
    gap: 0;
  }

  .header-actions .button {
    min-height: 42px;
    padding: 9px 11px;
    font-size: 0.72rem;
  }

  .hero-grid {
    min-height: 0;
    padding-block: 55px 76px;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 13vw, 4rem);
  }

  .hero-lead {
    margin-top: 22px;
    font-size: 0.98rem;
  }

  .hero-actions {
    display: grid;
  }

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

  .hero-points {
    display: grid;
    gap: 8px;
  }

  .product-preview {
    width: calc(100% - 6px);
  }

  .preview-window {
    border-radius: 18px;
    transform: none;
  }

  .preview-body {
    min-height: 400px;
    padding: 28px 24px 31px;
  }

  .preview-kicker {
    margin-top: 35px;
  }

  .floating-card {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: calc(100% - 28px);
    margin-inline: auto;
  }

  .floating-card--domain {
    margin-top: -15px;
  }

  .floating-card--control {
    margin-top: 9px;
  }

  .section {
    padding-block: 78px;
  }

  .section-heading h2,
  .control-intro h2,
  .security-copy h2,
  .contact-copy h2,
  .faq-intro h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .benefit-grid {
    margin-top: 38px;
  }

  .benefit-card {
    min-height: 235px;
    padding: 28px;
  }

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

  .control-card {
    min-height: 0;
    flex-direction: row;
    gap: 17px;
  }

  .control-icon {
    flex: 0 0 auto;
  }

  .process-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .process-cta .button {
    width: 100%;
  }

  .security-visual {
    min-height: 380px;
    transform: scale(0.84);
    transform-origin: center;
  }

  .security-orbit--outer {
    width: 390px;
    height: 390px;
  }

  .secret-pill--api {
    left: -20px;
  }

  .secret-pill--turnstile {
    right: -20px;
  }

  .contact-form {
    grid-template-columns: 1fr;
    padding: 23px 18px;
    border-radius: 18px;
  }

  .field,
  .field:nth-of-type(3),
  .field:nth-of-type(4),
  .form-submit,
  .form-privacy,
  .form-status {
    grid-column: 1;
  }

  .faq-list summary {
    padding-block: 22px;
    font-size: 0.94rem;
  }

  .faq-list details p {
    margin-right: 0;
  }

  .final-cta {
    padding-block: 65px;
  }

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

  .final-login {
    align-self: center;
  }
}

@media (max-width: 410px) {
  .header-actions .button {
    max-width: 112px;
  }

  .preview-options {
    grid-template-columns: 1fr;
  }

  .preview-body {
    min-height: 430px;
  }

  .security-visual {
    margin-inline: -26px;
    transform: scale(0.74);
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (forced-colors: active) {
  .button,
  .control-card,
  .benefit-card,
  .contact-form,
  .preview-window,
  .floating-card {
    border: 1px solid ButtonText;
  }

  .eyebrow-dot,
  .process-number,
  .preview-logo {
    forced-color-adjust: none;
  }
}
