:root {
  --ink: #102f36;
  --white: #f8fcfd;
  --white-soft: rgba(248, 252, 253, 0.76);
  --white-faint: rgba(248, 252, 253, 0.56);
  --cyan: #b9fff6;
  --cyan-strong: #79e9df;
  --mint: #9ff2df;
  --lavender: #b6c4f4;
  --glass: rgba(188, 215, 221, 0.09);
  --glass-medium: rgba(188, 216, 222, 0.14);
  --glass-strong: rgba(185, 216, 223, 0.20);
  --glass-dark: rgba(24, 54, 61, 0.18);
  --line: rgba(188, 255, 247, 0.62);
  --line-soft: rgba(255, 255, 255, 0.18);
  --radius-shell: 32px;
  --radius-panel: 22px;
  --font: "Aptos", "Segoe UI Variable", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  min-width: 320px;
  margin: 0;
  color: var(--white);
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  background: #315a60;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body,
button,
a,
summary {
  font-family: var(--font);
}

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

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

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

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

ul {
  margin: 0;
  padding: 0;
}

:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 11px 16px;
  border-radius: 10px;
  color: var(--ink);
  background: var(--cyan);
  font-weight: 700;
  transform: translateY(-150%);
  transition: transform 220ms ease;
}

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

.site-background {
  position: fixed;
  z-index: -3;
  inset: -1.5%;
  background: url("../assets/images/bg.webp") 50% center / cover no-repeat;
  filter: blur(3px) brightness(.84) saturate(.86);
  transform: scale(1.02);
}

.site-fog {
  position: fixed;
  z-index: -2;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 16% 15%, rgba(185, 255, 246, .10), transparent 40%),
    radial-gradient(circle at 84% 38%, rgba(182, 196, 244, .08), transparent 42%),
    linear-gradient(145deg, rgba(16, 62, 70, .08), rgba(25, 69, 78, .10));
}

.app-shell {
  position: relative;
  width: calc(100% - 10px);
  margin: 5px auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--glass);
  box-shadow:
    0 28px 90px rgba(9, 30, 36, 0.22),
    0 0 34px rgba(131, 239, 226, 0.17),
    inset 0 0 0 1px rgba(255, 255, 255, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(20px) saturate(1.08);
  -webkit-backdrop-filter: blur(20px) saturate(1.08);
}

.app-shell::before {
  content: "";
  position: absolute;
  z-index: 5;
  inset: 5px;
  border: 1px solid rgba(220, 255, 251, .16);
  border-radius: 21px;
  pointer-events: none;
}

.site-header {
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  min-height: 68px;
  padding: 10px 19px;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
  background: rgba(167, 202, 210, .08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  min-height: 44px;
}

.brand img {
  width: 46px;
  height: auto;
  flex: 0 0 auto;
}

.brand span {
  color: #fff;
  font-size: .74rem;
  font-weight: 650;
  letter-spacing: .19em;
  line-height: 1;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 44px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 14px;
  color: #fff;
  background: rgba(188, 216, 222, .14);
  cursor: pointer;
}

.js .menu-toggle {
  display: grid;
  place-content: center;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 1.5px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 220ms ease, opacity 220ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

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

.primary-nav {
  grid-column: 1 / -1;
  display: grid;
  gap: 2px;
  padding: 8px 0 5px;
}

.js .primary-nav {
  display: none;
}

.js .primary-nav.is-open {
  display: grid;
}

.primary-nav a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 5px 10px;
  border-radius: 10px;
  color: rgba(255, 255, 255, .84);
  font-size: .91rem;
  font-weight: 520;
  transition: color 200ms ease, background 200ms ease;
}

.primary-nav a:hover {
  color: #fff;
  background: rgba(185, 255, 246, .09);
}

.header-cta {
  display: none !important;
}

.section {
  margin: 0 10px 10px;
}

.hero {
  display: grid;
  gap: 28px;
  padding: 46px 20px 24px;
  background: rgba(188, 215, 221, .09);
}

.hero-copy {
  align-self: center;
  min-width: 0;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--cyan);
  font-size: .73rem;
  font-weight: 680;
  letter-spacing: .145em;
  line-height: 1.35;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  color: #fff;
  font-weight: 560;
  text-wrap: balance;
}

