:root {
  --ink: #f7fbff;
  --muted: #b9c5d4;
  --soft: #8392a6;
  --navy: #06101d;
  --navy-2: #0b1726;
  --panel: #101d2c;
  --panel-2: #142235;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.24);
  --blue: #3d8bff;
  --blue-2: #9ec5ff;
  --steel: #d7dee8;
  --white: #ffffff;
  --ok: #34d399;
  --radius: 8px;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
  --body: "Inter", "Segoe UI", Arial, sans-serif;
  --display: "IBM Plex Sans", "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--navy);
  color: var(--ink);
  font-family: var(--body);
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent 74%);
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(6, 16, 29, 0.86);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand-mark {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #15283d, #07111e);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.brand-mark svg {
  width: 24px;
  height: 24px;
}

.brand strong {
  display: block;
  font-family: var(--display);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand span {
  display: block;
  margin-top: 2px;
  color: var(--soft);
  font-size: 11px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-size: 13px;
}

.main-nav a {
  transition: color 0.2s ease;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.landing-lang-control {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
}

.landing-lang-control select {
  min-height: 34px;
  width: 74px;
  max-width: 74px;
  padding: 0 22px 0 9px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    var(--panel);
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  opacity: 0.68;
  transition: opacity 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.landing-lang-control select:hover,
.landing-lang-control select:focus {
  opacity: 1;
  border-color: rgba(255, 255, 255, 0.42);
}

[dir="rtl"] .landing-lang-control select {
  padding: 0 10px 0 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
  font-weight: 700;
  font-size: 13px;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.btn svg {
  width: 17px;
  height: 17px;
}

.btn:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.1);
}

.btn.primary {
  border-color: transparent;
  color: #06101d;
  background: linear-gradient(135deg, var(--white), #b8d6ff);
  box-shadow: 0 14px 40px rgba(61, 139, 255, 0.18);
}

.btn.blue {
  border-color: rgba(61, 139, 255, 0.55);
  background: linear-gradient(135deg, #0f4eb4, #3d8bff);
}

.hero {
  min-height: 94vh;
  padding: 136px 0 54px;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(6, 16, 29, 0.97), rgba(6, 16, 29, 0.76) 44%, rgba(6, 16, 29, 0.2)),
    linear-gradient(180deg, rgba(6, 16, 29, 0.2), #06101d 96%),
    image-set(url("torre-control-hero.webp") type("image/webp") 1x, url("torre-control-hero.png") type("image/png") 1x);
  background-size: cover;
  background-position: center;
}

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

.hero-content {
  max-width: 820px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: var(--blue-2);
  font-size: 13px;
  font-weight: 800;
}

.eyebrow::before {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--blue-2);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--display);
  letter-spacing: 0;
}

h1 {
  max-width: 860px;
  font-size: 58px;
  line-height: 1.02;
  font-weight: 800;
}

.hero-subtitle {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--steel);
  font-size: 20px;
  line-height: 1.5;
}

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

.hero-proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(130px, 1fr));
  gap: 12px;
  max-width: 900px;
  margin-top: 52px;
}

.proof-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
  background: rgba(16, 29, 44, 0.72);
  backdrop-filter: blur(12px);
}

.proof-item b {
  display: block;
  color: var(--white);
  font-size: 20px;
  font-family: var(--display);
}

.proof-item span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

section {
  padding: 92px 0;
  border-top: 1px solid var(--line);
}

.section-light {
  background: #f4f7fb;
  color: #0b1726;
}

.section-soft {
  background: #0b1726;
}

.notice-band {
  padding: 0;
  background: #081321;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.notice-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.45fr 1.25fr 0.8fr;
  gap: 1px;
  background: var(--line);
}

.notice-grid div {
  min-height: 86px;
  padding: 18px 20px;
  background: #081321;
}

.notice-grid strong,
.contact-card strong {
  display: block;
  color: var(--white);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.notice-grid span,
.contact-card span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  line-height: 1.45;
}

