:root {
  --ink: #0b1712;
  --ink-soft: #425048;
  --paper: #f5f3ec;
  --paper-deep: #e9e5da;
  --white: #fffefa;
  --mint: #9ef0bd;
  --mint-bright: #b8ffcf;
  --peach: #ffb49d;
  --lilac: #cbbcff;
  --blue: #a7cdfa;
  --gold: #f2cf77;
  --line: rgba(11, 23, 18, 0.14);
  --radius: 24px;
  --shadow: 0 24px 70px rgba(12, 30, 20, 0.12);
  --shell: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

svg {
  display: block;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--ink);
  border-radius: 9px;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

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

.section-shell {
  width: var(--shell);
  margin-inline: auto;
}

.section-pad {
  padding: 128px 0;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  padding: 18px 0;
  transition: padding 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.scrolled {
  padding: 10px 0;
  background: rgba(245, 243, 236, 0.86);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: var(--shell);
  min-height: 48px;
  margin-inline: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 20px;
  font-weight: 750;
  letter-spacing: -0.03em;
}

.brand-mark {
  width: 36px;
  height: 36px;
  color: var(--mint);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 14px;
  font-weight: 600;
}

.site-nav > a:not(.button) {
  position: relative;
  color: #34443b;
}

.site-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

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

.nav-toggle {
  display: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 750;
  line-height: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

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

.button:focus-visible,
.text-link:focus-visible,
.site-nav a:focus-visible,
.billing-toggle button:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(83, 165, 119, 0.45);
  outline-offset: 3px;
}

.button svg {
  width: 18px;
  height: 18px;
}

.button-small {
  min-height: 42px;
  padding-inline: 19px;
  font-size: 13px;
}

.button-large {
  min-height: 60px;
  padding-inline: 30px;
}

.button-dark {
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 10px 24px rgba(11, 23, 18, 0.16);
}

.button-primary {
  color: var(--ink);
  background: var(--mint);
  box-shadow: 0 12px 30px rgba(61, 157, 102, 0.2);
}

.button-primary:hover {
  background: var(--mint-bright);
  box-shadow: 0 16px 34px rgba(61, 157, 102, 0.26);
}

.button-light {
  color: var(--ink);
  background: var(--white);
}

.button-outline {
  border-color: rgba(11, 23, 18, 0.2);
  color: var(--ink);
  background: transparent;
}

.button-outline:hover {
  background: rgba(11, 23, 18, 0.05);
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 150px 0 34px;
  overflow: hidden;
  background:
    linear-gradient(rgba(11, 23, 18, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 23, 18, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: 38px 38px;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  background: rgba(11, 23, 18, 0.05);
}

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

.hero-glow-one {
  top: -240px;
  left: -220px;
  width: 610px;
  height: 610px;
  background: radial-gradient(circle, rgba(158, 240, 189, 0.35), rgba(158, 240, 189, 0) 68%);
}

.hero-glow-two {
  right: -100px;
  bottom: 40px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(203, 188, 255, 0.26), rgba(203, 188, 255, 0) 70%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  align-items: center;
  gap: 70px;
}

.eyebrow,
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: #4c5b52;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow > span {
  display: block;
  width: 25px;
  height: 1px;
  background: currentColor;
}

.hero h1,
.section-heading h2,
.steps h2,
.pricing h2,
.faq h2,
.closing h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.96;
}

.hero h1 {
  max-width: 650px;
  font-size: clamp(64px, 7vw, 104px);
}

.hero h1 em,
.closing h2 em {
  position: relative;
  font-weight: 400;
}

.hero h1 em::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -8px;
  bottom: 3px;
  left: -5px;
  height: 24%;
  border-radius: 2px;
  background: var(--mint);
  transform: rotate(-1.5deg);
}

.hero-lede {
  max-width: 555px;
  margin: 32px 0 0;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 34px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 5px 0;
  border-bottom: 1px solid rgba(11, 23, 18, 0.3);
  color: #33453b;
  font-size: 14px;
  font-weight: 700;
}

.text-link span {
  transition: transform 0.2s ease;
}

.text-link:hover span {
  transform: translateY(2px);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 30px 0 0;
  padding: 0;
  color: #58675e;
  font-size: 12px;
  font-weight: 650;
  list-style: none;
}

.hero-points li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-points svg {
  width: 15px;
  height: 15px;
  color: #2c8f56;
}

.hero-visual {
  position: relative;
  min-width: 0;
  padding: 40px 16px 56px 28px;
}

.mail-window {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 25px;
  background: rgba(255, 254, 250, 0.94);
  box-shadow: 0 45px 100px rgba(21, 43, 31, 0.2), 0 8px 24px rgba(21, 43, 31, 0.1);
  transform: perspective(1200px) rotateY(-3deg) rotateX(1deg);
}

.window-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 45px;
  padding: 0 16px;
  border-bottom: 1px solid #e8e8e3;
  color: #758078;
  background: #fbfaf7;
  font-size: 9px;
}