h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(2.45rem, 12vw, 3.45rem);
  letter-spacing: -.035em;
  line-height: 1.05;
  text-shadow: 0 2px 20px rgba(8, 35, 40, .28);
}

h1 span {
  display: block;
  color: var(--cyan);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(1.9rem, 5vw, 3.15rem);
  letter-spacing: -.027em;
  line-height: 1.1;
  text-shadow: 0 2px 18px rgba(8, 35, 40, .24);
}

h3 {
  line-height: 1.2;
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, .94);
  font-size: clamp(1.06rem, 3vw, 1.3rem);
  line-height: 1.55;
  text-shadow: 0 1px 14px rgba(8, 35, 40, .32);
}

.hero-description,
.module-copy > p,
.compact-module > p,
.method-section > p {
  color: var(--white-soft);
}

.hero-description {
  max-width: 620px;
  margin-bottom: 28px;
  font-size: 1rem;
}

.button-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 19px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: .92rem;
  font-weight: 680;
  line-height: 1.2;
  text-align: center;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

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

.button-primary {
  color: var(--ink);
  border-color: rgba(255, 255, 255, .64);
  background: var(--cyan);
  box-shadow: 0 9px 26px rgba(121, 233, 223, .16);
}

.button-primary:hover {
  background: #d2fff9;
  box-shadow: 0 11px 30px rgba(121, 233, 223, .22);
}

.button-secondary,
.button-small {
  color: #fff;
  border-color: rgba(210, 255, 249, .30);
  background: rgba(188, 216, 222, .12);
  backdrop-filter: blur(12px);
}

.button-secondary:hover,
.button-small:hover {
  border-color: rgba(188, 255, 247, .66);
  background: rgba(188, 216, 222, .19);
}

.button-light {
  color: var(--ink);
  border-color: rgba(255, 255, 255, .75);
  background: rgba(248, 252, 253, .92);
  box-shadow: 0 10px 30px rgba(10, 41, 46, .14);
}

.button-light:hover {
  background: #fff;
}

.button-small {
  min-height: 44px;
  padding: 10px 17px;
}

.price-card {
  position: relative;
  align-self: center;
  min-width: 0;
  overflow: hidden;
  padding: 28px 20px 20px;
  border: 1px solid rgba(188, 255, 247, .58);
  border-radius: 25px;
  background: rgba(185, 216, 223, .20);
  box-shadow:
    0 18px 50px rgba(8, 35, 40, .16),
    inset 0 1px 0 rgba(255, 255, 255, .22);
  backdrop-filter: blur(24px) saturate(1.08);
  -webkit-backdrop-filter: blur(24px) saturate(1.08);
}

.price-content {
  position: relative;
  z-index: 2;
}

.shape,
.corner-shape,
.cta-shape {
  position: absolute;
  display: block;
  pointer-events: none;
}

.shape {
  width: 105px;
  height: 105px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 24px;
  filter: blur(.2px);
  transform: rotate(17deg);
}

.shape-mint {
  top: -40px;
  right: -22px;
  background: rgba(159, 242, 223, .34);
}

.shape-lavender {
  right: 28px;
  bottom: 92px;
  width: 72px;
  height: 72px;
  background: rgba(182, 196, 244, .27);
  transform: rotate(-16deg);
}

.price {
  margin: 3px 0 -8px;
  color: #fff;
  font-size: clamp(3.25rem, 16vw, 5.25rem);
  font-weight: 570;
  letter-spacing: -.055em;
  line-height: 1;
  white-space: nowrap;
  text-shadow: 0 3px 20px rgba(8, 35, 40, .24);
}

.price span {
  font-size: .32em;
  letter-spacing: -.02em;
  vertical-align: top;
  line-height: 2.2;
}