.section-detail {
  margin: -12px 0 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.section-detail.light {
  border-color: #d7dee8;
  background: #ffffff;
  box-shadow: 0 16px 38px rgba(8, 21, 38, 0.07);
}

.section-detail summary {
  list-style: none;
  cursor: pointer;
  padding: 17px 20px;
  color: var(--white);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.section-detail.light summary {
  color: #0b1726;
}

.section-detail summary::-webkit-details-marker {
  display: none;
}

.section-detail summary::after {
  content: "+";
  width: 28px;
  height: 28px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  color: var(--blue-2);
  flex: 0 0 auto;
  font-family: "IBM Plex Mono", monospace;
}

.section-detail.light summary::after {
  border-color: #cbd5e1;
  color: #0f4eb4;
}

.section-detail[open] summary::after {
  content: "-";
}

.detail-body {
  border-top: 1px solid var(--line);
  padding: 20px;
  color: var(--muted);
  line-height: 1.66;
}

.section-detail.light .detail-body {
  border-color: #d7dee8;
  color: #516073;
}

.detail-body p {
  margin: 0;
}

.detail-body p + p {
  margin-top: 12px;
}

.detail-body strong {
  color: var(--white);
}

.section-detail.light .detail-body strong {
  color: #0b1726;
}

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

.section-head {
  display: grid;
  grid-template-columns: minmax(220px, 0.95fr) minmax(260px, 1.05fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 34px;
}

.section-head h2 {
  font-size: 36px;
  line-height: 1.12;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.section-light .section-head p,
.section-light .lead,
.section-light .tile p,
.section-light .platform p,
.section-light .sector p,
.section-light .wire p {
  color: #516073;
}

.lead {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.grid {
  display: grid;
  gap: 16px;
}

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

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

.grid.four {
  grid-template-columns: repeat(4, 1fr);
}

.capability-grid,
.module-grid,
.legal-grid,
.registration {
  display: grid;
  gap: 16px;
}

.capability-grid {
  grid-template-columns: repeat(4, 1fr);
}

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

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

.flow-grid,
.usecase-grid {
  display: grid;
  gap: 16px;
}

.flow-grid {
  grid-template-columns: repeat(6, 1fr);
}

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

.registration-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.tile,
.sector,
.platform,
.trust-logo,
.wire,
.form-panel,
.capability,
.module,
.legal-card,
.reg-step,
.contact-card,
.flow-step,
.usecase {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05) inset;
}

.section-light .tile,
.section-light .sector,
.section-light .platform,
.section-light .wire,
.section-light .form-panel,
.section-light .legal-card,
.section-light .reg-step,
.section-light .contact-card,
.section-light .usecase {
  border-color: #d7dee8;
  background: var(--white);
  box-shadow: 0 18px 45px rgba(8, 21, 38, 0.08);
}

.tile,
.capability,
.module,
.legal-card,
.reg-step,
.contact-card,
.flow-step,
.usecase {
  min-height: 210px;
  padding: 24px;
}

.tile-icon,
.sector-icon {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  color: var(--blue-2);
  background: rgba(61, 139, 255, 0.08);
}

.section-light .tile-icon,
.section-light .sector-icon {
  border-color: #d7dee8;
  color: #0f4eb4;
  background: #eef5ff;
}

.tile-icon svg,
.sector-icon svg {
  width: 22px;
  height: 22px;
}

.tile h3,
.sector h3,
.platform h3,
.wire h3,
.capability h3,
.module h3,
.legal-card h3,
.reg-step h3,
.flow-step h3,
.usecase h3 {
  font-size: 20px;
  line-height: 1.2;
}

.tile p,
.sector p,
.platform p,
.wire p,
.capability p,
.module p,
.legal-card p,
.reg-step p,
.flow-step p,
.usecase p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.58;
  font-size: 15px;
}

.section-light .legal-card p,
.section-light .reg-step p,
.section-light .contact-card span,
.section-light .usecase p {
  color: #516073;
}

.capability {
  min-height: 188px;
}

.capability h3::before {
  content: "";
  display: block;
  width: 34px;
  height: 2px;
  margin-bottom: 16px;
  background: var(--blue-2);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.guarantee {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
}

.guarantee h3 {
  font-size: 28px;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 12px;
}

.check-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--steel);
  line-height: 1.45;
}

.check-list svg {
  width: 20px;
  height: 20px;
  color: var(--ok);
}

.sector {
  padding: 22px;
}

.sector small {
  display: block;
  margin-top: 16px;
  color: var(--blue-2);
  font-weight: 800;
}

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

.platform {
  padding: 30px;
  position: relative;
  overflow: hidden;
}

.platform::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 160px;
  height: 160px;
  border-left: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transform: translate(54px, -54px) rotate(45deg);
  opacity: 0.7;
}

.platform strong {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--blue-2);
}