.window-dots {
  display: flex;
  gap: 5px;
}

.window-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d8d9d5;
}

.window-title {
  font-weight: 650;
}

.window-status {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 5px;
}

.window-status span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #50bd78;
  box-shadow: 0 0 0 3px rgba(80, 189, 120, 0.12);
}

.mail-layout {
  display: grid;
  grid-template-columns: 62px 1fr;
  height: 522px;
}

.mail-sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 18px 0 14px;
  background: #102219;
}

.mini-brand,
.compose,
.avatar {
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  border-radius: 10px;
}

.mini-brand {
  color: #13241b;
  background: var(--mint);
  font-family: Georgia, serif;
  font-size: 14px;
  font-weight: 700;
}

.compose {
  margin-top: 9px;
  border: 0;
  color: #14251c;
  background: #f7f4ea;
  font-size: 23px;
  line-height: 1;
}

.side-icons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 21px;
}

.side-icons i {
  position: relative;
  width: 14px;
  height: 11px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 3px;
}

.side-icons i:first-child {
  border-color: var(--mint);
  box-shadow: 0 0 0 5px rgba(158, 240, 189, 0.08);
}

.avatar {
  margin-top: auto;
  color: #25392e;
  background: var(--lilac);
  font-size: 8px;
  font-weight: 800;
}

.inbox-panel {
  padding: 30px 28px;
  overflow: hidden;
  background: #f8f7f2;
}

.inbox-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.inbox-head small {
  color: #849088;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.inbox-head h2 {
  margin: 2px 0 0;
  font-family: Georgia, serif;
  font-size: 27px;
  font-weight: 400;
  letter-spacing: -0.04em;
}

.inbox-head button {
  width: 30px;
  height: 30px;
  border: 1px solid #e2e3dd;
  border-radius: 9px;
  color: #536057;
  background: #fff;
  font-size: 18px;
}

.filter-row,
.filter-demo {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 24px;
  border-bottom: 1px solid #e1e3de;
  color: #919991;
  font-size: 9px;
  font-weight: 700;
}

.filter-row span,
.filter-demo span {
  position: relative;
  padding: 0 0 9px;
}

.filter-row span.active,
.filter-demo span.active {
  color: #14251c;
}

.filter-row span.active::after,
.filter-demo span.active::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: #40a96b;
}

.filter-row b,
.filter-demo b {
  display: inline-grid;
  place-items: center;
  min-width: 14px;
  height: 14px;
  margin-left: 3px;
  border-radius: 8px;
  color: #1b3c29;
  background: var(--mint);
  font-size: 7px;
}

.message-list {
  display: grid;
  gap: 9px;
  margin-top: 14px;
}

.message-card {
  display: grid;
  grid-template-columns: 33px 1fr;
  gap: 11px;
  padding: 13px 14px;
  border: 1px solid #e7e7e1;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.65);
}

.message-card.unread {
  background: #fff;
  box-shadow: 0 5px 16px rgba(27, 42, 34, 0.04);
}

.sender {
  display: grid;
  place-items: center;
  width: 33px;
  height: 33px;
  border-radius: 10px;
  color: #29342e;
  font-size: 8px;
  font-weight: 800;
}

.sender-coral { background: var(--peach); }
.sender-mint { background: var(--mint); }
.sender-blue { background: var(--blue); }
.sender-gold { background: var(--gold); }

.message-copy {
  min-width: 0;
}

.message-copy > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.message-copy strong,
.message-copy time {
  color: #526057;
  font-size: 8px;
}

