:root {
  --paper: #fbf8f5;
  --ink: #302431;
  --muted: #706570;
  --rose: #b62762;
  --pink: #f4b7cc;
  --line: #e3dcd9;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 30px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-underline-offset: 4px;
}
button {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--rose);
  outline-offset: 6px;
}
a:hover {
  color: var(--rose);
}
img {
  max-width: 100%;
  display: block;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 1.06;
}
h1 {
  font-size: clamp(64px, 6.5vw, 92px);
}
h2 {
  font-size: clamp(40px, 4.2vw, 58px);
}
h3 {
  font-size: 23px;
  letter-spacing: -0.035em;
  line-height: 1.3;
}
em {
  font-weight: 400;
  color: var(--rose);
}
p {
  color: var(--muted);
}
.wrap {
  width: min(1160px, calc(100% - 96px));
  margin-inline: auto;
}
.section {
  padding-block: 112px;
}
.eyebrow {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 24px;
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  text-decoration: none;
  background: var(--rose);
  color: white;
  padding: 16px 26px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  transition:
    background 0.2s,
    transform 0.2s;
}
.button:hover {
  background: #93204f;
  color: white;
  transform: translateY(-2px);
}
.button span {
  font-size: 21px;
  line-height: 1;
}
.button-small {
  padding: 12px 20px;
  gap: 20px;
}
.skip-link {
  position: absolute;
  top: -100px;
  left: 20px;
  background: var(--ink);
  color: white;
  padding: 12px;
  z-index: 10;
}
.skip-link:focus {
  top: 10px;
}
.site-header {
  display: flex;
  align-items: center;
  gap: 40px;
  min-height: 112px;
  border-bottom: 1px solid var(--line);
}
.brand img {
  filter: brightness(0) saturate(100%) invert(13%) sepia(9%) saturate(1250%)
    hue-rotate(245deg) brightness(97%) contrast(87%);
}
.site-header nav {
  display: flex;
  gap: 32px;
  margin-left: auto;
}
.site-header nav a {
  font-size: 13px;
  text-decoration: none;
}
.menu-toggle {
  display: none;
}
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
  padding-block: 70px 84px;
  align-items: center;
}
.hero-copy .eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
}
.tiny-flower {
  color: var(--rose);
  font-size: 22px;
}
.hero-description {
  font-size: 18px;
  line-height: 1.7;
  margin-block: 27px 30px;
}
.cta-note {
  font-size: 11px;
  margin-top: 13px;
}
.cta-note a {
  text-decoration: none;
}
.hero-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 21px;
  font-size: 11px;
  margin-top: 32px;
  color: var(--muted);
}
.hero-benefits span:before {
  content: "✓";
  color: var(--rose);
  margin-right: 6px;
}
.hero-art {
  position: relative;
  min-height: 592px;
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
}
.hero-art:before {
  content: "";
  width: 460px;
  height: 460px;
  position: absolute;
  border-radius: 50%;
  background: #f5d8de;
  z-index: -2;
  top: 70px;
  left: 25px;
}
.orbit {
  position: absolute;
  border: 1px solid #e8bdca;
  border-radius: 50%;
  width: 490px;
  height: 490px;
  z-index: -1;
  transform: rotate(-22deg);
  left: 9px;
  top: 54px;
}
.orbit-two {
  width: 525px;
  height: 340px;
  top: 130px;
  left: -5px;
  transform: rotate(-38deg);
}
.art-note {
  position: absolute;
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  line-height: 1.4;
  right: 0;
  top: 0;
  transform: rotate(6deg);
}
.art-note strong {
  font-weight: 400;
}
.art-note > span {
  display: block;
  font-size: 40px;
  line-height: 1;
  text-align: center;
  margin-top: 4px;
}
.phone {
  width: 280px;
  height: 502px;
  background: #fff;
  border: 7px solid #392f3c;
  border-radius: 40px;
  box-shadow:
    8px 20px 0 #d4c3cb,
    0 28px 45px #62405020;
  transform: rotate(-6deg);
  overflow: hidden;
  position: relative;
  margin-top: 10px;
}
.phone-status {
  display: flex;
  justify-content: space-between;
  padding: 10px 19px 5px;
  font-size: 10px;
  font-weight: 700;
}
.phone-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #faf8f9;
  padding: 4px 0 13px;
  position: relative;
  border-bottom: 1px solid #eee8eb;
}
.phone-contact > span {
  position: absolute;
  left: 17px;
  top: 15px;
  font-size: 32px;
  color: var(--rose);
}
.contact-avatar {
  background: var(--rose);
  border-radius: 50%;
  padding: 4px;
}
.phone-contact strong {
  font-size: 12px;
  margin-top: 4px;
}
.phone-contact small {
  font-size: 9px;
  color: var(--muted);
}
.conversation {
  padding: 12px 14px;
}
.message-time {
  font-size: 8px;
  text-align: center;
  color: #8c828c;
  margin-bottom: 15px;
}
.bubble {
  padding: 10px 12px;
  max-width: 88%;
  font-size: 12px;
  line-height: 1.45;
  margin-bottom: 12px;
  border-radius: 14px;
  color: var(--ink);
}
.outgoing {
  background: var(--rose);
  color: #fff;
  margin-left: auto;
  width: fit-content;
  border-bottom-right-radius: 3px;
}
.incoming {
  background: #f0ecf0;
  border-bottom-left-radius: 3px;
}
.link-preview {
  margin-top: -7px;
  background: #f7eef2;
  border: 1px solid #ebdae3;
  border-radius: 12px;
  max-width: 88%;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  font-size: 10px;
}
.link-preview strong {
  font-size: 11px;
  color: #a5265b;
}
.link-preview > span:last-child {
  color: var(--muted);
  font-size: 9px;
}
.mini-lock {
  font-size: 18px;
  color: var(--rose);
}
.illustration-label {
  display: block;
  text-align: center;
  font-size: 8px;
  color: #817881;
  margin-top: 13px;
}
.phone-compose {
  position: absolute;
  bottom: 28px;
  left: 14px;
  right: 14px;
  display: flex;
  align-items: center;
  gap: 7px;
  color: #898189;
}
.phone-compose > div {
  border: 1px solid #e2dce1;
  border-radius: 20px;
  font-size: 10px;
  padding: 5px 7px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.phone-compose b {
  color: #fff;
  background: var(--rose);
  font-size: 13px;
  border-radius: 50%;
  height: 19px;
  width: 19px;
  text-align: center;
}
.phone-home {
  position: absolute;
  bottom: 8px;
  width: 90px;
  height: 4px;
  left: calc(50% - 45px);
  background: var(--ink);
  border-radius: 8px;
}
.password-note {
  display: flex;
  gap: 12px;
  align-items: center;
  position: absolute;
  bottom: 10px;
  right: -6px;
  background: #fff;
  border: 1px solid #e9dfe4;
  box-shadow: 0 12px 25px #4933430a;
  padding: 17px 23px;
  border-radius: 10px;
  transform: rotate(3deg);
}
.password-note div {
  display: flex;
  flex-direction: column;
}
.password-note small {
  font-size: 8px;
  letter-spacing: 0.15em;
  font-weight: 700;
  color: var(--rose);
}
.password-note strong {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 25px;
  letter-spacing: -0.03em;
}
.password-note div > span {
  font-size: 9px;
  color: var(--muted);
}
.note-check {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #f5e5ec;
  text-align: center;
  color: var(--rose);
}
.intro-strip {
  border-block: 1px solid var(--line);
  background: #f3eeeb;
}
.intro-strip > .wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 45px;
  padding-block: 22px;
  font-family: var(--serif);
  font-size: 23px;
  letter-spacing: -0.02em;
}
.strip-flower {
  font-family: var(--sans);
  color: var(--rose);
  font-size: 28px;
}
.section-heading {
  text-align: center;
  max-width: 730px;
  margin: 0 auto 48px;
}
.section-heading > p:last-child {
  max-width: 600px;
  margin: 24px auto 0;
  font-size: 16px;
}
.password-equation {
  max-width: 900px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 50px 1fr;
  align-items: center;
}
.password-part {
  padding: 30px 32px;
  border-radius: 10px;
  border: 1px solid #e8c5d2;
  background: #f9e8ef;
}
.part-number {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #9a2558;
}
.password-part strong {
  display: block;
  font-family: var(--serif);
  font-size: 36px;
  letter-spacing: -0.035em;
  font-weight: 400;
  margin: 10px 0 8px;
  color: var(--rose);
}
.password-part p {
  font-size: 12px;
}
.your-part {
  background: #efeaf0;
  border-color: #d7ccdc;
}
.your-part strong,
.your-part .part-number {
  color: #574267;
}
.equation-sign {
  text-align: center;
  font-family: var(--serif);
  font-size: 30px;
  color: #897b88;
}
.combined-password {
  text-align: center;
  padding: 34px 20px 0;
}
.combined-password > span {
  display: block;
  font-size: 11px;
  margin-bottom: 10px;
  color: var(--muted);
}
.combined-password code {
  font-size: clamp(20px, 3vw, 32px);
  letter-spacing: -0.055em;
  overflow-wrap: anywhere;
}
.combined-password code span {
  color: var(--rose);
}
.combined-password code b {
  color: #574267;
  font-weight: 400;
}
.combined-password p {
  font-size: 12px;
  margin-top: 8px;
}
.example-caption {
  text-align: center;
  font-size: 10px;
  margin-top: 20px;
}
.split-takeaway {
  border-top: 1px solid var(--line);
  margin-top: 40px;
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.split-takeaway > span {
  font-size: 36px;
  color: var(--rose);
}
.split-takeaway p {
  font-size: 13px;
}
.split-takeaway strong {
  color: var(--ink);
  font-weight: 600;
}
.how-section {
  background: #332737;
  color: #fff;
}
.how-section .eyebrow {
  color: #e6b5c8;
}
.how-heading {
  display: flex;
  justify-content: space-between;
  gap: 55px;
  align-items: end;
}
.how-heading > p {
  max-width: 390px;
  font-size: 14px;
  color: #ccc2ce;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 55px;
  gap: 42px;
}
.steps article {
  border-top: 1px solid #655667;
  padding-top: 20px;
}
.step-number {
  color: #c0afc3;
  font-size: 11px;
  letter-spacing: 0.1em;
}
.step-visual {
  height: 100px;
  display: flex;
  align-items: center;
}
.small-bubble {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  font-size: 15px;
  letter-spacing: -0.02em;
  padding: 13px 18px;
  border-radius: 15px 15px 2px 15px;
  background: #ead3df;
  color: #55314a;
}
.small-bubble > span {
  font-size: 19px;
}
.steps h3 {
  font-size: 23px;
  font-weight: 500;
  margin: 8px 0 12px;
}
.steps p {
  font-size: 13px;
  color: #d3c9d4;
}
.steps a:hover {
  color: white;
}
.how-footer {
  margin-top: 50px;
  border-top: 1px solid #655667;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
}
.how-footer a {
  color: #f3c8d9;
}
.how-footer > span {
  color: #c0afc3;
}
.security-section {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 95px;
}
.security-copy > p:not(.eyebrow) {
  font-size: 15px;
  margin-top: 24px;
  max-width: 450px;
}
.text-link {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  margin-top: 27px;
  color: var(--rose);
}
.knowledge-card {
  border: 1px solid #e0d2d8;
  border-radius: 12px;
  padding: 30px 33px;
  background: #fffdfb;
  transform: rotate(2deg);
  box-shadow: 8px 8px 0 #eee4e8;
}
.knowledge-heading {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 21px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 24px;
}
.knowledge-heading img {
  background: var(--rose);
  border-radius: 50%;
  padding: 6px;
}
.knowledge-heading span {
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  letter-spacing: -0.03em;
}
.knowledge-card h3 {
  font-size: 17px;
}
.knowledge-card ul,
.price-card ul {
  list-style: none;
  padding: 0;
  margin: 20px 0 25px;
  font-size: 13px;
}
.knowledge-card li,
.price-card li {
  margin: 12px 0;
}
.knowledge-card li:before,
.price-card li:before {
  content: "✓";
  margin-right: 12px;
  color: var(--rose);
}
.private-line {
  display: flex;
  gap: 13px;
  align-items: center;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}
.private-line > span {
  color: var(--rose);
  font-size: 28px;
}
.private-line p {
  font-size: 11px;
}
.private-line strong {
  color: var(--ink);
}
.pricing-section {
  background: #f0e8e5;
  border-block: 1px solid #e7dbd8;
}
.pricing-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 100px;
  align-items: center;
}
.pricing-layout > div > p:not(.eyebrow) {
  font-size: 15px;
  margin-top: 24px;
  max-width: 460px;
}
.price-card {
  background: var(--paper);
  border: 1px solid #dcd0d2;
  border-radius: 12px;
  padding: 36px;
}
.price-label {
  font-size: 9px;
  letter-spacing: 0.13em;
  font-weight: 600;
}
.price {
  display: flex;
  align-items: baseline;
  gap: 9px;
  margin-top: 19px;
}
.price strong {
  font-family: var(--serif);
  font-size: 86px;
  font-weight: 400;
  letter-spacing: -0.08em;
  line-height: 1;
}
.price > span {
  color: var(--muted);
  font-size: 14px;
}
.price-card > p {
  font-size: 12px;
  margin-top: 6px;
}
.price-card ul {
  border-top: 1px solid var(--line);
  padding-top: 19px;
  margin-top: 25px;
}
.price-card .button {
  width: 100%;
  justify-content: space-between;
}
.faq-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 85px;
}
.faq-heading > p:last-child {
  font-size: 13px;
  margin-top: 24px;
}
.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 21px 0;
}
.faq-list details:first-child {
  border-top: 1px solid var(--line);
}
summary {
  list-style: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  line-height: 1.5;
}
summary::-webkit-details-marker {
  display: none;
}
summary:after {
  content: "+";
  font-size: 21px;
  color: var(--rose);
  font-weight: 400;
}
details[open] summary:after {
  content: "−";
}
details p {
  font-size: 13px;
  margin-top: 18px;
  line-height: 1.8;
}
details[open] {
  padding-bottom: 24px;
}
.closing {
  background: #b82c64;
  color: white;
  text-align: center;
  padding-block: 70px;
}
.closing-flower {
  font-size: 47px;
  line-height: 1;
  display: block;
  margin-bottom: 24px;
  color: #f3ccdc;
}
.closing .eyebrow {
  color: #fbe1eb;
  font-size: 10px;
}
.closing h2 {
  font-size: 65px;
}
.closing em {
  color: #f8dbe7;
}
.button-light {
  background: var(--paper);
  color: var(--ink);
  margin-top: 32px;
  min-width: 180px;
}
.button-light:hover {
  background: #f2dbe3;
  color: var(--ink);
}
.closing p:last-child {
  color: #fff;
  font-size: 12px;
  margin-top: 17px;
}
.closing p a {
  text-decoration: none;
}
.site-footer {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 150px;
}
.site-footer > p {
  font-family: var(--serif);
  font-size: 16px;
  font-style: italic;
}
.site-footer > div {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 25px;
  font-size: 11px;
}
.site-footer a {
  text-decoration: none;
}
.site-footer span {
  color: var(--muted);
}
.privacy-content {
  max-width: 780px;
  padding-block: 70px 100px;
}
.privacy-content h1 {
  font-size: 64px;
  margin-bottom: 35px;
}
.privacy-content h2 {
  font-family: var(--sans);
  font-size: 23px;
  letter-spacing: -0.02em;
  line-height: 1.4;
  margin-block: 30px 15px;
}
.privacy-content p {
  margin-bottom: 18px;
}
.privacy-content li {
  color: var(--muted);
}
@media (min-width: 1500px) {
  .hero {
    padding-block: 85px 100px;
  }
}
@media (max-width: 1050px) {
  .wrap {
    width: calc(100% - 64px);
  }
  .hero {
    gap: 5px;
  }
  .hero-art {
    transform: scale(0.86);
    transform-origin: center right;
    margin-left: -40px;
  }
  .hero-benefits {
    gap: 12px;
  }
  .security-section {
    gap: 50px;
  }
  .pricing-layout {
    gap: 60px;
    grid-template-columns: 1fr 380px;
  }
  .faq-section {
    gap: 45px;
  }
  .site-footer > div {
    gap: 15px;
  }
  .password-part {
    padding: 25px;
  }
  .password-part strong {
    font-size: 30px;
  }
}
@media (max-width: 960px) {
  .wrap {
    width: calc(100% - 40px);
  }
  .section {
    padding-block: 68px;
  }
  .site-header {
    min-height: 88px;
    gap: 18px;
    flex-wrap: wrap;
    position: relative;
  }
  .site-header .brand img {
    width: 58px;
    height: 58px;
  }
  .header-cta {
    margin-left: auto;
    font-size: 12px;
    padding: 10px 14px;
    gap: 13px;
  }
  .menu-toggle:not([hidden]) {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: 0;
    padding: 10px 0;
    color: var(--ink);
    font-size: 12px;
    order: 3;
  }
  .site-header nav {
    width: 100%;
    order: 4;
    margin: 0;
    justify-content: space-between;
    gap: 10px;
    padding: 5px 0 18px;
  }
  .site-header:has(.menu-toggle:not([hidden])) nav {
    display: none;
  }
  .site-header:has(.menu-toggle:not([hidden])) nav.is-open {
    display: flex;
  }
  .hero {
    grid-template-columns: 1fr;
    padding-block: 48px 46px;
    gap: 20px;
  }
  .hero-copy {
    max-width: 480px;
    margin: auto;
    width: 100%;
  }
  h1 {
    font-size: 76px;
  }
  .hero-description {
    font-size: 17px;
    margin-top: 22px;
  }
  .hero-benefits {
    margin-top: 25px;
    gap: 20px;
  }
  .hero-art {
    width: 100%;
    max-width: 480px;
    min-height: 570px;
    transform: none;
    margin: 15px auto 0;
  }
  .hero-art:before {
    width: 360px;
    height: 360px;
    left: calc(50% - 180px);
    top: 110px;
  }
  .orbit-one {
    width: 380px;
    height: 380px;
    left: calc(50% - 190px);
    top: 99px;
  }
  .orbit-two {
    width: 390px;
    height: 300px;
    left: calc(50% - 195px);
    top: 140px;
  }
  .phone {
    width: 265px;
    height: 480px;
    margin-top: 20px;
  }
  .note-top {
    font-size: 13px;
    right: 3px;
    top: 0;
  }
  .password-note {
    right: 0;
    bottom: -2px;
    padding: 13px 17px;
  }
  .intro-strip > .wrap {
    gap: 14px;
    font-size: 16px;
    padding-block: 20px;
  }
  .strip-flower {
    font-size: 22px;
  }
  .intro-strip span:not(.strip-flower) {
    max-width: 140px;
  }
  .section-heading {
    text-align: left;
    margin-bottom: 32px;
  }
  .section-heading > p:last-child {
    font-size: 15px;
  }
  .password-equation {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .password-part {
    padding: 23px 25px;
  }
  .password-part strong {
    font-size: 34px;
  }
  .equation-sign {
    line-height: 1;
  }
  .combined-password {
    padding-inline: 0;
  }
  .combined-password code {
    font-size: 23px;
  }
  .split-takeaway {
    align-items: start;
    gap: 12px;
  }
  .split-takeaway p {
    font-size: 12px;
  }
  .split-takeaway > span {
    font-size: 27px;
  }
  .example-caption {
    font-size: 9px;
  }
  .how-heading {
    display: block;
  }
  .how-heading > p {
    margin-top: 25px;
  }
  .steps {
    grid-template-columns: 1fr;
    gap: 35px;
    margin-top: 35px;
  }
  .step-visual {
    height: 86px;
  }
  .steps article {
    position: relative;
  }
  .step-number {
    position: absolute;
    right: 0;
    top: 20px;
  }
  .steps p {
    font-size: 14px;
    max-width: 450px;
  }
  .how-footer {
    align-items: start;
    gap: 15px;
    font-size: 11px;
  }
  .how-footer > span {
    text-align: right;
    max-width: 100px;
  }
  .security-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .knowledge-card {
    margin-inline: 7px;
    transform: rotate(1deg);
    padding: 25px;
  }
  .pricing-layout {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .price-card {
    padding: 28px;
  }
  .faq-section {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .faq-heading > p:last-child {
    margin-top: 18px;
  }
  .closing {
    padding-block: 60px;
  }
  .closing h2 {
    font-size: 48px;
  }
  .site-footer {
    padding-block: 27px;
    gap: 16px;
    flex-wrap: wrap;
  }
  .site-footer > div {
    width: 100%;
    margin: 0;
    gap: 20px;
    flex-wrap: wrap;
  }
  .site-footer > div > span {
    margin-left: auto;
  }
  .privacy-content h1 {
    font-size: 48px;
  }
}
@media (max-width: 390px) {
  h1 {
    font-size: 65px;
  }
  .hero-art {
    transform: scale(0.9);
    transform-origin: center center;
    margin-block: -10px;
    min-height: 540px;
  }
  .hero-benefits {
    gap: 11px;
    font-size: 10px;
  }
  .combined-password code {
    font-size: 20px;
  }
  .password-part strong {
    font-size: 30px;
  }
  .site-footer > div > span {
    margin-left: 0;
  }
  .site-header {
    gap: 12px;
  }
  .intro-strip > .wrap {
    gap: 10px;
    font-size: 15px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .button {
    transition: none;
  }
  .button:hover {
    transform: none;
  }
}

@media (max-width: 960px) {
  .hero-art:before {
    width: calc(100% - 20px);
    height: auto;
    aspect-ratio: 1;
    max-width: 360px;
    left: 10px;
  }
  .orbit-one {
    width: calc(100% - 8px);
    height: auto;
    aspect-ratio: 1;
    left: 4px;
    transform: none;
  }
  .orbit-two {
    display: none;
  }
}

.video-section {
  padding-bottom: 0;
}
.video-frame {
  max-width: 900px;
  margin: auto;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: #211b24;
  box-shadow: 0 20px 50px #30243112;
}
.video-frame video {
  width: 100%;
  aspect-ratio: 16/9;
  display: block;
}
.video-caption {
  text-align: center;
  font-size: 11px;
  margin-top: 20px;
}
.video-section .section-heading {
  margin-bottom: 32px;
}
@media (min-width: 961px) and (max-width: 1050px) {
  .orbit-one {
    width: 440px;
    height: 440px;
    transform: none;
    left: 20px;
  }
  .orbit-two {
    width: 440px;
    height: 280px;
    left: 10px;
  }
}
