:root {
  --mint: #c9f4d2;
  --sage: #b8d8c5;
  --cream: #fff9e9;
  --sky: #c7ddff;
  --yellow: #f8e899;
  --white: #fffdf6;
  --ink: #123b31;
  --muted: #5c786e;
  --line: rgba(18, 59, 49, 0.1);
  --shadow: 0 30px 80px rgba(18, 59, 49, 0.12);
  --radius: 28px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 16% 10%, rgba(201, 244, 210, 0.62), transparent 30rem),
    radial-gradient(circle at 84% 2%, rgba(199, 221, 255, 0.56), transparent 27rem),
    linear-gradient(180deg, #fffdf6 0%, #fff8e8 44%, #f5fbf0 100%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body.is-locked {
  overflow: hidden;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(31, 111, 87, 0.32);
  outline-offset: 3px;
}

button,
input,
textarea {
  font: inherit;
}

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

.ambient {
  position: fixed;
  inset: auto;
  z-index: -1;
  width: 38vw;
  aspect-ratio: 1;
  border-radius: 999px;
  filter: blur(50px);
  opacity: 0.34;
  pointer-events: none;
}

.ambient-one {
  top: 22rem;
  left: -18vw;
  background: var(--mint);
}

.ambient-two {
  right: -16vw;
  bottom: 18rem;
  background: var(--sky);
}

.password-gate {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 16% 18%, rgba(201, 244, 210, 0.82), transparent 24rem),
    radial-gradient(circle at 82% 8%, rgba(199, 221, 255, 0.72), transparent 27rem),
    linear-gradient(180deg, #fffdf6 0%, #fff8e8 100%);
  transition: opacity 260ms ease, visibility 260ms ease;
}

