:root {
  --teal: #00b5bd;
  --deep-teal: #007a80;
  --soft-teal: #a0c4c7;
  --ice: #f7fbfb;
  --cloud: #ffffff;
  --yellow: #ffff4d;
  --pale-yellow: #fff4ad;
  --ink: #0b1c24;
  --slate: #404040;
  --muted: #6e8589;
  --line: #d7e2e3;
  --white: #ffffff;
  --steel: #d8e6e7;
  --shadow: 0 22px 70px rgba(11, 28, 36, 0.1);
  --radius: 16px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cloud);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

.skip-link {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-120%);
  z-index: 1000;
  background: var(--ink);
  color: var(--white);
  padding: 10px 16px;
  border-radius: 0 0 10px 0;
}

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

.container {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
}

.section {
  padding: 96px 0;
}

#features,
#pricing,
#faq {
  scroll-margin-top: 100px;
}

#pricing {
  position: relative;
  overflow: clip;
}

#pricing::before {
  content: "";
  position: absolute;
  right: -90px;
  top: 88px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: #cfe1e3;
  pointer-events: none;
}

#pricing::after {
  content: "";
  position: absolute;
  left: 9%;
  bottom: 70px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: #dfebec;
  pointer-events: none;
}

#pricing > .container {
  position: relative;
  z-index: 1;
}

.section-tight {
  padding: 28px 0 64px;
}

.section-ice {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.divider-section {
  position: relative;
  border-bottom: 0;
}

.section-ice.divider-section {
  border-top: 0;
  border-bottom: 0;
}

.divider-section::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(60%, 720px);
  height: 1px;
  transform: translateX(-50%);
  background: var(--line);
}

.intro-section {
  border-top: 0;
  border-bottom: 0;
  padding-top: 72px;
  position: relative;
}

.intro-section::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(60%, 720px);
  height: 1px;
  transform: translateX(-50%);
  background: var(--line);
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: var(--deep-teal);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 3px;
  background: var(--teal);
  border-radius: 999px;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: Montserrat, "Plus Jakarta Sans", ui-sans-serif, system-ui, sans-serif;
  letter-spacing: 0;
  line-height: 1.08;
  color: var(--ink);
}

h1 {
  max-width: 760px;
  font-size: clamp(42px, 7vw, 72px);
  font-weight: 800;
}

h2 {
  max-width: 760px;
  font-size: clamp(32px, 4.5vw, 50px);
  font-weight: 800;
}

h3 {
  font-size: 22px;
  font-weight: 800;
}

p {
  margin: 0;
}

.lead {
  max-width: 720px;
  color: var(--slate);
  font-size: clamp(19px, 2.1vw, 23px);
  line-height: 1.55;
}

.section-head {
  display: grid;
  gap: 18px;
  margin-bottom: 42px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(160, 196, 199, 0.38);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 0;
  font-weight: 900;
  font-family: Montserrat, "Plus Jakarta Sans", sans-serif;
}

.brand img {
  width: 240px;
  height: auto;
}

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

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--slate);
  font-weight: 700;
  font-size: 15px;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--deep-teal);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  color: var(--ink);
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 99px;
  margin: 0 auto;
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle span::before {
  top: -6px;
}

.nav-toggle span::after {
  top: 6px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 900;
  font-size: 15px;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, #00777d, var(--teal));
  box-shadow: 0 16px 32px rgba(0, 181, 189, 0.2);
}

.button-secondary {
  color: var(--deep-teal);
  background: var(--white);
  border-color: rgba(0, 105, 110, 0.18);
}

.button-yellow {
  color: var(--ink);
  background: var(--yellow);
  border-color: rgba(0, 122, 128, 0.46);
  box-shadow: 0 16px 30px rgba(255, 255, 77, 0.24);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0 72px;
  background: var(--white);
}

.hero::before {
  content: "";
  position: absolute;
  right: -120px;
  top: 96px;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: #dfebec;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  left: -150px;
  bottom: 54px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: #cfe1e3;
  pointer-events: none;
}

.brand-accent {
  color: var(--teal);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 52px;
  align-items: center;
}

.hero-copy {
  display: grid;
  gap: 26px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--slate);
  font-size: 15px;
  font-weight: 700;
}

.trust-strip span {
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--steel);
}

.hero-visual {
  position: relative;
}

