:root {
  --ink: #142725;
  --ink-soft: #405754;
  --forest: #173c3a;
  --forest-deep: #0b2928;
  --forest-light: #24514e;
  --mint: #83dbc6;
  --mint-pale: #dff6ef;
  --clay: #ef835d;
  --gold: #d8b363;
  --paper: #f6f1e7;
  --paper-deep: #ece3d3;
  --white: #fffdf8;
  --line: rgba(20, 39, 37, .14);
  --muted: #647570;
  --danger: #b54736;
  --shadow: 0 24px 70px rgba(15, 45, 42, .13);
  --shadow-soft: 0 12px 36px rgba(15, 45, 42, .08);
  --radius: 22px;
  --site-width: 1216px;
  --ns-content-width: 1216px;
  color-scheme: light;
  font-family: "Hanken Grotesk", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-size: 17px;
  line-height: 1.58;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

h1,
h2,
h3,
.brand-copy strong {
  font-family: "Bricolage Grotesque", "Hanken Grotesk", sans-serif;
}

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

a {
  color: inherit;
}

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

button,
input,
select,
textarea {
  border-radius: 0;
}

::selection {
  color: var(--forest-deep);
  background: var(--mint);
}

.container {
  width: min(calc(100% - 48px), var(--site-width));
  margin-inline: auto;
}

.no-break,
a[href^="mailto:"],
.contact-direct b {
  white-space: nowrap;
  overflow-wrap: normal;
  word-break: normal;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 20000;
  padding: 10px 14px;
  color: var(--white);
  background: var(--forest-deep);
  border-radius: 8px;
  transform: translateY(-160%);
  transition: transform .2s ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: 86px;
  background: rgba(255, 253, 248, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
  gap: 36px;
}

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

.brand-mark {
  display: grid;
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  color: var(--forest);
  filter: drop-shadow(0 8px 15px rgba(15, 45, 42, .18));
}

.brand-mark svg {
  width: 100%;
  height: 100%;
}

.brand-copy {
  display: grid;
  min-width: 0;
  line-height: 1;
}

.brand-copy strong {
  color: var(--forest);
  font-size: 22px;
  font-weight: 760;
  letter-spacing: -.045em;
}

.brand-copy strong span {
  font-weight: 520;
}

.brand-copy strong em {
  color: var(--clay);
  font-size: .76em;
  font-style: normal;
  letter-spacing: -.02em;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 760;
  letter-spacing: .105em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 29px;
}

.main-nav a {
  position: relative;
  color: #324642;
  font-size: 14px;
  font-weight: 720;
  text-decoration: none;
}

.main-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--clay);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}

.main-nav > a:not(.nav-cta):hover::after,
.main-nav > a:not(.nav-cta):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.main-nav .nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-height: 46px;
  padding: 0 21px;
  color: var(--white);
  background: var(--forest);
  border: 1px solid var(--forest);
  border-radius: 9px;
  box-shadow: 0 10px 25px rgba(23, 60, 58, .17);
  transition: background .2s ease, transform .2s ease;
}

.main-nav .nav-cta:hover,
.main-nav .nav-cta:focus-visible {
  background: var(--forest-light);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
}

.menu-toggle span {
  font-size: 13px;
  font-weight: 760;
  text-transform: uppercase;
}

.menu-toggle i,
.menu-toggle i::before,
.menu-toggle i::after {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  content: "";
  transition: transform .2s ease;
}

.menu-toggle i {
  position: relative;
}

.menu-toggle i::before {
  position: absolute;
  top: -6px;
}

.menu-toggle i::after {
  position: absolute;
  top: 6px;
}

.hero {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(11, 41, 40, .98) 0%, rgba(18, 61, 58, .97) 55%, rgba(30, 74, 70, .96) 100%),
    var(--forest);
}

.hero::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, .024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .024) 1px, transparent 1px);
  background-size: 56px 56px;
  content: "";
  mask-image: linear-gradient(90deg, transparent, #000 35%, #000);
}

.hero::after {
  position: absolute;
  right: -10%;
  bottom: -55%;
  width: 720px;
  height: 720px;
  border: 1px solid rgba(131, 219, 198, .2);
  border-radius: 50%;
  box-shadow:
    0 0 0 90px rgba(131, 219, 198, .035),
    0 0 0 180px rgba(131, 219, 198, .025);
  content: "";
}