.password-gate.is-unlocked {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.gate-panel {
  position: relative;
  width: min(100%, 620px);
  padding: 42px;
  overflow: hidden;
  border: 1px solid rgba(18, 59, 49, 0.08);
  border-radius: 32px;
  background: rgba(255, 253, 246, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.gate-brand {
  margin-bottom: 68px;
}

.gate-panel h1 {
  max-width: 500px;
  font-size: clamp(3rem, 9vw, 5.2rem);
}

.gate-copy {
  max-width: 430px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.62;
}

.gate-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 9px;
  margin-top: 30px;
  padding: 8px;
  border: 1px solid rgba(18, 59, 49, 0.1);
  border-radius: 999px;
  background: rgba(255, 253, 246, 0.84);
}

.gate-form input {
  min-width: 0;
  min-height: 58px;
  padding: 0 18px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
}

.gate-form button {
  min-height: 58px;
  padding: 0 26px;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  cursor: pointer;
  font-weight: 800;
}

.gate-form p {
  grid-column: 1 / -1;
  margin: 2px 0 7px 12px;
  color: rgba(18, 59, 49, 0.62);
  font-size: 0.92rem;
}

.gate-form.has-error {
  border-color: rgba(126, 52, 33, 0.22);
}

.gate-form.has-error p {
  color: #7e3421;
}

.gate-companion {
  position: absolute;
  top: 48px;
  right: 44px;
  width: 76px;
  height: 90px;
  opacity: 0.95;
}

.gate-companion span {
  position: absolute;
  border-radius: 999px;
}

.gate-companion span:first-child {
  inset: 9px 15px 10px;
  background: var(--ink);
}

.gate-companion span:nth-child(2),
.gate-companion span:nth-child(3) {
  bottom: 31px;
  width: 10px;
  height: 10px;
  background: var(--white);
}

.gate-companion span:nth-child(2) {
  left: 29px;
}

.gate-companion span:nth-child(3) {
  right: 29px;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 18px;
  left: 50%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: min(1120px, calc(100% - 36px));
  height: 74px;
  padding: 0 12px 0 20px;
  transform: translateX(-50%);
  border: 1px solid transparent;
  border-radius: 999px;
  transition: height 260ms ease, background 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.site-header.is-scrolled {
  height: 62px;
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 253, 246, 0.74);
  box-shadow: 0 18px 44px rgba(18, 59, 49, 0.08);
  backdrop-filter: blur(22px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-family: Manrope, Inter, sans-serif;
  font-size: 1.03rem;
  font-weight: 800;
}

.brand-mark {
  width: 34px;
  height: 34px;
  color: #1f6f57;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  color: rgba(18, 59, 49, 0.72);
  font-size: 0.93rem;
  font-weight: 600;
}

.desktop-nav a,
.footer-links a {
  transition: color 180ms ease;
}

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

.nav-cta,
.signup button {
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  cursor: pointer;
  font-weight: 750;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.nav-cta {
  padding: 13px 19px;
  font-size: 0.93rem;
}

.nav-cta:hover,
.signup button:hover {
  background: #0b2e27;
  box-shadow: 0 16px 34px rgba(18, 59, 49, 0.18);
  transform: translateY(-1px);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(18, 59, 49, 0.08);
  color: var(--ink);
  cursor: pointer;
}

.menu-button span {
  position: absolute;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 220ms ease;
}

.menu-button span:first-child {
  transform: translateY(-4px);
}

.menu-button span:last-child {
  transform: translateY(4px);
}

.menu-button.is-open span:first-child {
  transform: rotate(42deg);
}

.menu-button.is-open span:last-child {
  transform: rotate(-42deg);
}

.mobile-menu {
  position: fixed;
  z-index: 18;
  top: 90px;
  left: 18px;
  right: 18px;
  display: grid;
  gap: 4px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 26px;
  background: rgba(255, 253, 246, 0.88);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px) scale(0.98);
  transition: opacity 220ms ease, transform 220ms ease;
  backdrop-filter: blur(22px);
}

.mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.mobile-menu a {
  padding: 15px 16px;
  border-radius: 16px;
  font-weight: 700;
}

.mobile-menu a:hover {
  background: rgba(201, 244, 210, 0.48);
}

main {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(360px, 0.82fr);
  align-items: center;
  min-height: 98vh;
  padding: 112px 0 48px;
  gap: 28px;
}

.badge,
.section-kicker {
  width: fit-content;
  margin: 0 0 22px;
  padding: 9px 13px;
  border: 1px solid rgba(18, 59, 49, 0.08);
  border-radius: 999px;
  background: rgba(255, 253, 246, 0.66);
  color: #2e6b59;
  font-size: 0.86rem;
  font-weight: 800;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Manrope, Inter, sans-serif;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  max-width: 690px;
  font-size: clamp(3.5rem, 5.15vw, 4.9rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(2.4rem, 5.5vw, 5.2rem);
  font-weight: 800;
}

h3 {
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  line-height: 1.04;
}

.hero-text {
  max-width: 640px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.7vw, 1.33rem);
  line-height: 1.65;
}

.signup {
  margin-top: 30px;
}

.hero-signup {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 9px;
  max-width: 655px;
  padding: 8px;
  border: 1px solid rgba(18, 59, 49, 0.1);
  border-radius: 999px;
  background: rgba(255, 253, 246, 0.82);
  box-shadow: 0 18px 46px rgba(18, 59, 49, 0.09);
}

.signup input,
.signup textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(18, 59, 49, 0.1);
  outline: 0;
  background: rgba(255, 253, 246, 0.82);
  color: var(--ink);
}

.hero-signup input {
  min-height: 58px;
  padding: 0 20px;
  border: 0;
  background: transparent;
}

.signup input::placeholder,
.signup textarea::placeholder {
  color: rgba(18, 59, 49, 0.4);
}

.signup button {
  min-height: 58px;
  padding: 0 24px;
  white-space: nowrap;
}

.hero-signup p {
  grid-column: 1 / -1;
  margin: 2px 0 7px 18px;
  color: rgba(18, 59, 49, 0.62);
  font-size: 0.91rem;
}

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

.protection-field {
  width: min(100%, 500px);
  overflow: visible;
}

.field-ring {
  transform-origin: center;
}

.ring-one {
  animation: breathe 7s ease-in-out infinite;
}

.ring-two {
  animation: breathe 7s ease-in-out infinite 700ms reverse;
}

.ring-three,
.mascot {
  animation: float 5s ease-in-out infinite;
}

.soft-dot {
  transform-origin: center;
  animation: pulse 4.5s ease-in-out infinite;
}

.dot-two {
  animation-delay: 900ms;
}

.dot-three {
  animation-delay: 1500ms;
}

.orbit-label {
  position: absolute;
  z-index: 2;
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(255, 253, 246, 0.7);
  box-shadow: 0 16px 32px rgba(18, 59, 49, 0.08);
  color: rgba(18, 59, 49, 0.76);
  font-size: 0.94rem;
  font-weight: 800;
  backdrop-filter: blur(16px);
  animation: labelFloat 5.5s ease-in-out infinite;
}

.label-one {
  top: 18%;
  left: 6%;
}

.label-two {
  top: 56%;
  right: 0;
  animation-delay: 900ms;
}

.label-three {
  bottom: 15%;
  left: 18%;
  animation-delay: 1500ms;
}

.editorial,
.comparison,
.bundle,
.profiles,
.how,
.journey,
.founding {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 58px;
  padding: 116px 0;
  border-top: 1px solid var(--line);
}

.editorial-copy p,
.bundle-copy p,
.vision p,
.founding p,
.faq details p {
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.75;
}

.section-heading {
  grid-column: 1 / -1;
  max-width: 760px;
}

blockquote {
  margin: 42px 0 0;
  padding: 34px;
  border: 1px solid rgba(18, 59, 49, 0.09);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(201, 244, 210, 0.58), rgba(255, 249, 233, 0.82));
  box-shadow: 0 24px 60px rgba(18, 59, 49, 0.08);
  font-family: Manrope, Inter, sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.7rem);
  font-weight: 800;
  line-height: 1.09;
}