.message-copy h3 {
  margin: 3px 0 1px;
  overflow: hidden;
  font-size: 10px;
  font-weight: 750;
  line-height: 1.4;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.message-copy p {
  margin: 0;
  overflow: hidden;
  color: #969c97;
  font-size: 7.5px;
  line-height: 1.5;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.privacy-float {
  position: absolute;
  z-index: 4;
  right: -4px;
  bottom: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 14px;
  background: rgba(255, 254, 250, 0.95);
  box-shadow: 0 15px 35px rgba(21, 43, 31, 0.14);
  backdrop-filter: blur(12px);
}

.privacy-float > svg {
  width: 25px;
  height: 25px;
  padding: 4px;
  border-radius: 7px;
  color: #257c4b;
  background: rgba(158, 240, 189, 0.35);
}

.privacy-float div {
  display: flex;
  flex-direction: column;
}

.privacy-float strong {
  font-size: 9px;
}

.privacy-float span {
  color: #7d8981;
  font-size: 7px;
}

.orbit {
  position: absolute;
  z-index: 0;
  border: 1px dashed rgba(53, 89, 68, 0.15);
  border-radius: 50%;
}

.orbit-one {
  top: -40px;
  right: -90px;
  width: 480px;
  height: 480px;
}

.orbit-two {
  bottom: -65px;
  left: -60px;
  width: 340px;
  height: 340px;
}

.trust-row {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 78px;
  padding-top: 27px;
  border-top: 1px solid var(--line);
  color: #69766e;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.trust-row p {
  margin: 0;
}

.trust-types {
  display: flex;
  align-items: center;
  gap: 17px;
}

.trust-types i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #9eaaa2;
}

.features {
  background: var(--white);
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 0.55fr;
  align-items: end;
  gap: 60px;
  margin-bottom: 66px;
}

.section-heading h2,
.steps h2,
.pricing h2,
.faq h2 {
  font-size: clamp(46px, 5vw, 70px);
}

.section-heading > p {
  max-width: 410px;
  margin: 0 0 5px;
  color: var(--ink-soft);
  font-size: 17px;
}

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

.feature-card {
  position: relative;
  min-height: 415px;
  padding: 36px;
  overflow: hidden;
  border: 1px solid rgba(11, 23, 18, 0.09);
  border-radius: var(--radius);
  background: #f5f3ed;
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 45px;
  height: 45px;
  border-radius: 13px;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
}

.icon-lilac { background: rgba(203, 188, 255, 0.5); }
.icon-mint { background: rgba(158, 240, 189, 0.55); }
.icon-peach { background: rgba(255, 180, 157, 0.48); }
.icon-blue { background: rgba(167, 205, 250, 0.55); }

.card-number {
  position: absolute;
  top: 38px;
  right: 38px;
  color: #8d9790;
  font-family: Georgia, serif;
  font-size: 13px;
  font-style: italic;
}

.feature-card h3 {
  margin: 30px 0 10px;
  font-family: Georgia, serif;
  font-size: 30px;
  font-weight: 400;
  letter-spacing: -0.04em;
}

.feature-card > p {
  max-width: 435px;
  margin: 0;
  color: #5b6961;
  font-size: 14px;
  line-height: 1.65;
}

.domain-demo {
  position: absolute;
  right: 36px;
  bottom: 34px;
  left: 36px;
  display: flex;
  align-items: center;
  height: 67px;
  padding: 0 20px;
  border: 1px solid #e0ded7;
  border-radius: 15px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(20, 35, 27, 0.06);
  font-size: 15px;
}

.domain-demo span { color: #8c968f; }
.domain-demo strong { font-weight: 700; }
.domain-demo i {
  display: grid;
  place-items: center;
  width: 23px;
  height: 23px;
  margin-left: auto;
  border-radius: 50%;
  color: #1f7b48;
  background: rgba(158, 240, 189, 0.45);
  font-size: 11px;
  font-style: normal;
}

.shield-demo {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  place-items: center;
  min-height: 153px;
  background: radial-gradient(circle at center, rgba(158, 240, 189, 0.38), rgba(158, 240, 189, 0) 66%);
}

.shield-ring {
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  border: 1px solid rgba(39, 126, 74, 0.25);
  border-radius: 50%;
  color: #237b48;
  box-shadow: 0 0 0 16px rgba(158, 240, 189, 0.14), 0 0 0 34px rgba(158, 240, 189, 0.07);
}

.shield-ring svg {
  width: 52px;
  height: 52px;
}

.shield-demo > span {
  position: absolute;
  bottom: 13px;
  color: #548064;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.filter-demo {
  position: absolute;
  right: 36px;
  bottom: 42px;
  left: 36px;
  justify-content: space-around;
  gap: 10px;
  margin: 0;
  font-size: 11px;
}

.app-demo {
  position: absolute;
  right: 36px;
  bottom: 32px;
  left: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.app-demo span {
  display: grid;
  place-items: center;
  min-width: 56px;
  height: 56px;
  padding: 0 10px;
  border: 1px solid #dedfd9;
  border-radius: 16px;
  color: #4d5a52;
  background: var(--white);
  box-shadow: 0 8px 20px rgba(20, 35, 27, 0.05);
  font-size: 10px;
  font-weight: 800;
}

.app-demo span:last-child {
  min-width: 34px;
  height: 34px;
  border-radius: 50%;
  box-shadow: none;
}

.steps {
  position: relative;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 80%, rgba(158, 240, 189, 0.12), transparent 30%),
    #0c1a13;
}

.steps .section-shell {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 120px;
}

.kicker-light {
  color: #8fa197;
}

.steps-intro > p {
  max-width: 455px;
  margin: 28px 0 34px;
  color: #aab8b0;
  font-size: 16px;
}

.step-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.step-list li {
  display: grid;
  grid-template-columns: 54px 1fr 40px;
  gap: 22px;
  align-items: start;
  padding: 34px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.step-list li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.step-num {
  color: var(--mint);
  font-family: Georgia, serif;
  font-size: 15px;
  font-style: italic;
}

.step-list h3 {
  margin: 0 0 7px;
  font-family: Georgia, serif;
  font-size: 25px;
  font-weight: 400;
  letter-spacing: -0.035em;
}

.step-list p {
  max-width: 430px;
  margin: 0;
  color: #98a79f;
  font-size: 13px;
}

.step-list svg {
  width: 22px;
  height: 22px;
  color: #718179;
  transition: color 0.2s ease, transform 0.2s ease;
}

.step-list li:hover svg {
  color: var(--mint);
  transform: translateX(4px);
}

.pricing {
  background: var(--paper);
}

.pricing-heading {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  margin-bottom: 62px;
}

.pricing-heading .kicker {
  grid-column: 1;
}

.pricing-heading h2 {
  grid-column: 1;
}

.pricing-heading > p {
  grid-column: 1;
  max-width: 480px;
  margin: 25px 0 0;
  color: var(--ink-soft);
}

.billing-toggle {
  grid-row: 1 / span 3;
  grid-column: 2;
  display: flex;
  align-items: center;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
}

.billing-toggle button {
  height: 42px;
  padding: 0 17px;
  border: 0;
  border-radius: 999px;
  color: #69756d;
  background: transparent;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
}

.billing-toggle button.active {
  color: var(--white);
  background: var(--ink);
}

.billing-toggle button span {
  margin-left: 5px;
  color: #288554;
  font-size: 9px;
}

.billing-toggle button.active span {
  color: var(--mint);
}

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

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 570px;
  padding: 34px;
  border: 1px solid rgba(11, 23, 18, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 254, 250, 0.8);
}

.price-card-featured {
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 24px 60px rgba(11, 23, 18, 0.16);
}

.popular-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 7px 11px;
  border-radius: 999px;
  color: #183122;
  background: var(--mint);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.price-top h3 {
  margin: 18px 0 4px;
  font-family: Georgia, serif;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.04em;
}

.price-top p {
  margin: 0;
  color: #728077;
  font-size: 13px;
}

.price-card-featured .price-top p,
.price-card-featured .billing-note,
.price-card-featured ul {
  color: #aab8b0;
}

.plan-dot {
  display: block;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(0, 0, 0, 0.035);
}

.plan-dot-peach { background: var(--peach); }
.plan-dot-mint { background: var(--mint); }
.plan-dot-lilac { background: var(--lilac); }

.price {
  display: flex;
  align-items: baseline;
  margin-top: 42px;
}

.price > span {
  align-self: flex-start;
  margin-top: 9px;
  font-family: Georgia, serif;
  font-size: 22px;
}

.price strong {
  font-family: Georgia, serif;
  font-size: 59px;
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 1;
}

.price small {
  margin-left: 8px;
  color: #7c8880;
  font-size: 10px;
}

.price-custom {
  min-height: 59px;
  align-items: center;
}

.price-custom strong {
  font-size: 39px;
}

.billing-note {
  margin: 8px 0 0;
  color: #879188;
  font-size: 10px;
}

.price-card ul {
  display: grid;
  gap: 13px;
  margin: 36px 0;
  padding: 26px 0 0;
  border-top: 1px solid rgba(11, 23, 18, 0.11);
  color: #536158;
  font-size: 13px;
  list-style: none;
}

.price-card-featured ul {
  border-color: rgba(255, 255, 255, 0.14);
  color: #aab8b0;
}

.price-card-featured .price small {
  color: #9daca4;
}

.price-card li {
  position: relative;
  padding-left: 24px;
}

.price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  display: grid;
  place-items: center;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  color: #247a49;
  background: rgba(158, 240, 189, 0.35);
  font-size: 8px;
  font-weight: 900;
}

.price-card .button {
  width: 100%;
  margin-top: auto;
}

.price-footnote {
  margin: 20px 0 0;
  color: #8b948e;
  font-size: 10px;
  text-align: center;
}

.faq {
  background: var(--white);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 110px;
}

.faq-intro {
  position: sticky;
  top: 120px;
  align-self: start;
}

.faq-intro h2 {
  max-width: 480px;
}

.faq-intro > p {
  max-width: 390px;
  margin: 27px 0 24px;
  color: var(--ink-soft);
}

.text-link-dark span {
  transition: transform 0.2s ease;
}

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

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

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

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 27px 0;
  cursor: pointer;
  font-family: Georgia, serif;
  font-size: 21px;
  letter-spacing: -0.025em;
  list-style: none;
}

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