.hero-visual-phones {
  display: grid;
  place-items: center;
  min-height: 520px;
}

.phone-showcase {
  position: relative;
  width: min(100%, 560px);
  padding: 28px;
  border-radius: 34px;
  background: var(--white);
  border: 1px solid var(--steel);
  box-shadow: 0 22px 70px rgba(11, 28, 36, 0.1);
}

.phone-showcase::before {
  content: none;
}

.image-preview-trigger {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.image-preview-trigger:focus-visible {
  outline: 4px solid rgba(0, 181, 189, 0.28);
  outline-offset: 8px;
  border-radius: 22px;
}

.image-preview-trigger img {
  position: relative;
  width: 100%;
  transform: rotate(1deg);
  filter: drop-shadow(0 28px 38px rgba(18, 39, 43, 0.16));
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  place-items: center;
  padding: 28px;
  background: rgba(11, 28, 36, 0.82);
}

.image-lightbox.open {
  display: grid;
}

.image-lightbox img {
  max-width: min(100%, 980px);
  max-height: min(92vh, 1080px);
  border-radius: 18px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

.image-lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 2px solid rgba(255, 255, 255, 0.82);
  border-radius: 50%;
  color: var(--white);
  background: rgba(11, 28, 36, 0.44);
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
}

.image-lightbox-close:hover,
.image-lightbox-close:focus-visible {
  background: rgba(11, 28, 36, 0.72);
}

.product-frame {
  overflow: hidden;
  border-radius: 24px;
  background: var(--white);
  border: 1px solid rgba(160, 196, 199, 0.32);
  box-shadow: var(--shadow);
}

.product-frame img {
  width: 100%;
}

.profile-card {
  position: absolute;
  left: -28px;
  bottom: -34px;
  width: min(270px, 55%);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(160, 196, 199, 0.5);
  box-shadow: 0 22px 50px rgba(18, 39, 43, 0.12);
  padding: 14px;
  backdrop-filter: blur(16px);
}

.profile-card img {
  border-radius: 12px;
  aspect-ratio: 1.2;
  object-fit: cover;
}

.profile-card strong {
  display: block;
  margin-top: 12px;
  line-height: 1.2;
}

.profile-card span {
  color: var(--slate);
  font-size: 14px;
}

.hero-note {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: min(310px, 70%);
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--steel);
  box-shadow: 0 18px 42px rgba(18, 39, 43, 0.1);
  backdrop-filter: blur(16px);
}

.hero-note strong {
  display: block;
  color: var(--ink);
  font-family: Montserrat, "Plus Jakarta Sans", sans-serif;
  line-height: 1.2;
}

.hero-note span {
  display: block;
  margin-top: 5px;
  color: var(--slate);
  font-size: 14px;
  line-height: 1.45;
}

.mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 0;
}

.stat {
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--steel);
  border-radius: var(--radius);
}

.stat strong {
  display: block;
  color: var(--deep-teal);
  font-family: Montserrat, "Plus Jakarta Sans", sans-serif;
  font-size: 28px;
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 7px;
  color: var(--slate);
  font-size: 15px;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 46px;
  align-items: start;
}

.split .section-head {
  margin-bottom: 0;
}

.plain-list {
  display: grid;
  gap: 16px;
}

.plain-list li {
  list-style: none;
  position: relative;
  padding-left: 26px;
  color: var(--slate);
}

.plain-list li::before {
  content: "-";
  position: absolute;
  left: 0;
  top: 0;
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: var(--deep-teal);
  font-weight: 900;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.card {
  background: var(--white);
  border: 1px solid var(--steel);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 12px 36px rgba(11, 28, 36, 0.05);
}

.card-icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 14px;
  color: var(--deep-teal);
  background: var(--ice);
  font-weight: 900;
}

.card-icon svg,
.audience-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card p {
  margin-top: 12px;
  color: var(--slate);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.audience-tile {
  min-height: 150px;
  padding: 22px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--steel);
}

.audience-icon {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 16px;
  border-radius: 12px;
  color: var(--deep-teal);
  background: var(--ice);
}

.audience-tile strong {
  display: block;
  margin-bottom: 8px;
  font-family: Montserrat, "Plus Jakarta Sans", sans-serif;
  font-size: 19px;
}

.audience-tile span {
  color: var(--slate);
  font-size: 15px;
}