.platform .btn {
  margin-top: 22px;
}

.access-card {
  min-height: 380px;
}

.mini-list {
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--steel);
  line-height: 1.55;
  font-size: 14px;
}

.mini-list li {
  margin-bottom: 6px;
}

.module {
  min-height: 226px;
}

.module span,
.reg-step strong,
.flow-step span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: var(--radius);
  border: 1px solid var(--line-strong);
  color: var(--blue-2);
  font-family: "IBM Plex Mono", monospace;
  font-weight: 800;
}

.flow-step {
  min-height: 250px;
}

.flow-step h3 {
  margin-top: 4px;
}

.usecase {
  min-height: 240px;
}

.usecase strong {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--blue-2);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.conversion-band {
  margin-top: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(61, 139, 255, 0.13), rgba(255, 255, 255, 0.04));
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
}

.conversion-band strong,
.conversion-band span {
  display: block;
}

.conversion-band strong {
  color: var(--white);
  font-size: 18px;
}

.conversion-band span {
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.45;
}

.conversion-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

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

.legal-card {
  min-height: 270px;
}

.legal-card p + p {
  margin-top: 10px;
}

.section-light .reg-step strong {
  border-color: #b9c8da;
  color: #0f4eb4;
  background: #eef5ff;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.trust-logo {
  min-height: 92px;
  padding: 18px;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--muted);
  font-weight: 800;
  font-size: 13px;
}

.process {
  counter-reset: step;
  display: grid;
  gap: 14px;
}

.process-row {
  counter-increment: step;
  display: grid;
  grid-template-columns: 74px 1fr 220px;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}

.process-row::before {
  content: counter(step, decimal-leading-zero);
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  color: var(--blue-2);
  border: 1px solid var(--line-strong);
  font-family: "IBM Plex Mono", monospace;
  font-weight: 800;
}

.process-row h3 {
  font-size: 18px;
}