.faq-list summary span {
  position: relative;
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.faq-list summary span::before,
.faq-list summary span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease;
}

.faq-list summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list details[open] summary span::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-list details p {
  max-width: 620px;
  margin: -8px 55px 28px 0;
  color: #66736b;
  font-size: 14px;
}

.closing {
  position: relative;
  padding: 130px 0;
  overflow: hidden;
  color: var(--white);
  background: #102018;
  text-align: center;
}

.closing::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.4;
  background-image: radial-gradient(rgba(255, 255, 255, 0.13) 0.8px, transparent 0.8px);
  background-size: 20px 20px;
}

.closing-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.closing-mark {
  width: 58px;
  height: 58px;
  margin-bottom: 28px;
  color: var(--mint);
}

.closing h2 {
  font-size: clamp(56px, 7vw, 90px);
}

.closing h2 em {
  color: var(--mint);
}

.closing-inner > p {
  max-width: 550px;
  margin: 28px 0 32px;
  color: #a7b5ad;
  font-size: 16px;
}

.closing-shape {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(158, 240, 189, 0.15);
  border-radius: 50%;
}

.closing-shape-one {
  top: -210px;
  left: -150px;
  width: 540px;
  height: 540px;
  box-shadow: 0 0 0 65px rgba(158, 240, 189, 0.02), 0 0 0 130px rgba(158, 240, 189, 0.015);
}