.preview-band {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 34px;
  align-items: center;
  padding: 34px;
  border-radius: 24px;
  background: linear-gradient(135deg, #ffffff, #effcfd);
  border: 1px solid rgba(160, 196, 199, 0.38);
  box-shadow: var(--shadow);
}

.preview-band img {
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(18, 39, 43, 0.1);
}

.product-story {
  position: relative;
  overflow: clip;
}

.product-story::before {
  content: "";
  position: absolute;
  right: 7%;
  top: 72px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: #dfebec;
  pointer-events: none;
}

.product-story::after {
  content: "";
  position: absolute;
  left: -110px;
  bottom: 160px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: #a0c4c7;
  opacity: 0.62;
  pointer-events: none;
}

.story-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(300px, 0.72fr);
  gap: 56px;
  align-items: start;
}

.story-copy {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 28px;
}

.story-callouts {
  display: grid;
  gap: 14px;
}

.story-callout {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding: 20px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--steel);
  box-shadow: 0 12px 34px rgba(11, 28, 36, 0.05);
}

.story-callout span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 13px;
  color: var(--deep-teal);
  background: var(--ice);
  font-weight: 900;
}

.story-callout h3 {
  font-size: 19px;
}

.story-callout p {
  margin-top: 6px;
  color: var(--slate);
  line-height: 1.55;
}

.story-visual {
  position: relative;
  max-width: 390px;
  justify-self: center;
  padding: 16px;
  border-radius: 30px;
  background: #eef7f8;
  border: 1px solid var(--steel);
  box-shadow: 0 22px 70px rgba(11, 28, 36, 0.1);
}

.story-visual img {
  width: 100%;
  border-radius: 22px;
  box-shadow: 0 24px 50px rgba(18, 39, 43, 0.16);
}

.gallery-story {
  overflow: clip;
}

.gallery-head {
  max-width: 820px;
}

.bio-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: start;
}

.bio-card {
  padding: 16px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(160, 196, 199, 0.42);
  box-shadow: 0 20px 58px rgba(0, 105, 110, 0.1);
}

.bio-card:nth-child(2) {
  margin-top: 52px;
}

.bio-card:nth-child(3) {
  margin-top: 104px;
}

.bio-window {
  height: 520px;
  overflow: hidden;
  border-radius: 22px;
  background: var(--white);
  box-shadow: inset 0 0 0 1px rgba(18, 39, 43, 0.08);
}

.bio-window img {
  width: 100%;
  display: block;
}

.bio-caption {
  padding: 18px 4px 4px;
}

.bio-caption span {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--deep-teal);
  background: var(--ice);
  font-size: 13px;
  font-weight: 900;
}

.bio-caption p {
  margin-top: 10px;
  color: var(--slate);
  line-height: 1.55;
  font-size: 15px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.price-card {
  position: relative;
  display: grid;
  gap: 20px;
  padding: 34px;
  overflow: hidden;
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(247, 251, 251, 0.72)),
    rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(216, 230, 231, 0.9);
  box-shadow:
    0 26px 70px rgba(11, 28, 36, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(18px);
}

.price-card > *:not(.price-card-glow) {
  position: relative;
  z-index: 1;
}

.price-card.featured {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(232, 250, 252, 0.62)),
    rgba(255, 255, 255, 0.72);
  border-color: rgba(0, 181, 189, 0.48);
  box-shadow:
    0 30px 86px rgba(0, 181, 189, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.price-card-glow {
  position: absolute;
  inset: auto -80px -110px auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(160, 196, 199, 0.24);
  pointer-events: none;
}

.price-card.featured .price-card-glow {
  inset: auto -120px -150px auto;
  width: 320px;
  height: 320px;
  background: rgba(160, 196, 199, 0.24);
}

.price-card-title {
  margin-top: 16px;
}

.price-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.78), transparent 36%);
  pointer-events: none;
}

.badge {
  display: inline-flex;
  width: fit-content;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--deep-teal);
  border: 1px solid rgba(0, 181, 189, 0.46);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 900;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-family: Montserrat, "Plus Jakarta Sans", sans-serif;
  color: var(--deep-teal);
  font-size: 54px;
  font-weight: 900;
  line-height: 1;
}

.price small {
  color: var(--slate);
  font-size: 18px;
  font-weight: 800;
}