.hero-glow {
  position: absolute;
  top: -250px;
  left: 35%;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, rgba(239, 131, 93, .16), transparent 68%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .91fr) minmax(520px, 1.09fr);
  align-items: center;
  gap: clamp(44px, 6vw, 92px);
  min-height: 690px;
  padding-block: 80px 88px;
}

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 24px;
  color: var(--mint);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 27px;
  height: 2px;
  background: currentColor;
}

.eyebrow.dark {
  color: #3f8d7f;
}

.eyebrow.centered {
  justify-content: center;
}

.hero h1 {
  max-width: 650px;
  margin-bottom: 25px;
  font-size: clamp(52px, 5.3vw, 76px);
  font-weight: 620;
  line-height: .98;
  letter-spacing: -.055em;
}

.hero h1 em {
  display: block;
  color: var(--mint);
  font-style: normal;
  font-weight: 730;
}

.hero-lead {
  max-width: 590px;
  margin-bottom: 32px;
  color: rgba(255, 253, 248, .75);
  font-size: 19px;
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 38px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 53px;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 780;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease;
}

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

.button-primary {
  color: var(--forest-deep);
  background: var(--mint);
  border-color: var(--mint);
  box-shadow: 0 12px 26px rgba(131, 219, 198, .15);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #a2ead9;
  border-color: #a2ead9;
}

.button-secondary {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, .32);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--mint);
}

.button-wide {
  width: 100%;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, .17);
}

.hero-facts span {
  display: grid;
  gap: 2px;
  padding: 19px 18px 0 0;
  color: rgba(255, 253, 248, .59);
  font-size: 12px;
  line-height: 1.3;
}

.hero-facts span + span {
  padding-left: 18px;
  border-left: 1px solid rgba(255, 255, 255, .17);
}

.hero-facts b {
  color: var(--white);
  font-size: 15px;
}

.hero-visual {
  position: relative;
  min-width: 0;
  padding: 15px 18px 30px 0;
}

.identity-board {
  position: relative;
  overflow: hidden;
  min-height: 470px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid rgba(255, 255, 255, .26);
  border-radius: 18px;
  box-shadow: 0 36px 80px rgba(2, 20, 19, .35);
  transform: perspective(1400px) rotateY(-2.4deg) rotateX(.8deg);
  transform-origin: center;
}

.identity-board::after {
  position: absolute;
  right: -120px;
  bottom: -180px;
  width: 390px;
  height: 390px;
  border: 65px solid rgba(23, 60, 58, .05);
  border-radius: 50%;
  content: "";
}

.identity-toolbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 56px;
  padding: 0 20px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.toolbar-dots {
  display: flex;
  gap: 6px;
}

.toolbar-dots i {
  width: 8px;
  height: 8px;
  background: #d9d4c9;
  border-radius: 50%;
}

.toolbar-dots i:first-child {
  background: var(--clay);
}

.toolbar-dots i:nth-child(2) {
  background: var(--gold);
}

.toolbar-dots i:last-child {
  background: var(--mint);
}

.domain-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 17px;
  color: var(--ink-soft);
  background: #f2eee6;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 740;
}

.domain-pill i {
  width: 7px;
  height: 7px;
  background: #59aa8f;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(89, 170, 143, .13);
}

.secure-label {
  justify-self: end;
  color: #4f6d65;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .13em;
}

.identity-canvas {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 150px;
  min-height: 414px;
  padding: 34px 32px 27px;
  background:
    linear-gradient(90deg, transparent 0 73%, rgba(23, 60, 58, .035) 73%),
    var(--paper);
}

.preview-brand {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 10px;
  align-self: start;
}

.preview-symbol {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: var(--white);
  background: var(--forest);
  border-radius: 50%;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 16px;
  font-weight: 760;
}

.preview-brand div {
  display: grid;
  line-height: 1.15;
}

.preview-brand b {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 14px;
}

.preview-brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: .05em;
}

.preview-copy {
  align-self: center;
  max-width: 350px;
  padding: 24px 0 25px;
}