.protection-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 92px 0 116px;
}

.protection-cards article {
  min-height: 355px;
  padding: 28px;
  border: 1px solid rgba(18, 59, 49, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 253, 246, 0.68);
  box-shadow: 0 20px 60px rgba(18, 59, 49, 0.07);
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.protection-cards article:hover {
  background: rgba(255, 253, 246, 0.9);
  box-shadow: 0 34px 82px rgba(18, 59, 49, 0.12);
  transform: translateY(-6px);
}

.card-orb {
  display: block;
  width: 86px;
  height: 86px;
  margin-bottom: 90px;
  border-radius: 32px;
  background:
    radial-gradient(circle at 34% 28%, #fffdf6 0 13px, transparent 14px),
    linear-gradient(135deg, var(--mint), var(--sky));
}

.protection-cards article:nth-child(2) .card-orb {
  background:
    radial-gradient(circle at 62% 36%, #fffdf6 0 13px, transparent 14px),
    linear-gradient(135deg, var(--yellow), var(--mint));
}

.protection-cards article:nth-child(3) .card-orb {
  background:
    radial-gradient(circle at 50% 64%, #fffdf6 0 13px, transparent 14px),
    linear-gradient(135deg, var(--sage), var(--cream));
}

.protection-cards p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.62;
}

.profiles {
  grid-template-columns: 1fr;
  gap: 40px;
}

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

.profile-grid article {
  min-height: 230px;
  padding: 22px;
  border: 1px solid rgba(18, 59, 49, 0.08);
  border-radius: 24px;
  background: rgba(255, 253, 246, 0.62);
  box-shadow: 0 18px 46px rgba(18, 59, 49, 0.06);
}

.profile-grid h3 {
  font-size: 1.22rem;
  line-height: 1.12;
}

.profile-grid p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.55;
}

.how {
  align-items: start;
}

.how h2 {
  font-size: clamp(2.35rem, 4.8vw, 4.9rem);
}

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

.how-steps li {
  padding: 24px;
  border: 1px solid rgba(18, 59, 49, 0.08);
  border-radius: 24px;
  background: rgba(255, 253, 246, 0.62);
  box-shadow: 0 18px 48px rgba(18, 59, 49, 0.06);
}

.how-steps span {
  display: inline-block;
  margin-bottom: 24px;
  color: rgba(18, 59, 49, 0.36);
  font-weight: 800;
}

.how-steps h3 {
  font-size: 1.45rem;
}

.how-steps p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.bundle {
  align-items: center;
}

.bundle-copy h2 {
  font-size: clamp(2.35rem, 4.6vw, 4.8rem);
}

.bundle-copy p {
  max-width: 590px;
}

.bundle-map {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 58px minmax(190px, 0.76fr);
  align-items: center;
  gap: 18px;
}

.fragment-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-content: center;
  min-height: 330px;
  padding: 26px;
  border: 1px solid rgba(18, 59, 49, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 253, 246, 0.58);
}

.fragment-list span {
  padding: 12px 14px;
  border: 1px solid rgba(18, 59, 49, 0.08);
  border-radius: 999px;
  background: rgba(255, 253, 246, 0.74);
  color: rgba(18, 59, 49, 0.68);
  font-size: 0.91rem;
  font-weight: 800;
}

.bundle-arrow {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background:
    linear-gradient(var(--ink), var(--ink)) center / 22px 3px no-repeat,
    linear-gradient(90deg, var(--mint), var(--sky));
  box-shadow: 0 16px 34px rgba(18, 59, 49, 0.1);
}

.elma-membership {
  display: grid;
  align-content: center;
  min-height: 330px;
  padding: 28px;
  border: 1px solid rgba(18, 59, 49, 0.08);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(201, 244, 210, 0.68), rgba(199, 221, 255, 0.32));
  box-shadow: 0 24px 70px rgba(18, 59, 49, 0.1);
}