.price-period {
  margin: 8px 0 24px;
  color: rgba(255, 255, 255, .74);
  font-size: .9rem;
}

.included-list {
  display: grid;
  gap: 9px;
  margin-bottom: 25px;
  list-style: none;
}

.included-list li {
  position: relative;
  padding-left: 22px;
  color: rgba(255, 255, 255, .90);
  font-size: .9rem;
}

.included-list li::before,
.feature-list li::before {
  content: "";
  position: absolute;
  left: 1px;
  top: .66em;
  width: 8px;
  height: 5px;
  border-left: 1.5px solid var(--cyan);
  border-bottom: 1.5px solid var(--cyan);
  transform: rotate(-45deg);
}

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

.subscription-section {
  padding: 58px 10px 16px;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 30px;
}

.service-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.service-card {
  min-width: 0;
  min-height: 148px;
  padding: 17px 14px;
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  background: rgba(188, 215, 221, .09);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .14);
  backdrop-filter: blur(14px);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.service-card:last-child {
  grid-column: 1 / -1;
}

.service-card:hover {
  border-color: rgba(188, 255, 247, .50);
  background: rgba(188, 216, 222, .15);
  transform: translateY(-2px);
}

.service-mint {
  background: linear-gradient(145deg, rgba(159, 242, 223, .15), rgba(188, 215, 221, .08));
}

.service-blue {
  background: linear-gradient(145deg, rgba(160, 221, 239, .14), rgba(188, 215, 221, .08));
}

.service-lavender {
  background: linear-gradient(145deg, rgba(182, 196, 244, .15), rgba(188, 215, 221, .08));
}

.service-card svg,
.icon-tile svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: var(--cyan);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card > span {
  display: block;
  margin: 20px 0 4px;
  color: var(--white-faint);
  font-size: .68rem;
  letter-spacing: .12em;
}

.service-card h3 {
  margin: 0;
  font-size: .91rem;
  overflow-wrap: anywhere;
}

.module {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-panel);
  background: rgba(188, 215, 221, .09);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 14px 38px rgba(11, 38, 44, 0.10);
  backdrop-filter: blur(16px) saturate(1.05);
  -webkit-backdrop-filter: blur(16px) saturate(1.05);
}

.brand-module,
.site-module,
.community-module {
  display: grid;
  gap: 34px;
  padding: 34px 20px;
}

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

.module-copy > p {
  max-width: 640px;
  margin-bottom: 24px;
}

.feature-list {
  display: grid;
  gap: 10px;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 23px;
  color: rgba(255, 255, 255, .86);
}

.concept-cards {
  display: grid;
  gap: 10px;
  align-content: center;
}

.concept-card {
  position: relative;
  min-height: 112px;
  overflow: hidden;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 18px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .22);
}

.concept-card span {
  position: relative;
  z-index: 2;
  color: #fff;
  font-size: .7rem;
  font-weight: 680;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.concept-card i {
  position: absolute;
  right: -12px;
  bottom: -20px;
  width: 78px;
  height: 78px;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 22px;
  transform: rotate(22deg);
}

.concept-mint {
  background: rgba(159, 242, 223, .26);
}

.concept-lavender {
  background: rgba(182, 196, 244, .25);
}

.concept-blue {
  background: rgba(161, 222, 240, .23);
}

.site-module {
  background: linear-gradient(130deg, rgba(188, 215, 221, .10), rgba(182, 196, 244, .08));
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}

.tag-list li {
  padding: 8px 11px;
  border: 1px solid rgba(188, 255, 247, .28);
  border-radius: 999px;
  color: rgba(255, 255, 255, .86);
  background: rgba(188, 216, 222, .10);
  font-size: .76rem;
  line-height: 1.25;
}

.website-preview {
  align-self: center;
  padding: 10px;
  border: 1px solid rgba(188, 255, 247, .30);
  border-radius: 21px;
  background: rgba(16, 47, 54, .15);
  box-shadow: 0 22px 45px rgba(9, 30, 36, .17);
  transform: rotate(1.5deg);
}

.preview-browser {
  overflow: hidden;
  min-height: 280px;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 14px;
  background: rgba(238, 250, 250, .36);
}

.preview-top {
  display: flex;
  align-items: center;
  gap: 5px;
  height: 35px;
  padding: 0 10px;
  border-bottom: 1px solid rgba(255, 255, 255, .30);
  background: rgba(16, 47, 54, .15);
}

.preview-top i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  opacity: .75;
}