.process-row p {
  margin: 5px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.process-row span {
  color: var(--steel);
  font-size: 13px;
  font-weight: 700;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  align-items: start;
}

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

.contact-channels a {
  display: block;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(61, 139, 255, 0.07);
  color: var(--navy);
}

.contact-channels b,
.contact-channels span {
  display: block;
}

.contact-channels b {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.contact-channels span {
  margin-top: 4px;
  color: var(--steel);
  font-size: 13px;
  line-height: 1.35;
}

.form-panel {
  padding: 28px;
}

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

.field.full {
  grid-column: 1 / -1;
}

label {
  display: block;
  margin-bottom: 8px;
  color: #516073;
  font-size: 12px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: var(--radius);
  background: #f8fafc;
  color: #0b1726;
  padding: 12px 13px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

textarea {
  min-height: 128px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #3d8bff;
  box-shadow: 0 0 0 4px rgba(61, 139, 255, 0.14);
}

.form-note {
  color: #516073;
  margin: 16px 0 0;
  font-size: 13px;
  line-height: 1.5;
}

.consent label {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  margin: 0;
  color: #516073;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
  text-transform: none;
  letter-spacing: 0;
}

.consent input {
  width: 16px;
  height: 16px;
  margin: 2px 0 0;
  padding: 0;
}

.brand-system {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 18px;
  align-items: stretch;
}

.palette {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}

.swatch {
  min-height: 90px;
  border-radius: var(--radius);
  border: 1px solid #d7dee8;
  padding: 10px;
  display: flex;
  align-items: end;
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
}

.swatch.light {
  color: #0b1726;
}

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

.wire {
  padding: 20px;
}

.wireframe {
  margin-top: 18px;
  display: grid;
  gap: 8px;
}

.wf-line,
.wf-block {
  border-radius: 5px;
  background: #d9e3ee;
}

.wf-line {
  height: 10px;
}

.wf-line.short {
  width: 60%;
}

.wf-block {
  height: 76px;
}

.wf-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.footer {
  padding: 34px 0;
  border-top: 1px solid var(--line);
  color: var(--soft);
}

.footer .section-inner,
.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}

.footer-grid-wide {
  display: grid;
  grid-template-columns: 1fr 1.15fr auto;
  align-items: start;
}

.footer strong,
.footer span,
.footer a {
  display: block;
}

.footer span {
  margin-top: 5px;
}

.footer a {
  display: inline-flex;
  margin-left: 16px;
  color: var(--muted);
  font-size: 13px;
}

.footer-company {
  padding: 0 22px;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

.footer-company span {
  line-height: 1.45;
}

.footer-company a {
  display: inline;
  margin-left: 0;
  color: var(--soft);
  font-size: inherit;
}

.footer-company a:hover {
  color: var(--blue-2);
}

.footer-links {
  text-align: right;
}

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

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

  .landing-lang-control select {
    width: 68px;
    max-width: 68px;
  }

  h1 {
    font-size: 46px;
  }

  .grid.three,
  .grid.four,
  .trust-strip,
  .wire-grid,
  .capability-grid,
  .module-grid,
  .registration,
  .flow-grid,
  .usecase-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-head,
  .split,
  .platforms,
  .contact-layout,
  .brand-system,
  .legal-grid,
  .notice-grid,
  .detail-columns,
  .footer-grid-wide,
  .conversion-band {
    grid-template-columns: 1fr;
  }

  .conversion-actions {
    justify-content: flex-start;
  }

  .contact-channels {
    grid-template-columns: 1fr;
  }

  .footer-company {
    padding: 18px 0;
    border-left: none;
    border-right: none;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .footer-links {
    text-align: left;
  }

  .process-row {
    grid-template-columns: 64px 1fr;
  }

  .process-row span {
    grid-column: 2;
  }
}

@media (max-width: 720px) {
  .nav-shell,
  .hero-shell,
  .section-inner {
    width: min(100% - 28px, 1180px);
  }

  .nav-shell {
    min-height: 68px;
  }

  .nav-actions .btn:first-child {
    display: none;
  }

  .landing-lang-control select {
    min-height: 32px;
    width: 60px;
    max-width: 60px;
    padding-inline: 7px;
  }

  .hero {
    min-height: auto;
    padding: 116px 0 42px;
    background-position: 58% center;
  }

  h1 {
    font-size: 35px;
    line-height: 1.08;
  }

  .hero-subtitle {
    font-size: 17px;
  }

  .hero-actions,
  .hero-proof,
  .grid.two,
  .grid.three,
  .grid.four,
  .trust-strip,
  .form-grid,
  .wire-grid,
  .palette,
  .capability-grid,
  .module-grid,
  .registration,
  .legal-grid,
  .flow-grid,
  .usecase-grid {
    grid-template-columns: 1fr;
  }

  .registration-actions {
    display: grid;
  }

  .hero-actions {
    display: grid;
  }

  section {
    padding: 64px 0;
  }

  .section-head h2 {
    font-size: 29px;
  }

  .guarantee,
  .platform,
  .form-panel,
  .capability,
  .module,
  .legal-card,
  .reg-step {
    padding: 22px;
  }

  .process-row {
    grid-template-columns: 1fr;
  }

  .process-row span {
    grid-column: auto;
  }

  .notice-grid div {
    min-height: auto;
    padding: 16px 0;
  }

  .section-detail {
    margin-top: -14px;
  }

  .section-detail summary {
    align-items: flex-start;
  }

  .conversion-actions {
    display: grid;
  }

  .footer a {
    margin: 10px 14px 0 0;
  }
}