.elma-membership .brand-mark {
  width: 54px;
  height: 54px;
  margin-bottom: 64px;
}

.elma-membership p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.62;
}

.comparison {
  align-items: stretch;
  grid-template-columns: 1fr 84px 1fr;
}

.compare-panel {
  padding: 38px;
  border-radius: var(--radius);
  background: rgba(255, 253, 246, 0.58);
  border: 1px solid rgba(18, 59, 49, 0.08);
}

.compare-panel.tomorrow {
  background: linear-gradient(145deg, rgba(201, 244, 210, 0.64), rgba(199, 221, 255, 0.26));
}

.compare-panel h2 {
  font-size: clamp(2.2rem, 4vw, 4.15rem);
}

.compare-panel ul {
  display: grid;
  gap: 18px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.compare-panel li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  line-height: 1.62;
}

.compare-panel li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--sage);
}

.tomorrow li::before {
  background: var(--ink);
}

.compare-bridge {
  display: grid;
  place-items: center;
}

.compare-bridge span {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background:
    linear-gradient(var(--ink), var(--ink)) center / 24px 3px no-repeat,
    linear-gradient(90deg, var(--mint), var(--sky));
  box-shadow: 0 16px 34px rgba(18, 59, 49, 0.1);
}

.journey {
  align-items: start;
}

.journey h2 {
  font-size: clamp(2.35rem, 4.8vw, 4.9rem);
}

.journey-steps {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: journey;
}

.journey-steps li {
  position: relative;
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 22px;
  padding: 20px 22px;
  border: 1px solid rgba(18, 59, 49, 0.08);
  border-radius: 22px;
  background: rgba(255, 253, 246, 0.58);
}

.journey-steps li::before {
  counter-increment: journey;
  content: "0" counter(journey);
  position: absolute;
  top: 20px;
  right: 22px;
  color: rgba(18, 59, 49, 0.24);
  font-weight: 800;
}