.preview-top i:nth-child(2) {
  background: var(--mint);
}

.preview-top i:nth-child(3) {
  background: var(--lavender);
}

.preview-top span {
  width: 36%;
  height: 6px;
  margin-left: auto;
  border-radius: 8px;
  background: rgba(255, 255, 255, .38);
}

.preview-layout {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 14px;
  padding: 22px 16px 18px;
}

.preview-copy {
  padding-top: 8px;
}

.preview-copy b {
  display: block;
  width: 90%;
  height: 10px;
  margin-bottom: 7px;
  border-radius: 7px;
  background: rgba(16, 47, 54, .58);
}

.preview-copy b:nth-child(2) {
  width: 72%;
}

.preview-copy b:nth-child(3) {
  width: 50%;
}

.preview-copy em {
  display: block;
  width: 60%;
  height: 25px;
  margin-top: 18px;
  border-radius: 9px;
  background: rgba(185, 255, 246, .75);
}

.preview-visual {
  position: relative;
  min-height: 128px;
  overflow: hidden;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(159, 242, 223, .78), rgba(182, 196, 244, .72));
}

.preview-visual span,
.preview-visual i {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: 18px;
  background: rgba(255, 255, 255, .16);
  transform: rotate(24deg);
}

.preview-visual span {
  inset: 18px 24px 30px 16px;
}

.preview-visual i {
  width: 56px;
  height: 56px;
  right: -8px;
  bottom: -8px;
}

.preview-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  padding: 0 16px 17px;
}

.preview-row span {
  height: 52px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 10px;
  background: rgba(16, 47, 54, .13);
}

.paired-modules {
  display: grid;
  gap: 10px;
}

.compact-module {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  padding: 28px 20px;
}

.compact-module h2 {
  max-width: 430px;
  font-size: clamp(1.75rem, 7vw, 2.55rem);
}

.compact-module > p:last-of-type {
  position: relative;
  z-index: 2;
  max-width: 430px;
}

.icon-tile {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 35px;
  border: 1px solid rgba(188, 255, 247, .34);
  border-radius: 16px;
  background: rgba(188, 216, 222, .15);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .18);
}

.corner-shape {
  right: -34px;
  bottom: -38px;
  width: 140px;
  height: 140px;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 30px;
  transform: rotate(19deg);
}

.corner-mint {
  background: rgba(159, 242, 223, .20);
}

.corner-lavender {
  background: rgba(182, 196, 244, .20);
  transform: rotate(-17deg);
}

.text-link {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  margin-top: 11px;
  color: var(--cyan);
  font-weight: 650;
}

.text-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 200ms ease;
}

.text-link:hover svg {
  transform: translate(2px, -2px);
}

.community-module {
  background: linear-gradient(130deg, rgba(188, 215, 221, .10), rgba(159, 242, 223, .06));
}

.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  align-content: center;
}

.ecosystem-card {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  min-height: 125px;
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, .23);
  border-radius: 18px;
  color: #fff;
  background: rgba(159, 242, 223, .16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .20);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.ecosystem-card:hover {
  border-color: rgba(188, 255, 247, .65);
  background: rgba(159, 242, 223, .22);
  transform: translateY(-2px);
}

.ecosystem-card span {
  font-size: .88rem;
  font-weight: 620;
}

.ecosystem-card svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--cyan);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ecosystem-main {
  grid-column: 1 / -1;
  min-height: 150px;
  background: linear-gradient(145deg, rgba(159, 242, 223, .24), rgba(161, 222, 240, .14));
}