.preview-copy > span {
  color: #4d9485;
  font-size: 9px;
  font-weight: 820;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.preview-copy strong {
  display: block;
  margin: 9px 0 12px;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(27px, 2.5vw, 39px);
  font-weight: 640;
  line-height: 1.03;
  letter-spacing: -.045em;
}

.preview-copy p {
  max-width: 315px;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.preview-copy i {
  display: inline-flex;
  padding: 10px 14px;
  color: var(--white);
  background: var(--clay);
  border-radius: 5px;
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
}

.preview-proof {
  display: grid;
  align-self: center;
  gap: 10px;
  padding-left: 24px;
}

.preview-proof span {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--ink-soft);
  font-size: 9px;
  font-weight: 730;
  letter-spacing: .03em;
}

.preview-proof b {
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  color: var(--forest);
  background: var(--mint-pale);
  border-radius: 50%;
  font-size: 9px;
}

.identity-mobile {
  position: absolute;
  right: -21px;
  bottom: -31px;
  z-index: 2;
  width: 126px;
  height: 245px;
  padding: 24px 14px 16px;
  color: var(--white);
  background: #142422;
  border: 6px solid #0a1514;
  border-radius: 22px;
  box-shadow: 0 24px 50px rgba(5, 29, 27, .31);
}

.mobile-speaker {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 32px;
  height: 3px;
  background: rgba(255, 255, 255, .2);
  border-radius: 3px;
  transform: translateX(-50%);
}

.mobile-logo {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin-bottom: 28px;
  color: var(--forest-deep);
  background: var(--mint);
  border-radius: 50%;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 12px;
  font-weight: 800;
}

.identity-mobile i {
  display: block;
  width: 100%;
  height: 7px;
  margin-bottom: 8px;
  background: rgba(255, 255, 255, .14);
  border-radius: 6px;
}

.identity-mobile i:nth-of-type(2) {
  width: 78%;
}

.identity-mobile i:nth-of-type(3) {
  width: 58%;
  margin-bottom: 27px;
}

.identity-mobile b {
  display: block;
  padding: 9px 7px;
  color: var(--forest-deep);
  background: var(--mint);
  border-radius: 4px;
  font-size: 9px;
  text-align: center;
}

.identity-status,
.identity-mail {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 210px;
  padding: 13px 15px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, .65);
  border-radius: 10px;
  box-shadow: var(--shadow-soft);
}

.identity-status {
  top: -19px;
  right: -14px;
}

.identity-mail {
  bottom: -8px;
  left: -32px;
}

.identity-status > span,
.identity-mail > span {
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  flex: 0 0 31px;
  color: var(--forest-deep);
  background: var(--mint);
  border-radius: 8px;
  font-weight: 800;
}

.identity-status div,
.identity-mail div {
  display: grid;
  line-height: 1.25;
}

.identity-status small,
.identity-mail small {
  color: var(--muted);
  font-size: 9px;
}

.identity-status b,
.identity-mail b {
  font-size: 11px;
}

.assurance {
  position: relative;
  z-index: 5;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

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

.assurance-grid > div {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px;
  min-height: 108px;
  padding: 18px 24px;
  border-right: 1px solid var(--line);
}

.assurance-grid > div:first-child {
  border-left: 1px solid var(--line);
}

.assurance-grid span {
  color: var(--clay);
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 11px;
  font-weight: 760;
  letter-spacing: .08em;
}

.assurance-grid b {
  font-size: 14px;
  line-height: 1.3;
}

.section {
  position: relative;
  padding-block: 110px;
}

.intro-section {
  overflow: hidden;
  background: var(--white);
}

.intro-section::after {
  position: absolute;
  top: 50%;
  left: -150px;
  width: 320px;
  height: 320px;
  border: 70px solid rgba(131, 219, 198, .12);
  border-radius: 50%;
  content: "";
  transform: translateY(-50%);
}

.split-intro {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.07fr .93fr;
  align-items: start;
  gap: clamp(60px, 9vw, 130px);
}

.split-intro h2,
.section-heading h2,
.calculator-copy h2,
.audience-grid h2,
.faq-intro h2,
.contact-copy h2 {
  margin-bottom: 0;
  font-size: clamp(39px, 4vw, 60px);
  font-weight: 630;
  line-height: 1.03;
  letter-spacing: -.048em;
}

.intro-text {
  padding-top: 45px;
  color: var(--ink-soft);
  font-size: 18px;
}

.intro-text p:last-child {
  margin-bottom: 0;
}

.intro-text strong {
  color: var(--ink);
}

.section-tint {
  overflow: hidden;
  background: var(--paper);
  border-block: 1px solid rgba(20, 39, 37, .08);
}

.section-tint::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 38%;
  height: 6px;
  background: linear-gradient(90deg, var(--mint), var(--clay));
  content: "";
}

.section-heading {
  max-width: 780px;
  margin-bottom: 55px;
}

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