.closing-shape-two {
  right: -160px;
  bottom: -260px;
  width: 600px;
  height: 600px;
  border-color: rgba(203, 188, 255, 0.14);
  box-shadow: 0 0 0 80px rgba(203, 188, 255, 0.018);
}

.site-footer {
  padding: 62px 0 24px;
  background: var(--paper);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  padding-bottom: 58px;
}

.footer-brand p {
  margin: 14px 0 0;
  color: #7b877f;
  font-size: 13px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(100px, 1fr));
  gap: 70px;
}

.footer-links > div {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 12px;
}

.footer-links strong {
  margin-bottom: 4px;
  color: #28382f;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.footer-links a {
  color: #6e7b73;
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 21px;
  border-top: 1px solid var(--line);
  color: #879188;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.js .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-delay-short { transition-delay: 0.08s; }
.reveal-delay { transition-delay: 0.13s; }
.reveal-delay-long { transition-delay: 0.16s; }

.js .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .hero {
    padding-top: 135px;
  }

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

  .hero h1 {
    font-size: clamp(58px, 7.4vw, 82px);
  }

  .mail-layout {
    height: 470px;
  }

  .inbox-panel {
    padding: 25px 20px;
  }

  .steps .section-shell,
  .faq-grid {
    gap: 70px;
  }

  .price-card {
    padding: 28px;
  }
}