.journey-steps span {
  font-family: Manrope, Inter, sans-serif;
  font-weight: 800;
}

.journey-steps p {
  margin: 0;
  padding-right: 42px;
  color: var(--muted);
  line-height: 1.56;
}

.vision {
  position: relative;
  margin: 94px auto 0;
  padding: 116px min(8vw, 94px);
  overflow: hidden;
  border-radius: 36px;
  background:
    radial-gradient(circle at 85% 24%, rgba(248, 232, 153, 0.4), transparent 20rem),
    linear-gradient(135deg, rgba(18, 59, 49, 0.94), #1e6c58);
  color: var(--white);
}

.vision .section-kicker {
  background: rgba(255, 255, 255, 0.13);
  color: #e4f8e7;
  border-color: rgba(255, 255, 255, 0.18);
}

.vision h2 {
  max-width: 920px;
}

.vision p {
  max-width: 740px;
  color: rgba(255, 253, 246, 0.76);
}

.vision .vision-line {
  margin-top: 34px;
  color: var(--white);
  font-family: Manrope, Inter, sans-serif;
  font-size: clamp(1.55rem, 2.8vw, 2.45rem);
  font-weight: 800;
  line-height: 1.14;
}

.tiny-companion {
  position: absolute;
  right: min(9vw, 90px);
  bottom: 76px;
  width: 92px;
  height: 108px;
}

.tiny-companion span {
  position: absolute;
  border-radius: 999px;
}

.tiny-companion span:first-child {
  inset: 10px 18px 12px;
  background: var(--white);
}

.tiny-companion span:nth-child(2),
.tiny-companion span:nth-child(3) {
  bottom: 22px;
  width: 22px;
  height: 22px;
  background: var(--ink);
}

.tiny-companion span:nth-child(2) {
  left: 32px;
}

.tiny-companion span:nth-child(3) {
  right: 32px;
}

.founding {
  align-items: start;
  margin-top: 116px;
}

.founding h2 {
  font-size: clamp(2.55rem, 5vw, 5.6rem);
}

.founding-form {
  display: grid;
  gap: 18px;
  margin-top: 0;
  padding: 24px;
  border: 1px solid rgba(18, 59, 49, 0.09);
  border-radius: var(--radius);
  background: rgba(255, 253, 246, 0.72);
  box-shadow: 0 24px 70px rgba(18, 59, 49, 0.1);
}

.founding-form label {
  display: grid;
  gap: 9px;
  color: rgba(18, 59, 49, 0.78);
  font-weight: 800;
}

.founding-form input,
.founding-form select,
.founding-form textarea {
  min-height: 58px;
  padding: 16px;
  border-radius: 18px;
}

.founding-form select {
  width: 100%;
  border: 1px solid rgba(18, 59, 49, 0.1);
  outline: 0;
  background: rgba(255, 253, 246, 0.82);
  color: var(--ink);
}

.founding-form textarea {
  resize: vertical;
}

.founding-form button {
  width: 100%;
  min-height: 60px;
}

.founding-form p {
  margin: 0;
  font-size: 0.94rem;
}

.founding-benefits {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.founding-benefits li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  font-weight: 700;
}

.founding-benefits li::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--sage);
}

.faq {
  padding: 30px 0 118px;
}

.faq h2 {
  margin-bottom: 34px;
}

.accordion {
  display: grid;
  gap: 12px;
}

.faq details {
  border: 1px solid rgba(18, 59, 49, 0.09);
  border-radius: 22px;
  background: rgba(255, 253, 246, 0.62);
}

.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  padding: 0 24px;
  cursor: pointer;
  font-family: Manrope, Inter, sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  list-style: none;
}

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

.faq summary::after {
  content: "+";
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(201, 244, 210, 0.6);
  transition: transform 180ms ease;
}

.faq details[open] summary::after {
  transform: rotate(45deg);
}

.faq details p {
  max-width: 820px;
  margin: -4px 24px 24px;
}

footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 42px 0 56px;
  border-top: 1px solid var(--line);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  color: rgba(18, 59, 49, 0.66);
  font-size: 0.94rem;
  font-weight: 700;
}

footer p {
  max-width: 360px;
  margin: 0;
  color: rgba(18, 59, 49, 0.55);
  font-size: 0.88rem;
  line-height: 1.55;
  text-align: right;
}

@keyframes breathe {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.035);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.86;
  }
  50% {
    transform: scale(1.22);
    opacity: 1;
  }
}

@keyframes labelFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -12px, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    padding-right: 10px;
  }

  .desktop-nav,
  .nav-cta {
    display: none;
  }

  .menu-button {
    display: grid;
    justify-self: end;
  }

  .hero,
  .editorial,
  .bundle,
  .profiles,
  .how,
  .journey,
  .founding {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 124px;
    gap: 24px;
  }

  .hero-art {
    min-height: 430px;
    margin-top: 10px;
  }

  h1 {
    font-size: clamp(3.15rem, 12vw, 5.4rem);
  }

  .protection-cards,
  .comparison,
  .bundle-map {
    grid-template-columns: 1fr;
  }

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

  .bundle-arrow {
    justify-self: center;
    transform: rotate(90deg);
  }

  .compare-bridge {
    height: 28px;
  }

  .compare-bridge span {
    transform: rotate(90deg);
  }

  footer {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  footer p {
    text-align: left;
  }
}

@media (max-width: 640px) {
  main,
  footer {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    top: 12px;
    width: calc(100% - 24px);
    height: 62px;
  }

  .gate-panel {
    padding: 28px;
    border-radius: 28px;
  }

  .gate-brand {
    margin-bottom: 54px;
  }

  .gate-companion {
    top: 32px;
    right: 26px;
    transform: scale(0.82);
    transform-origin: top right;
  }

  .gate-form {
    grid-template-columns: 1fr;
    border-radius: 24px;
  }

  .gate-form button {
    width: 100%;
  }

  .hero {
    padding-top: 100px;
  }

  .hero-art {
    min-height: 310px;
  }

  .orbit-label {
    padding: 9px 11px;
    font-size: 0.78rem;
  }

  .label-one {
    left: 0;
  }

  .label-two {
    right: -4px;
  }

  .label-three {
    left: 8%;
  }

  .hero-signup {
    grid-template-columns: 1fr;
    border-radius: 24px;
  }

  .hero-signup input {
    min-height: 54px;
  }

  .hero-signup button {
    min-height: 56px;
    white-space: normal;
  }

  .hero-signup p {
    margin-left: 10px;
  }

  .editorial,
  .comparison,
  .bundle,
  .profiles,
  .how,
  .journey,
  .founding {
    padding: 78px 0;
    gap: 28px;
  }

  .protection-cards {
    padding: 64px 0 84px;
  }

  .protection-cards article {
    min-height: 280px;
  }

  .card-orb {
    margin-bottom: 62px;
  }

  .compare-panel,
  blockquote {
    padding: 24px;
  }

  .fragment-list,
  .elma-membership {
    min-height: auto;
    padding: 22px;
  }

  .elma-membership .brand-mark {
    margin-bottom: 42px;
  }

  .journey-steps li {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 18px;
  }

  .journey-steps p {
    padding-right: 34px;
  }

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

  .profile-grid article {
    min-height: auto;
  }

  .how-steps li {
    padding: 20px;
  }

  .vision {
    margin-top: 58px;
    padding: 78px 24px 130px;
    border-radius: 28px;
  }

  .tiny-companion {
    right: 22px;
    bottom: 26px;
    transform: scale(0.78);
    transform-origin: bottom right;
  }

  .faq summary {
    gap: 18px;
    min-height: 72px;
    padding: 0 18px;
    font-size: 1.05rem;
  }

  .faq details p {
    margin: -4px 18px 20px;
    font-size: 1rem;
  }
}