.section-heading > p:last-child {
  max-width: 680px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.section-heading.centered > p:last-child {
  margin-inline: auto;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-flow: dense;
  gap: 16px;
}

.feature-card {
  position: relative;
  grid-column: span 4;
  min-height: 275px;
  padding: 30px;
  overflow: hidden;
  background: rgba(255, 253, 248, .86);
  border: 1px solid rgba(20, 39, 37, .11);
  border-radius: 14px;
  box-shadow: 0 14px 40px rgba(19, 52, 49, .055);
}

.feature-card:first-child {
  grid-column: span 7;
  background: var(--forest);
  color: var(--white);
}

.feature-card:nth-child(2) {
  grid-column: span 5;
  background: var(--mint-pale);
}

.feature-card:last-child {
  grid-column: span 8;
  min-height: 235px;
}

.feature-card:nth-child(5) {
  grid-column: span 4;
  min-height: 235px;
  background: #f8ded4;
}

.feature-card::after {
  position: absolute;
  right: -42px;
  bottom: -52px;
  width: 150px;
  height: 150px;
  border: 28px solid rgba(23, 60, 58, .055);
  border-radius: 50%;
  content: "";
}

.feature-card:first-child::after {
  border-color: rgba(131, 219, 198, .12);
}

.feature-number {
  position: absolute;
  top: 30px;
  right: 30px;
  color: var(--clay);
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
}

.feature-icon {
  display: inline-grid;
  place-items: center;
  min-width: 48px;
  height: 48px;
  margin-bottom: 38px;
  padding-inline: 9px;
  color: var(--forest);
  background: var(--white);
  border: 1px solid rgba(20, 39, 37, .12);
  border-radius: 50%;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.feature-card:first-child .feature-icon {
  color: var(--forest-deep);
  background: var(--mint);
  border-color: var(--mint);
}

.feature-card h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 11px;
  font-size: 25px;
  font-weight: 650;
  line-height: 1.08;
  letter-spacing: -.025em;
}

.feature-card p {
  position: relative;
  z-index: 1;
  max-width: 490px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
}

.feature-card:first-child p {
  color: rgba(255, 253, 248, .7);
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 18px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.package-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 635px;
  padding: 40px 34px 34px;
  background: var(--white);
}

.package-card + .package-card {
  border-left: 1px solid var(--line);
}

.package-card.package-featured {
  color: var(--white);
  background:
    radial-gradient(circle at 100% 0, rgba(131, 219, 198, .16), transparent 36%),
    var(--forest);
}

.package-badge {
  position: absolute;
  top: 0;
  right: 28px;
  padding: 8px 13px;
  color: var(--forest-deep);
  background: var(--mint);
  border-radius: 0 0 7px 7px;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.package-label {
  margin-bottom: 14px;
  color: #4d9485;
  font-size: 11px;
  font-weight: 820;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.package-featured .package-label {
  color: var(--mint);
}

.package-card h3 {
  margin-bottom: 20px;
  font-size: 31px;
  font-weight: 650;
  letter-spacing: -.035em;
}

.package-price {
  display: grid;
  margin-bottom: 21px;
  min-height: 71px;
  color: var(--ink);
}

.package-price strong {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 35px;
  line-height: 1;
  letter-spacing: -.04em;
}

.package-price small {
  margin-top: 7px;
  color: var(--muted);
  font-size: 12px;
}

.package-featured .package-price,
.package-featured .package-price strong {
  color: var(--white);
}

.package-featured .package-price small,
.package-featured > div > p:last-child {
  color: rgba(255, 253, 248, .62);
}

.package-card > div > p:last-child {
  color: var(--muted);
  font-size: 15px;
}

.package-card.package-featured > div > p:last-child {
  color: rgba(255, 253, 248, .7);
}

.package-card ul {
  display: grid;
  gap: 12px;
  margin: 22px 0 30px;
  padding: 24px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.package-featured ul {
  border-color: rgba(255, 255, 255, .18);
}

.package-card li {
  position: relative;
  padding-left: 23px;
  color: var(--ink-soft);
  font-size: 14px;
}

.package-card li::before {
  position: absolute;
  top: .35em;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--mint);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 4px rgba(131, 219, 198, .16);
}

.package-featured li {
  color: rgba(255, 253, 248, .8);
}

.package-card > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding: 17px 0 3px;
  color: var(--forest);
  border-top: 1px solid var(--line);
  font-weight: 800;
  text-decoration: none;
}

.package-card > a span {
  color: var(--clay);
  transition: transform .2s ease;
}

.package-card > a:hover span {
  transform: translateX(5px);
}

.package-featured > a {
  color: var(--white);
  border-color: rgba(255, 255, 255, .18);
}

.package-featured > a span {
  color: var(--mint);
}

.infrastructure-note {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 35px;
  margin-top: 20px;
  padding: 26px 30px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.infrastructure-note > div:first-child {
  display: flex;
  align-items: center;
  gap: 17px;
}

.infrastructure-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  color: var(--forest);
  background: var(--mint);
  border-radius: 50%;
  font-weight: 820;
}

.infrastructure-note b {
  font-size: 15px;
}

.infrastructure-note p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.infra-prices {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--ink-soft);
  font-size: 13px;
}

.infra-prices span {
  display: grid;
}

.infra-prices small {
  color: var(--muted);
  font-size: 10px;
}

.calculator-section {
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(110deg, rgba(11, 41, 40, .98), rgba(23, 60, 58, .96)),
    var(--forest-deep);
}

.calculator-section::before {
  position: absolute;
  top: -240px;
  left: -200px;
  width: 520px;
  height: 520px;
  border: 90px solid rgba(131, 219, 198, .07);
  border-radius: 50%;
  content: "";
}

.calculator-grid {
  position: relative;
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  align-items: start;
  gap: clamp(55px, 8vw, 110px);
}

.calculator-copy {
  position: sticky;
  top: 145px;
  padding-top: 42px;
}

.calculator-copy > p:not(.eyebrow) {
  margin: 22px 0 30px;
  color: rgba(255, 253, 248, .7);
  font-size: 18px;
}

.calculator-trust {
  display: grid;
  gap: 11px;
  color: rgba(255, 253, 248, .72);
  font-size: 14px;
}

.calculator-trust span::first-letter {
  color: var(--mint);
}

.calculator-card {
  padding: 34px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 16px;
  box-shadow: 0 34px 75px rgba(2, 20, 19, .28);
}

.calculator-card fieldset {
  margin: 0 0 29px;
  padding: 0;
  border: 0;
}

.calculator-card legend {
  width: 100%;
  margin-bottom: 13px;
  padding: 0 0 11px;
  border-bottom: 1px solid var(--line);
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 17px;
  font-weight: 660;
}

.choice-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  margin-bottom: 9px;
  padding: 14px 15px;
  background: rgba(255, 253, 248, .7);
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.choice-row:hover {
  background: var(--white);
  border-color: #89baae;
  transform: translateX(2px);
}

.choice-row:has(input:checked) {
  background: var(--mint-pale);
  border-color: #73b7a7;
  box-shadow: inset 4px 0 0 #4ca993;
}

.choice-row input {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--forest);
}