.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
}

.check-list li {
  list-style: none;
  color: var(--slate);
}

.check-list li::before {
  content: "✓";
  color: var(--deep-teal);
  font-weight: 900;
  margin-right: 9px;
}

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

.faq-item {
  border: 1px solid var(--steel);
  border-radius: 14px;
  background: var(--white);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 22px;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
  font-weight: 900;
  cursor: pointer;
}

.faq-question span:last-child {
  color: var(--deep-teal);
  font-size: 22px;
  line-height: 1;
}

.faq-answer {
  display: none;
  padding: 0 22px 22px;
  color: var(--slate);
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-item.open .faq-question span:last-child {
  transform: rotate(45deg);
}

.cta-band {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 42px;
  border-radius: 24px;
  color: var(--ink);
  background: var(--yellow);
  border: 2px solid rgba(0, 122, 128, 0.54);
  box-shadow: 0 24px 64px rgba(11, 28, 36, 0.1);
}

.cta-band h2,
.cta-band p {
  color: var(--ink);
}

.cta-band p {
  max-width: 680px;
  margin-top: 14px;
  opacity: 0.88;
}

.wave-test .hero::before,
.wave-test .hero::after,
.wave-test .product-story::before,
.wave-test .product-story::after,
.wave-test #pricing::before,
.wave-test #pricing::after {
  content: none;
}

.wave-test .hero,
.wave-test .wave-final {
  isolation: isolate;
}

.wave-test .wave-hero {
  padding-bottom: 78px;
}

.wave-layer {
  position: absolute;
  inset-inline: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.wave-layer svg {
  display: block;
  width: 100%;
  height: 100%;
}

.wave-layer-hero {
  bottom: -18px;
  height: min(36vw, 420px);
  min-height: 260px;
  opacity: 0.72;
}

.wave-layer-footer {
  inset-block: auto 0;
  height: min(34vw, 360px);
  min-height: 250px;
  opacity: 0.9;
}

.wave-fill {
  transform-box: fill-box;
  transform-origin: center;
}

.wave-fill-steel {
  fill: #dfebec;
}

.wave-fill-teal {
  fill: #a0c4c7;
  opacity: 0.48;
}

.wave-fill-teal-strong {
  fill: #00b5bd;
  opacity: 0.24;
}

.wave-fill-lemon {
  fill: #ffff4d;
  opacity: 0.12;
}

.wave-fill-coral {
  fill: #ffff4d;
  opacity: 0.1;
}

.wave-test .hero-grid,
.wave-test .wave-final .container {
  position: relative;
  z-index: 1;
}

.wave-final {
  position: relative;
  overflow: clip;
  background: var(--white);
}

.wave-test .footer {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(223, 235, 236, 0.55) 18%),
    #10282c;
}

.footer {
  position: relative;
  overflow: hidden;
  padding: 56px 0;
  background: var(--white);
  border-top: 1px solid var(--line);
  color: var(--slate);
}

.footer::after {
  content: "";
  position: absolute;
  right: -110px;
  bottom: -150px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: #dfebec;
  pointer-events: none;
}

.footer-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto;
  gap: 56px;
  align-items: start;
}

.footer-brand {
  display: grid;
  gap: 14px;
  max-width: 360px;
}

.footer-brand .brand {
  width: fit-content;
}

.footer-brand .brand img {
  width: 240px;
}

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

.footer-small {
  color: var(--slate);
  font-size: 0.82rem;
  line-height: 1.45;
}

.footer-address {
  margin: 0;
  font-style: normal;
}

.footer a:hover,
.footer a:focus-visible {
  color: var(--deep-teal);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(140px, 1fr));
  gap: 42px;
  font-size: 14px;
}

.footer-links div {
  display: grid;
  gap: 10px;
}

.footer-links strong {
  color: var(--ink);
  font-family: Montserrat, "Plus Jakarta Sans", sans-serif;
  font-size: 15px;
}

.simple-page {
  padding: 82px 0 96px;
}

.page-card {
  max-width: 860px;
  padding: 38px;
  border-radius: 22px;
  background: var(--white);
  border: 1px solid rgba(160, 196, 199, 0.42);
  box-shadow: var(--shadow);
}

.legal-content {
  max-width: 940px;
}

.page-card h1 {
  font-size: clamp(36px, 5vw, 56px);
}