@media (max-width: 880px) {
  :root {
    --shell: min(100% - 32px, 720px);
  }

  .section-pad {
    padding: 96px 0;
  }

  .nav-toggle {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    padding: 0 10px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: rgba(255, 254, 250, 0.75);
  }

  .nav-toggle > span:not(.sr-only) {
    display: block;
    width: 100%;
    height: 1px;
    background: var(--ink);
    transition: transform 0.2s ease;
  }

  .nav-toggle[aria-expanded="true"] > span:nth-child(2) {
    transform: translateY(3.5px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] > span:nth-child(3) {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 25px;
    padding: 80px 10vw;
    visibility: hidden;
    opacity: 0;
    background: rgba(245, 243, 236, 0.98);
    transform: translateY(-10px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  }

  .site-nav.open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .site-nav > a:not(.button) {
    color: var(--ink);
    font-family: Georgia, serif;
    font-size: 32px;
    font-weight: 400;
  }

  .nav-cta {
    margin-top: 15px;
  }

  .hero {
    padding-top: 135px;
  }

  .hero::before {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .hero-copy {
    text-align: center;
  }

  .eyebrow,
  .hero-actions,
  .hero-points {
    justify-content: center;
  }

  .hero-lede {
    margin-inline: auto;
  }

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

  .trust-row {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .section-heading,
  .pricing-heading,
  .steps .section-shell,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 24px;
  }

  .section-heading > p {
    max-width: 560px;
  }

  .steps .section-shell {
    gap: 60px;
  }

  .pricing-heading {
    gap: 26px;
  }

  .pricing-heading .kicker,
  .pricing-heading h2,
  .pricing-heading > p,
  .billing-toggle {
    grid-column: 1;
    grid-row: auto;
  }

  .billing-toggle {
    justify-self: start;
  }

  .price-grid {
    grid-template-columns: 1fr;
    width: min(100%, 560px);
    margin-inline: auto;
  }

  .price-card {
    min-height: 530px;
  }

  .faq-grid {
    gap: 55px;
  }

  .faq-intro {
    position: static;
  }
}

@media (max-width: 620px) {
  :root {
    --shell: calc(100% - 28px);
    --radius: 20px;
  }

  .section-pad {
    padding: 78px 0;
  }

  .site-header {
    padding: 12px 0;
  }

  .brand {
    font-size: 18px;
  }

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

  .hero {
    min-height: auto;
    padding: 116px 0 28px;
    background-size: 30px 30px;
  }

  .hero h1 {
    font-size: clamp(50px, 16vw, 70px);
  }

  .hero-lede {
    margin-top: 24px;
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 17px;
    margin-top: 28px;
  }

  .hero-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-items: start;
    width: max-content;
    max-width: 100%;
    margin-inline: auto;
  }

  .hero-visual {
    padding: 18px 2px 42px;
  }

  .mail-window {
    border-radius: 19px;
    transform: none;
  }

  .mail-layout {
    grid-template-columns: 45px 1fr;
    height: 390px;
  }

  .mail-sidebar {
    gap: 15px;
    padding-top: 14px;
  }

  .mini-brand,
  .compose,
  .avatar {
    width: 26px;
    height: 26px;
    border-radius: 8px;
  }

  .side-icons {
    gap: 17px;
  }

  .inbox-panel {
    padding: 20px 14px;
  }

  .message-card {
    grid-template-columns: 28px 1fr;
    gap: 8px;
    padding: 10px;
  }

  .sender {
    width: 28px;
    height: 28px;
  }

  .window-title {
    display: none;
  }

  .window-bar {
    grid-template-columns: 1fr 1fr;
  }

  .privacy-float {
    right: 12px;
    bottom: 16px;
  }

  .trust-row {
    margin-top: 46px;
  }

  .trust-types {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 13px;
  }

  .trust-types i {
    display: none;
  }

  .section-heading h2,
  .steps h2,
  .pricing h2,
  .faq h2 {
    font-size: 45px;
  }

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

  .feature-card {
    min-height: 390px;
    padding: 28px;
  }

  .feature-card h3 {
    font-size: 27px;
  }

  .card-number {
    top: 30px;
    right: 29px;
  }

  .domain-demo,
  .filter-demo,
  .app-demo {
    right: 28px;
    left: 28px;
  }

  .step-list li {
    grid-template-columns: 42px 1fr;
    gap: 14px;
    padding: 27px 0;
  }

  .step-list li svg {
    display: none;
  }

  .price-card {
    min-height: 540px;
    padding: 28px;
  }

  .billing-toggle {
    width: 100%;
  }

  .billing-toggle button {
    flex: 1;
    padding-inline: 10px;
  }

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

  .closing {
    padding: 95px 0;
  }

  .closing h2 {
    font-size: 54px;
  }

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

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

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

@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;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