.choice-row span {
  display: grid;
  line-height: 1.25;
}

.choice-row small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.choice-row > strong {
  color: var(--forest);
  font-size: 14px;
  white-space: nowrap;
}

.choice-row.compact {
  padding-block: 11px;
}

.calculation-total {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin: 7px 0 18px;
  padding: 22px 0;
  border-block: 1px solid var(--line);
}

.calculation-total > span {
  display: grid;
  font-weight: 750;
}

.calculation-total small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
}

.calculation-total > strong {
  color: var(--forest);
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 38px;
  line-height: 1;
  white-space: nowrap;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 58px;
  border-top: 1px solid var(--line);
}

.process-grid article {
  position: relative;
  padding: 42px 35px 0 0;
}

.process-grid article:not(:last-child) {
  border-right: 1px solid var(--line);
}

.process-grid article:not(:first-child) {
  padding-left: 35px;
}

.process-grid article::before {
  position: absolute;
  top: -6px;
  left: 0;
  width: 11px;
  height: 11px;
  background: var(--clay);
  border: 4px solid var(--white);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 1px var(--clay);
}

.process-grid article:not(:first-child)::before {
  left: 35px;
}

.process-grid span {
  display: block;
  margin-bottom: 20px;
  color: var(--clay);
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
}

.process-grid h3 {
  margin-bottom: 10px;
  font-size: 22px;
  letter-spacing: -.02em;
}

.process-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.audience-section {
  padding-block: 0;
  color: var(--white);
  background: var(--forest);
}

.audience-grid {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  align-items: stretch;
  gap: 0;
}

.audience-grid > div:first-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 530px;
  padding: 75px 85px 75px 0;
  background:
    radial-gradient(circle at 0 100%, rgba(239, 131, 93, .16), transparent 37%);
}

.audience-grid > div:first-child > p:last-child {
  max-width: 500px;
  margin: 21px 0 0;
  color: rgba(255, 253, 248, .68);
}

.audience-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background: var(--paper);
  border-left: 1px solid rgba(255, 255, 255, .16);
}

.audience-list > div {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 265px;
  padding: 35px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-width: 0 1px 1px 0;
}

.audience-list > div:nth-child(2),
.audience-list > div:nth-child(3) {
  background: var(--white);
}