.page-card h2 {
  margin-top: 34px;
  font-size: 28px;
}

.about-portrait {
  width: min(175px, 52vw);
  aspect-ratio: 1;
  margin: 24px 0 28px;
  padding: 5px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f3fbfc, #d8e6e7);
  border: 1px solid rgba(160, 196, 199, 0.68);
  box-shadow: 0 14px 34px rgba(0, 68, 72, 0.08);
}

.about-portrait img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 50%;
}

.page-card p,
.page-card li {
  color: var(--slate);
}

.page-card p {
  margin-top: 16px;
}

.legal-content p {
  margin-top: 12px;
}

.legal-detail {
  margin-top: 8px;
  color: var(--slate);
}

.legal-indent {
  margin-left: 18px;
}

.page-card ul {
  margin: 18px 0 0;
  padding-left: 22px;
}

.contact-card {
  max-width: 940px;
}

.contact-form {
  display: grid;
  gap: 22px;
  margin-top: 32px;
}

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

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-weight: 500;
  padding: 14px 16px;
  outline: none;
}

.contact-form textarea {
  min-height: 180px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(0, 181, 189, 0.12);
}

.form-check {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 12px;
  font-weight: 600;
}

.form-check input {
  width: 20px;
  height: 20px;
  margin-top: 3px;
  accent-color: var(--teal);
}

.form-honeypot {
  position: absolute;
  left: -9999px;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.form-note,
.form-status {
  color: var(--slate);
  font-size: 15px;
}

.form-status {
  min-height: 1.5em;
  margin-top: 0;
  font-weight: 700;
}

.form-status.success {
  color: var(--deep-teal);
}

.form-status.error {
  color: #9f2f24;
}

.notice {
  padding: 18px;
  border-radius: 14px;
  background: var(--ice);
  color: var(--deep-teal);
  font-weight: 800;
}

.notice-onboarding {
  margin-top: 24px;
}

@media (max-width: 920px) {
  .nav {
    position: fixed;
    inset: 78px 16px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border-radius: 18px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .nav.open {
    display: flex;
  }

  .nav .button {
    width: 100%;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .hero-grid,
  .split,
  .story-grid,
  .preview-band,
  .cta-band,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 58px 0 36px;
  }

  .hero::before {
    right: -170px;
    top: 620px;
    width: 360px;
    height: 360px;
  }

  .hero::after {
    left: -190px;
    bottom: 120px;
    width: 280px;
    height: 280px;
  }

  .split {
    gap: 28px;
  }

  #pricing::before {
    right: -140px;
    top: 330px;
  }

  #pricing::after {
    left: -90px;
    bottom: 120px;
  }

  .profile-card {
    left: 16px;
    bottom: -28px;
  }

  .hero-visual-phones {
    min-height: 430px;
  }

  .hero-note {
    right: 0;
    bottom: -8px;
  }

  .story-copy {
    position: static;
  }

  .story-visual {
    max-width: 430px;
  }

  .bio-gallery {
    grid-template-columns: 1fr;
  }

  .bio-card,
  .bio-card:nth-child(2),
  .bio-card:nth-child(3) {
    margin-top: 0;
  }

  .bio-window {
    height: 560px;
  }

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

  .mini-stats,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .cta-band {
    padding: 30px;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, var(--max));
  }

  .section {
    padding: 64px 0;
  }

  .section-tight {
    padding: 28px 0 52px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero .hero-actions .button-primary {
    width: min(64%, 230px);
    padding-inline: 14px;
  }

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

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

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

  .preview-band,
  .page-card {
    padding: 22px;
  }

  .story-grid {
    gap: 32px;
  }

  .story-callout {
    padding: 18px;
  }

  .story-visual {
    padding: 12px;
    border-radius: 24px;
  }

  .story-visual img {
    border-radius: 18px;
  }

  .bio-card {
    padding: 12px;
    border-radius: 22px;
  }

  .bio-window {
    height: 500px;
    border-radius: 18px;
  }

  .price-card {
    padding: 26px;
  }

  .price {
    font-size: 44px;
  }

  .brand img {
    width: 200px;
  }

  .hero-visual-phones {
    min-height: 360px;
  }

  .phone-showcase {
    padding: 18px;
    border-radius: 24px;
  }

  .hero-note {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: -18px;
  }
}