.ecosystem-lavender {
  background: rgba(182, 196, 244, .18);
}

.method-section {
  display: grid;
  gap: 30px;
  padding: 65px 20px;
  border-top: 1px solid rgba(255, 255, 255, .13);
  border-bottom: 1px solid rgba(255, 255, 255, .13);
  background: rgba(24, 54, 61, .10);
}

.method-section h2 {
  margin-bottom: 0;
}

.method-section > p {
  align-self: end;
  max-width: 500px;
  margin-bottom: 3px;
  font-size: 1.05rem;
}

.faq-section {
  padding: 58px 10px 20px;
}

.faq-list {
  display: grid;
  gap: 8px;
}

.faq-list details {
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 17px;
  background: rgba(188, 215, 221, .09);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .10);
  backdrop-filter: blur(14px);
}

.faq-list summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 66px;
  padding: 16px 50px 16px 16px;
  color: #fff;
  font-weight: 580;
  line-height: 1.35;
  list-style: none;
  cursor: pointer;
}

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

.faq-list summary span,
.faq-list summary span::after {
  position: absolute;
  display: block;
  width: 14px;
  height: 1.5px;
  border-radius: 2px;
  background: var(--cyan);
  transition: transform 220ms ease;
}

.faq-list summary span {
  right: 19px;
  top: 50%;
}

.faq-list summary span::after {
  content: "";
  transform: rotate(90deg);
}

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

.faq-list details p {
  max-width: 760px;
  margin: 0;
  padding: 0 50px 20px 16px;
  color: var(--white-soft);
}

.final-cta {
  position: relative;
  display: grid;
  gap: 28px;
  overflow: hidden;
  padding: 52px 20px;
  border: 1px solid rgba(188, 255, 247, .42);
  border-radius: 22px;
  background: rgba(185, 216, 223, .18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .20), 0 18px 45px rgba(9, 30, 36, .12);
  backdrop-filter: blur(18px);
}

.final-cta > *:not(.cta-shape) {
  position: relative;
  z-index: 2;
}

.final-cta h2 {
  max-width: 710px;
  margin-bottom: 0;
}

.cta-shape {
  border: 1px solid rgba(255, 255, 255, .23);
  border-radius: 30px;
}

.cta-shape-one {
  top: -60px;
  right: 9%;
  width: 150px;
  height: 150px;
  background: rgba(159, 242, 223, .22);
  transform: rotate(24deg);
}

.cta-shape-two {
  right: -30px;
  bottom: -70px;
  width: 170px;
  height: 170px;
  background: rgba(182, 196, 244, .20);
  transform: rotate(-19deg);
}

.site-footer {
  margin-top: 18px;
  padding: 45px 20px 24px;
  border-top: 1px solid rgba(210, 255, 249, .26);
  color: #fff;
  background: rgba(176, 207, 213, .11);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12);
  backdrop-filter: blur(22px) saturate(1.05);
  -webkit-backdrop-filter: blur(22px) saturate(1.05);
}

.footer-grid {
  display: grid;
  gap: 34px;
}

.footer-brand p {
  max-width: 230px;
  margin: 13px 0 0;
  color: var(--white-soft);
}

.site-footer h2 {
  margin-bottom: 12px;
  color: var(--cyan);
  font-size: .72rem;
  font-weight: 680;
  letter-spacing: .13em;
  text-transform: uppercase;
  text-shadow: none;
}

.site-footer ul {
  display: grid;
  gap: 5px;
  list-style: none;
}

.site-footer li,
.site-footer li a {
  color: rgba(255, 255, 255, .78);
  font-size: .91rem;
}

.site-footer li a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  transition: color 200ms ease;
}

.site-footer li a:hover {
  color: var(--cyan);
}

.footer-bottom {
  margin: 36px 0 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .14);
  color: var(--white-faint);
  font-size: .78rem;
}