.audience-list > div::before {
  position: absolute;
  top: 35px;
  left: 35px;
  color: var(--clay);
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 13px;
  font-weight: 800;
  content: "0" counter(audience);
  counter-increment: audience;
}

.audience-list {
  counter-reset: audience;
}

.audience-list b {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 21px;
  line-height: 1.1;
}

.audience-list span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
}

.faq-section {
  background: var(--paper);
}

.faq-grid {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  align-items: start;
  gap: clamp(65px, 9vw, 125px);
}

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

.faq-intro > p:not(.eyebrow) {
  margin: 20px 0 25px;
  color: var(--muted);
}

.faq-intro > a {
  display: inline-flex;
  align-items: center;
  gap: 34px;
  padding: 12px 0 6px;
  color: var(--forest);
  border-bottom: 2px solid var(--clay);
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 19px;
  font-weight: 730;
  text-decoration: none;
}

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

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

.faq-list summary {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 25px 0;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 20px;
  font-weight: 640;
  line-height: 1.25;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: var(--forest);
  border: 1px solid var(--line);
  border-radius: 50%;
  font-family: "Hanken Grotesk", sans-serif;
  font-weight: 500;
  transition: transform .2s ease, background .2s ease;
}

.faq-list details[open] summary span {
  background: var(--mint);
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 680px;
  margin: -5px 0 26px;
  padding-right: 45px;
  color: var(--muted);
  font-size: 15px;
}

.contact-section {
  overflow: hidden;
  padding-block: 120px;
  color: var(--white);
  background:
    radial-gradient(circle at 4% 100%, rgba(239, 131, 93, .18), transparent 31%),
    linear-gradient(115deg, #0b2928, #173c3a);
}

.contact-section::after {
  position: absolute;
  top: 35px;
  right: -140px;
  width: 360px;
  height: 360px;
  border: 70px solid rgba(131, 219, 198, .07);
  border-radius: 50%;
  content: "";
}

.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .83fr 1.17fr;
  align-items: start;
  gap: clamp(55px, 8vw, 105px);
}

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

.contact-copy > p:not(.eyebrow) {
  margin: 22px 0 30px;
  color: rgba(255, 253, 248, .7);
  font-size: 18px;
}

.contact-direct {
  display: grid;
  gap: 10px;
  margin-bottom: 34px;
}

.contact-direct a {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .16);
  text-decoration: none;
}

.contact-direct a > span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  color: var(--forest-deep);
  background: var(--mint);
  border-radius: 50%;
  font-weight: 800;
}

.contact-direct a div {
  display: grid;
  min-width: 0;
  line-height: 1.2;
}

.contact-direct small {
  color: rgba(255, 253, 248, .53);
  font-size: 11px;
}

.contact-direct b {
  margin-top: 3px;
  font-size: 17px;
}

.contact-proof {
  display: grid;
  padding-left: 16px;
  border-left: 3px solid var(--clay);
  line-height: 1.35;
}

.contact-proof b {
  font-size: 14px;
}

.contact-proof span {
  margin-top: 4px;
  color: rgba(255, 253, 248, .56);
  font-size: 12px;
}

.form-card {
  padding: clamp(26px, 4vw, 42px);
  color: var(--ink);
  background: var(--paper);
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 16px;
  box-shadow: 0 35px 80px rgba(2, 20, 19, .35);
}

.form-card form {
  display: grid;
  gap: 17px;
}

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

.form-card label {
  display: grid;
  gap: 7px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 720;
}

.form-card input,
.form-card select,
.form-card textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(20, 39, 37, .2);
  border-radius: 7px;
  outline: 0;
  font-size: 15px;
  font-weight: 500;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.form-card textarea {
  min-height: 125px;
  resize: vertical;
}

.form-card input:focus,
.form-card select:focus,
.form-card textarea:focus {
  border-color: #4b9f8d;
  box-shadow: 0 0 0 3px rgba(131, 219, 198, .23);
}

.privacy-check {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px !important;
  color: var(--muted) !important;
  font-weight: 500 !important;
}

.privacy-check input {
  width: 17px;
  min-height: auto;
  height: 17px;
  margin-top: 2px;
  accent-color: var(--forest);
}

.privacy-check a {
  color: var(--forest);
  font-weight: 750;
}

.form-success,
.form-error {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin-bottom: 20px;
  padding: 14px;
  border-radius: 8px;
  font-size: 14px;
}

.form-success {
  background: var(--mint-pale);
  border: 1px solid #88c6b7;
}

.form-success > span {
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  flex: 0 0 25px;
  color: var(--white);
  background: #4d9d8b;
  border-radius: 50%;
}

.form-success p {
  margin: 3px 0 0;
}

.form-error {
  color: var(--danger);
  background: #fbeae6;
  border: 1px solid #e7b9af;
}

.field-error {
  color: var(--danger);
  font-size: 11px;
  font-weight: 650;
}

.privacy-error {
  margin-top: -10px;
}

.form-note {
  margin: -5px 0 0;
  color: var(--muted);
  font-size: 11px;
  text-align: center;
}

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}

.site-footer {
  padding-top: 70px;
  color: rgba(255, 253, 248, .66);
  background: #071c1b;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr .7fr .8fr;
  gap: 70px;
  padding-bottom: 56px;
}

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

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

.footer-brand .brand-copy small {
  color: rgba(255, 253, 248, .48);
}

.footer-grid > div:first-child > p {
  max-width: 390px;
  margin: 20px 0 0;
  font-size: 14px;
}

.footer-grid > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-grid > div:not(:first-child) > b {
  margin-bottom: 8px;
  color: var(--mint);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.footer-grid a {
  text-decoration: none;
}

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

.footer-bottom {
  display: flex;
  gap: 25px;
  padding-block: 22px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  font-size: 12px;
}

.footer-bottom span {
  margin-right: auto;
}

.footer-bottom a {
  text-decoration: none;
}

@media (max-width: 1120px) {
  .main-nav {
    gap: 18px;
  }

  .main-nav a {
    font-size: 13px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, .9fr) minmax(430px, 1.1fr);
    gap: 42px;
  }

  .identity-canvas {
    grid-template-columns: minmax(0, 1fr) 125px;
    padding-inline: 25px;
  }

  .package-card {
    padding-inline: 26px;
  }

  .infra-prices {
    gap: 14px;
  }
}

@media (max-width: 940px) {
  .container {
    width: min(calc(100% - 36px), var(--site-width));
  }

  .site-header,
  .header-inner {
    min-height: 76px;
  }

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

  .main-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 18px;
    left: 18px;
    display: none;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 0 0 12px 12px;
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: grid;
  }

  .main-nav a {
    padding: 12px;
  }

  .main-nav .nav-cta {
    margin-top: 6px;
  }

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

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

  .hero h1 {
    max-width: 780px;
  }

  .hero-lead {
    max-width: 690px;
  }

  .hero-visual {
    width: min(100%, 680px);
    margin-inline: auto;
  }

  .identity-board {
    min-height: 440px;
    transform: none;
  }

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

  .assurance-grid > div:nth-child(3) {
    border-left: 1px solid var(--line);
  }

  .assurance-grid > div:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .split-intro,
  .calculator-grid,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .intro-text {
    max-width: 720px;
    padding-top: 0;
  }

  .feature-card,
  .feature-card:first-child,
  .feature-card:nth-child(2),
  .feature-card:nth-child(5),
  .feature-card:last-child {
    grid-column: span 6;
    min-height: 260px;
  }

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

  .package-card {
    min-height: auto;
  }

  .package-card + .package-card {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .infrastructure-note {
    grid-template-columns: 1fr;
  }

  .infra-prices {
    padding-left: 63px;
  }

  .calculator-copy,
  .faq-intro {
    position: static;
    padding-top: 0;
  }

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

  .process-grid article {
    padding: 32px 28px 35px 0;
    border-top: 1px solid var(--line);
  }

  .process-grid article:not(:first-child) {
    padding-left: 28px;
  }

  .process-grid article::before,
  .process-grid article:not(:first-child)::before {
    left: 0;
  }

  .process-grid article:nth-child(odd) {
    padding-left: 0;
  }

  .process-grid article:nth-child(odd)::before {
    left: 0;
  }

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

  .audience-grid > div:first-child {
    min-height: auto;
    padding: 90px 0;
  }

  .audience-list {
    border-left: 0;
  }

  .footer-grid {
    grid-template-columns: 1.4fr .7fr .9fr;
    gap: 35px;
  }
}