@media (max-width: 819px) {
  .site-background {
    background-image: url("../assets/images/bg-mobile.webp");
    background-position: 50% center;
    filter: blur(3px) brightness(.78) saturate(.84);
  }
}

@media (min-width: 480px) {
  .hero,
  .brand-module,
  .site-module,
  .community-module,
  .compact-module,
  .method-section,
  .final-cta {
    padding-left: 28px;
    padding-right: 28px;
  }

  .section {
    margin-right: 16px;
    margin-left: 16px;
  }

  .subscription-section,
  .faq-section {
    padding-right: 12px;
    padding-left: 12px;
  }

  .button-group {
    flex-direction: row;
    flex-wrap: wrap;
  }

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

  .included-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 640px) {
  .service-strip {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .service-card:last-child {
    grid-column: auto;
  }

  .service-card {
    min-height: 170px;
  }

  .footer-grid {
    grid-template-columns: 1.35fr repeat(3, 1fr);
    gap: 24px;
  }
}

@media (min-width: 820px) {
  .app-shell {
    width: min(calc(100% - 24px), 1080px);
    margin: 12px auto;
    border-radius: var(--radius-shell);
  }

  .app-shell::before {
    inset: 7px;
    border-radius: 25px;
  }

  .section {
    margin-right: 20px;
    margin-bottom: 20px;
    margin-left: 20px;
  }

  .hero {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
    gap: clamp(32px, 5vw, 60px);
    min-height: calc(100vh - 101px);
    padding: clamp(55px, 7vw, 77px) clamp(36px, 6vw, 66px);
  }

  h1 {
    font-size: clamp(2.75rem, 6.7vw, 4.55rem);
  }

  .price-card {
    padding: 37px 27px 27px;
  }

  .price {
    font-size: clamp(3.25rem, 6.2vw, 5.25rem);
  }

  .included-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .subscription-section,
  .faq-section {
    padding: 72px 22px 24px;
  }

  .brand-module,
  .site-module,
  .community-module {
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, .9fr);
    gap: clamp(40px, 6vw, 70px);
    padding: 58px clamp(38px, 5vw, 60px);
  }

  .concept-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .concept-card:first-child {
    grid-column: 1 / -1;
    min-height: 130px;
  }

  .paired-modules {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .compact-module {
    min-height: 390px;
    padding: 40px;
  }

  .community-module {
    grid-template-columns: minmax(0, 1.05fr) minmax(300px, .95fr);
  }

  .method-section {
    grid-template-columns: minmax(0, 1.35fr) minmax(260px, .65fr);
    align-items: end;
    gap: 60px;
    padding: 80px clamp(38px, 6vw, 68px);
  }

  .final-cta {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 42px;
    padding: 62px clamp(38px, 6vw, 68px);
  }

  .final-cta .button {
    min-width: 205px;
  }

  .site-footer {
    padding: 55px 40px 27px;
  }
}

@media (min-width: 820px) {
  .site-header {
    grid-template-columns: 1fr auto 1fr;
    min-height: 76px;
    padding: 10px 28px;
  }

  .js .menu-toggle,
  .menu-toggle {
    display: none;
  }

  .primary-nav,
  .js .primary-nav,
  .js .primary-nav.is-open {
    grid-column: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1px;
    padding: 0;
  }

  .primary-nav a {
    padding: 6px 11px;
    font-size: .82rem;
  }

  .header-cta {
    display: inline-flex !important;
    justify-self: end;
  }

  .hero {
    min-height: calc(100vh - 112px);
  }
}

@media (max-width: 370px) {
  .site-header {
    padding-right: 15px;
    padding-left: 15px;
  }

  .brand {
    gap: 7px;
  }

  .brand img {
    width: 40px;
  }

  .brand span {
    font-size: .68rem;
  }

  .hero {
    padding-right: 16px;
    padding-left: 16px;
  }

  .price-card {
    padding-right: 17px;
    padding-left: 17px;
  }

  .price {
    font-size: 3rem;
  }

  .service-card {
    padding-right: 11px;
    padding-left: 11px;
  }
}

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

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