@media (max-width: 680px) {
  body {
    font-size: 16px;
  }

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

  .brand {
    gap: 9px;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }

  .brand-copy strong {
    font-size: 19px;
  }

  .brand-copy small {
    font-size: 8px;
    letter-spacing: .075em;
  }

  .menu-toggle span {
    display: none;
  }

  .menu-toggle {
    min-width: 44px;
    height: 42px;
    justify-content: center;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    gap: 55px;
    min-height: 0;
    padding-block: 65px 78px;
  }

  .eyebrow {
    margin-bottom: 19px;
    font-size: 10px;
    letter-spacing: .12em;
  }

  .hero h1 {
    font-size: clamp(43px, 14vw, 59px);
    line-height: 1;
  }

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

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-facts {
    grid-template-columns: 1fr;
  }

  .hero-facts span,
  .hero-facts span + span {
    grid-template-columns: 110px 1fr;
    gap: 11px;
    padding: 11px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .13);
    border-left: 0;
  }

  .hero-visual {
    padding-right: 0;
  }

  .identity-board {
    min-height: 390px;
    border-radius: 12px;
  }

  .identity-toolbar {
    grid-template-columns: auto 1fr auto;
    min-height: 48px;
    padding-inline: 12px;
  }

  .toolbar-dots {
    display: none;
  }

  .domain-pill {
    justify-self: start;
    padding: 6px 10px;
    font-size: 10px;
  }

  .identity-canvas {
    grid-template-columns: 1fr;
    min-height: 342px;
    padding: 24px 21px 22px;
  }

  .preview-copy {
    max-width: 75%;
    padding-block: 30px 20px;
  }

  .preview-copy strong {
    font-size: 27px;
  }

  .preview-copy p {
    font-size: 10px;
  }

  .preview-proof {
    display: none;
  }

  .identity-mobile {
    right: 13px;
    bottom: -22px;
    width: 97px;
    height: 204px;
  }

  .identity-status {
    top: -22px;
    right: 6px;
    min-width: 190px;
  }

  .identity-mail {
    bottom: -15px;
    left: -8px;
    min-width: 190px;
  }

  .identity-status small,
  .identity-mail small {
    display: none;
  }

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

  .assurance-grid > div,
  .assurance-grid > div:first-child,
  .assurance-grid > div:nth-child(3) {
    min-height: 76px;
    padding-inline: 16px;
    border: 0;
    border-bottom: 1px solid var(--line);
  }

  .section {
    padding-block: 78px;
  }

  .split-intro h2,
  .section-heading h2,
  .calculator-copy h2,
  .audience-grid h2,
  .faq-intro h2,
  .contact-copy h2 {
    font-size: clamp(36px, 10vw, 47px);
    line-height: 1.04;
  }

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

  .section-heading > p:last-child,
  .intro-text {
    font-size: 16px;
  }

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

  .feature-card,
  .feature-card:first-child,
  .feature-card:nth-child(2),
  .feature-card:nth-child(5),
  .feature-card:last-child {
    grid-column: 1;
    min-height: 235px;
    padding: 25px;
  }

  .feature-icon {
    margin-bottom: 31px;
  }

  .package-card {
    padding: 36px 25px 29px;
  }

  .package-card h3 {
    font-size: 28px;
  }

  .infrastructure-note {
    padding: 22px;
  }

  .infra-prices {
    display: grid;
    gap: 10px;
    padding-left: 0;
  }

  .calculator-card {
    padding: 24px 18px;
  }

  .choice-row {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .choice-row > strong {
    grid-column: 2;
  }

  .calculation-total {
    align-items: flex-start;
  }

  .calculation-total > strong {
    font-size: 32px;
  }

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

  .process-grid article,
  .process-grid article:not(:first-child),
  .process-grid article:nth-child(odd) {
    padding: 31px 0;
    border-right: 0;
  }

  .audience-grid > div:first-child {
    padding: 75px 0;
  }

  .audience-list {
    grid-template-columns: 1fr;
  }

  .audience-list > div {
    min-height: 205px;
    padding: 27px;
  }

  .audience-list > div::before {
    top: 27px;
    left: 27px;
  }

  .faq-list summary {
    font-size: 18px;
  }

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

  .contact-section {
    padding-block: 85px;
  }

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

  .contact-direct b {
    max-width: 100%;
    overflow-x: auto;
    font-size: 15px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .footer-bottom {
    flex-wrap: wrap;
  }

  .footer-bottom span {
    width: 100%;
    margin-right: 0;
  }
}

@media (max-width: 390px) {
  .brand-copy small {
    display: none;
  }

  .identity-status,
  .identity-mail {
    min-width: 175px;
    padding: 10px;
  }

  .identity-status b,
  .identity-mail b {
    font-size: 10px;
  }

  .preview-copy {
    max-width: 69%;
  }

  .preview-copy strong {
    font-size: 24px;
  }

  .hero-facts span,
  .hero-facts span + span {
    grid-template-columns: 95px 1fr;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
