:root {
  color-scheme: light;
  --page: #f7faf7;
  --surface: #ffffff;
  --surface-soft: #f0f7f1;
  --text: #121814;
  --muted: #536158;
  --green: #087a4d;
  --green-hover: #06633f;
  --green-deep: #00452d;
  --green-dark: #01351f;
  --lime: #c5f238;
  --line: #dbe7df;
  --line-strong: #bed3c5;
  --shadow: 0 18px 38px rgba(10, 32, 20, 0.12);
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 8%, rgba(19, 128, 74, 0.08), transparent 32rem),
    linear-gradient(180deg, #fbfdfb 0%, var(--page) 100%);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

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

a {
  color: inherit;
}

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

.landing {
  min-height: 100vh;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(11, 127, 75, 0.05) 0 1px, transparent 1px 100%) 0 0 / 22px 22px,
    var(--page);
}

.hero-shell {
  position: relative;
  width: 100%;
  min-height: 840px;
  margin: 0;
  overflow: hidden;
  isolation: isolate;
  border-radius: 0;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 253, 250, 0.96) 45%, rgba(239, 250, 244, 0.9) 100%),
    #fbfdfb;
  box-shadow: none;
}

.hero-bottom-transition {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  z-index: 1;
  height: 210px;
  background:
    radial-gradient(54rem 11rem at 50% 100%, rgba(11, 127, 75, 0.07), transparent 72%),
    linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.82) 62%, #fff 100%);
  pointer-events: none;
}

.hero-bottom-transition::before {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 96px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), #fff);
  content: "";
}

.hero-animated-bg {
  position: absolute;
  inset: -6%;
  z-index: 0;
  overflow: hidden;
  background:
    linear-gradient(105deg, transparent 0 36%, rgba(11, 127, 75, 0.08) 48%, transparent 61%),
    radial-gradient(circle at 76% 18%, rgba(11, 127, 75, 0.13), transparent 28rem);
  animation: heroCanvasPan 9s ease-in-out infinite alternate;
  pointer-events: none;
  will-change: transform;
}

.hero-animated-bg::before,
.hero-animated-bg::after {
  position: absolute;
  border-radius: 999px;
  content: "";
  pointer-events: none;
}

.hero-animated-bg::before {
  top: -24%;
  right: -18%;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, rgba(11, 127, 75, 0.13), transparent 64%);
  animation: heroGlowDrift 7s ease-in-out infinite alternate;
}

.hero-animated-bg::after {
  right: 15%;
  bottom: -42%;
  width: 760px;
  height: 420px;
  background: radial-gradient(ellipse, rgba(57, 177, 116, 0.16), transparent 70%);
  animation: heroGlowDrift 9s ease-in-out -3s infinite alternate;
}

.hero-wave {
  position: absolute;
  display: block;
  border-radius: 50%;
  background:
    repeating-radial-gradient(
      ellipse at center,
      transparent 0 18px,
      rgba(11, 127, 75, 0.15) 19px 20px,
      transparent 21px 34px
    );
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 14%, #000 84%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 14%, #000 84%, transparent 100%);
  opacity: 0.65;
  will-change: transform;
}

.hero-wave-left {
  bottom: -380px;
  left: -430px;
  width: 1040px;
  height: 640px;
  transform: rotate(-8deg);
  animation: heroWaveLeft 9s ease-in-out infinite alternate;
}

.hero-wave-right {
  right: -420px;
  bottom: -265px;
  width: 1080px;
  height: 760px;
  transform: rotate(-19deg);
  opacity: 0.66;
  animation: heroWaveRight 10s ease-in-out -2s infinite alternate;
}

.hero-wave-crest {
  right: 180px;
  bottom: -345px;
  width: 880px;
  height: 420px;
  transform: rotate(-5deg);
  opacity: 0.5;
  animation: heroWaveCrest 8s ease-in-out -1s infinite alternate;
}

.hero-shell::before,
.hero-shell::after {
  position: absolute;
  z-index: 1;
  right: -8%;
  left: -8%;
  height: 430px;
  border: 1px solid rgba(11, 127, 75, 0.14);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.hero-shell::before {
  --hero-arc-rotate: -7deg;
  bottom: -250px;
  transform: rotate(var(--hero-arc-rotate));
  animation: heroArcFloat 9s ease-in-out infinite alternate;
}

.hero-shell::after {
  --hero-arc-rotate: -12deg;
  right: -18%;
  bottom: -300px;
  left: 18%;
  transform: rotate(var(--hero-arc-rotate));
  opacity: 0.68;
  animation: heroArcFloat 11s ease-in-out -3s infinite alternate;
}

.landing-nav {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: minmax(132px, 1fr) auto minmax(132px, 1fr);
  align-items: center;
  gap: 20px;
  width: min(100% - 88px, 1220px);
  min-height: 76px;
  margin: 0 auto;
  padding: 0;
}

.landing-nav::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(16, 40, 26, 0.1), transparent);
  content: "";
}

.landing-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-icon-image {
  position: relative;
  display: block;
  width: 46px;
  height: 28px;
  object-fit: contain;
}

.brand-word {
  color: #18201a;
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1;
}

.landing-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.landing-menu a,
.landing-menu button,
.footer-column a {
  text-decoration: none;
}

.landing-menu a,
.landing-menu button {
  color: #26332b;
  font-size: 0.9rem;
  font-weight: 800;
  transition: color 140ms ease, transform 140ms ease;
}

.landing-menu button {
  padding: 0;
  border: 0;
  background: transparent;
}

.landing-menu a:hover,
.landing-menu button:hover {
  color: var(--green);
}

.landing-menu a:active,
.landing-menu button:active {
  transform: translateY(1px);
}

.landing-menu button:focus-visible,
.legal-contact-trigger:focus-visible {
  outline: 3px solid rgba(197, 242, 56, 0.8);
  outline-offset: 5px;
}

.legal-contact-trigger {
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #26332b;
  font-size: 0.86rem;
  font-weight: 800;
}

.landing-menu a.is-active {
  color: var(--green);
}

.landing-menu a.is-active::after {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto -7px;
  border-radius: 999px;
  background: var(--lime);
  content: "";
}

.landing-get-app-link,
.hero-cta,
.price-card a,
.cta-download-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #006b42, #0c8d55);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 900;
  padding: 0 22px;
  text-decoration: none;
  transition: filter 140ms ease, transform 140ms ease, box-shadow 140ms ease;
}

.landing-get-app-link {
  justify-self: end;
  height: 44px;
  min-width: 156px;
  box-shadow: 0 10px 22px rgba(0, 93, 57, 0.22);
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  justify-content: flex-end;
  gap: 12px;
  min-width: 0;
}

.nav-actions .landing-get-app-link {
  justify-self: auto;
}

.landing-contact-action {
  background: var(--green);
  white-space: nowrap;
}

.language-switcher {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  height: 44px;
  color: #19231d;
  line-height: 1;
}

.language-current {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 74px;
  height: 44px;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 20px rgba(19, 39, 28, 0.08);
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 900;
  list-style: none;
  list-style-type: none;
  padding: 0 14px;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color 140ms ease, box-shadow 140ms ease, transform 140ms ease;
}

.language-current:hover {
  border-color: var(--line-strong);
  box-shadow: 0 10px 24px rgba(19, 39, 28, 0.12);
}

.language-current:active {
  transform: translateY(1px);
}

.language-flag {
  font-size: 1rem;
  line-height: 1;
}

.language-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  display: none;
  gap: 2px;
  min-width: 132px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(15, 34, 23, 0.16);
  padding: 8px;
}

.language-switcher:hover .language-menu,
.language-switcher:focus-within .language-menu {
  display: grid;
}

.language-menu a {
  display: grid;
  grid-template-columns: 22px 1fr;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  border-radius: 8px;
  color: #223027;
  font-size: 0.86rem;
  font-weight: 900;
  padding: 0 9px;
  text-decoration: none;
  transition: background 140ms ease, color 140ms ease;
}

.language-menu a:hover,
.language-menu a.is-active {
  background: var(--surface-soft);
  color: var(--green-deep);
}

.app-download-link {
  gap: 0;
  white-space: nowrap;
}

.landing-get-app-link:hover,
.hero-cta:hover,
.price-card a:hover,
.cta-download-link:hover {
  filter: brightness(1.06);
  box-shadow: 0 12px 26px rgba(0, 93, 57, 0.2);
}

.landing-get-app-link:active,
.hero-cta:active,
.price-card a:active,
.cta-download-link:active {
  transform: translateY(1px);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.8fr);
  gap: 46px;
  align-items: center;
  width: min(100% - 132px, 1220px);
  min-height: 736px;
  margin: 0 auto;
  padding: 20px 0 0;
}

.hero-copy {
  position: relative;
  z-index: 4;
  max-width: 650px;
  padding-top: 34px;
  padding-bottom: 68px;
  transform: translateY(-78px);
}

.hero-copy h1 {
  margin: 0;
  color: #0c130f;
  font-size: 3.85rem;
  line-height: 1.1;
  text-wrap: balance;
}

.hero-copy h1 strong {
  display: block;
  color: var(--green);
}

.hero-title-line {
  display: block;
  color: #0c130f;
  font-size: 0.72em;
  line-height: 1.08;
  overflow-wrap: normal;
  text-wrap: balance;
}

.hero-title-line.is-highlight {
  color: #0c130f;
  font-size: 1em;
}

.hero-copy h1 .hero-title-line:not(.is-highlight) {
  color: #0c130f;
  font-size: 0.72em;
}

.hero-copy h1 .hero-title-line.is-highlight {
  color: #0c130f;
  font-size: 1em;
}

.hero-title-circled {
  position: relative;
  z-index: 0;
  display: inline-block;
  padding: 0 0.1em 0.03em;
  isolation: isolate;
  white-space: nowrap;
}

.hero-title-circled::before,
.hero-title-circled::after {
  position: absolute;
  border-radius: 999px;
  content: "";
  pointer-events: none;
}

.hero-title-circled::before {
  inset: -0.08em -0.16em -0.04em;
  z-index: -1;
  border: 0.065em solid #0c130f;
  animation: heroTitleCircleShake 1.45s ease-in-out infinite;
  transform: translate3d(0, 0, 0) rotate(-2deg);
}

.hero-title-circled::after {
  inset: -0.12em -0.2em -0.08em;
  z-index: -1;
  border: 0.035em solid rgba(0, 69, 45, 0.34);
  animation: heroTitleCircleShakeGhost 1.45s ease-in-out 70ms infinite;
  transform: translate3d(0, 0, 0) rotate(1.6deg);
}

.hero-copy p {
  max-width: 540px;
  margin: 28px 0 0;
  color: #59665e;
  font-size: 1.05rem;
  line-height: 1.65;
}

.hero-cta {
  min-width: 210px;
  min-height: 58px;
  margin-top: 34px;
  box-shadow: 0 16px 34px rgba(0, 93, 57, 0.2);
  font-size: 1.02rem;
  padding: 0 34px;
}

.hero-character {
  position: absolute;
  bottom: -122px;
  left: clamp(135px, 17vw, 230px);
  z-index: 1;
  width: clamp(315px, 23vw, 385px);
  height: auto;
  opacity: 0.94;
  pointer-events: none;
  filter: drop-shadow(0 28px 34px rgba(8, 18, 12, 0.24));
  transform: rotate(-2deg);
  transform-origin: 50% 100%;
}

.hero-phone {
  align-self: end;
  display: grid;
  justify-items: center;
  position: relative;
  z-index: 3;
  min-height: 736px;
  margin-top: 0;
  pointer-events: none;
}

.hero-phone .hero-phone-mockup {
  position: absolute;
  right: clamp(24px, 4vw, 52px);
  bottom: -72px;
  width: clamp(320px, 27vw, 370px);
}

.iphone-mockup {
  position: relative;
  z-index: 2;
  width: 340px;
  filter: drop-shadow(0 22px 35px rgba(10, 20, 14, 0.22));
}

.phone-mockup-image {
  position: relative;
  z-index: 2;
  display: block;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 22px 35px rgba(10, 20, 14, 0.22));
}

.iphone-frame {
  width: 100%;
}

.feature-card-grid {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
  width: min(100% - 148px, 1000px);
  margin: 34px auto 86px;
}

.feature-card-grid::before {
  position: absolute;
  top: -72px;
  bottom: -48px;
  left: 50%;
  z-index: -1;
  width: 100vw;
  background:
    linear-gradient(180deg, #fff 0%, #fff 72%, rgba(255, 255, 255, 0) 100%);
  content: "";
  pointer-events: none;
  transform: translateX(-50%);
}

.feature-card,
.price-card,
.offer-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.feature-card {
  display: grid;
  min-height: 320px;
  padding: 26px;
}

.feature-icon,
.mini-icon {
  display: inline-grid;
  place-items: center;
  width: 68px;
  height: 68px;
  border: 1px solid #d9e1dc;
  border-radius: 8px;
  background: #f2f4f2;
  box-shadow: 0 8px 20px rgba(10, 32, 20, 0.06);
}

.site-icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 5px 9px rgba(16, 31, 21, 0.12));
}

.site-icon-mini {
  width: 39px;
  height: 39px;
}

.feature-card h2 {
  margin: 10px 0 0;
  color: var(--green);
  font-size: 1.35rem;
  line-height: 1.2;
}

.feature-card p {
  margin: 14px 0 0;
  color: #26332b;
  font-size: 0.9rem;
  line-height: 1.35;
}

.card-accent {
  align-self: end;
  justify-self: center;
  width: 58px;
  height: 3px;
  border-radius: 999px;
  background: var(--green);
}

.journey-section {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  width: min(100% - 150px, 860px);
  margin: 74px auto 54px;
}

.journey-copy {
  display: grid;
  justify-items: center;
  width: 100%;
  text-align: center;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 23px;
  border-radius: 999px;
  background: #dff6e8;
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 900;
  padding: 0 12px;
}

.journey-copy h2,
.offer-copy h2,
.pricing-section h2,
.faq-panel h2,
.cta-panel h2 {
  margin: 14px 0 0;
  color: var(--text);
  font-size: 2.05rem;
  line-height: 1.1;
}

.journey-copy h2,
.pricing-section h2 {
  font-size: 2.2rem;
}

.offer-copy h2 strong,
.pricing-section h2 strong {
  color: var(--green);
}

.section-lead {
  max-width: 680px;
  margin: 10px 0 0;
  color: #344238;
  font-size: 1rem;
}

.journey-list {
  position: relative;
  display: grid;
  gap: 0;
  width: min(100%, 700px);
  margin-top: 54px;
}

.journey-list::before {
  position: absolute;
  top: 28px;
  bottom: 28px;
  left: 28px;
  width: 1px;
  background: linear-gradient(180deg, transparent, #d7ded9 12%, #d7ded9 88%, transparent);
  content: "";
}

.journey-list article {
  position: relative;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  min-height: 102px;
  padding-bottom: 28px;
  text-align: left;
}

.journey-list article:last-child {
  padding-bottom: 0;
}

.journey-list article > div {
  padding: 14px 0;
}

.journey-list h3,
.journey-list p {
  margin: 0;
}

.journey-list h3 {
  color: var(--text);
  font-size: 1.18rem;
  line-height: 1.2;
}

.journey-list p {
  margin-top: 4px;
  color: #26332b;
  font-size: 0.92rem;
  line-height: 1.35;
}

.mini-icon {
  position: relative;
  z-index: 1;
  width: 56px;
  height: 56px;
}

.offer-section {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  gap: 38px;
  align-items: end;
  width: min(100% - 150px, 1000px);
  margin: 0 auto 92px;
}

.offer-copy {
  padding-bottom: 88px;
}

.offer-copy p {
  max-width: 310px;
  margin: 22px 0 0;
  color: #26332b;
  font-size: 0.94rem;
  line-height: 1.45;
}

.offer-card {
  overflow: hidden;
}

.offer-visual {
  position: relative;
  height: 172px;
  overflow: hidden;
  background: #dfe6df;
}

.program-card .offer-visual {
  background:
    radial-gradient(circle at 72% 38%, rgba(210, 242, 225, 0.72), transparent 5rem),
    linear-gradient(135deg, #18201c, #5d7065);
}

.recipe-card .offer-visual {
  background:
    radial-gradient(circle at 50% 48%, #f6fff0 0 5.6rem, transparent 5.7rem),
    linear-gradient(135deg, #e7eadf, #f8fff1);
}

.offer-visual-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 22px rgba(18, 31, 23, 0.2));
  transform: translate(-50%, -50%);
}

.offer-visual-icon-program {
  height: 128px;
}

.offer-visual-icon-recipe {
  height: 124px;
}

.offer-card-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 36px;
  gap: 6px 12px;
  align-items: end;
  min-height: 126px;
  padding: 18px;
}

.offer-card-body h3,
.offer-card-body p {
  margin: 0;
}

.offer-card-body h3 {
  font-size: 1.08rem;
}

.offer-card-body p {
  color: #3c493f;
  font-size: 0.82rem;
  line-height: 1.35;
}

.offer-card-body a {
  display: grid;
  grid-row: 1 / span 2;
  grid-column: 2;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: #daf5d3;
  color: var(--green);
  font-size: 1.15rem;
  font-weight: 900;
  text-decoration: none;
  transition: transform 140ms ease, background 140ms ease;
}

.offer-card-body a:hover {
  background: #c9efbf;
}

.offer-card-body a:active {
  transform: translateY(1px);
}

.seo-feature-section {
  width: min(100%, 1280px);
  margin: 54px auto 72px;
  overflow: hidden;
  padding: 12px 0 0;
}

.seo-feature-heading {
  display: grid;
  justify-items: center;
  width: min(100% - 48px, 720px);
  margin: 0 auto 34px;
  text-align: center;
}

.seo-feature-heading h2 {
  margin: 14px 0 0;
  color: var(--text);
  font-size: 2.35rem;
  line-height: 1.05;
}

.seo-feature-heading p {
  max-width: 650px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
}

.seo-feature-carousel {
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  scroll-padding-left: clamp(16px, 2vw, 28px);
  scroll-snap-type: x mandatory;
}

.seo-feature-carousel::-webkit-scrollbar {
  display: none;
}

.seo-feature-track {
  display: flex;
  gap: 16px;
  width: max-content;
  padding: 0 clamp(16px, 2vw, 28px) 8px;
}

.seo-feature-card {
  position: relative;
  display: grid;
  flex: 0 0 350px;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow);
  color: inherit;
  padding: 38px 22px 24px;
  scroll-snap-align: center;
  text-decoration: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.seo-feature-card:hover {
  border-color: rgba(11, 127, 75, 0.34);
  box-shadow: 0 22px 48px rgba(11, 127, 75, 0.16);
  transform: translateY(-3px);
}

.seo-feature-card:active {
  transform: translateY(-1px);
}

.seo-card-window-dots {
  position: absolute;
  top: 14px;
  left: 18px;
  display: flex;
  gap: 6px;
}

.seo-card-window-dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.seo-card-window-dots i:nth-child(1) {
  background: #ff637d;
}

.seo-card-window-dots i:nth-child(2) {
  background: #f7b500;
}

.seo-card-window-dots i:nth-child(3) {
  background: #08b978;
}

.seo-card-visual {
  position: relative;
  display: grid;
  min-height: 260px;
  overflow: hidden;
  place-items: center;
  border: 0;
  border-radius: 8px;
  background: transparent;
}

.seo-card-phone {
  position: relative;
  display: block;
  width: 210px;
  filter: drop-shadow(0 18px 26px rgba(7, 21, 13, 0.24));
  transform: translateY(40px) rotate(-1.5deg);
}

.seo-card-mockup-image {
  width: 230px;
  transform: translateY(40px) rotate(-1.5deg);
}

.modern-phone-frame::before,
.modern-phone-frame::after {
  position: absolute;
  z-index: 1;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(225, 204, 179, 0.9), rgba(80, 64, 52, 0.96));
  content: "";
}

.modern-phone-frame::before {
  top: 22%;
  left: -3px;
  height: 14%;
}

.modern-phone-frame::after {
  top: 14%;
  right: -3px;
  height: 9%;
}

.seo-card-phone-screen {
  position: absolute;
  top: 6.05%;
  left: 6.7%;
  z-index: 2;
  display: block;
  width: 86.6%;
  height: 88.7%;
  overflow: hidden;
  border-radius: 7% / 3.6%;
  background: #050605;
}

.modern-phone-frame {
  position: relative;
  display: block;
  width: min(360px, 82vw);
  aspect-ratio: 1206 / 2622;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 64px;
  background:
    linear-gradient(90deg, #111312 0%, #d0b99a 5%, #30342f 10%, #050605 50%, #2e332e 90%, #c2a27f 95%, #0e100f 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.2),
    inset 0 0 0 8px rgba(3, 4, 3, 0.96),
    0 26px 44px rgba(7, 21, 13, 0.22);
  padding: 13px;
}

.modern-phone-frame::before {
  width: 4px;
  left: -4px;
}

.modern-phone-frame::after {
  width: 4px;
  right: -4px;
}

.modern-phone-screen {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 48px;
  background: #050605;
}

.modern-phone-frame .modern-phone-screen {
  border-radius: 51px;
}

.seo-card-phone.modern-phone-frame {
  width: 210px;
  border-radius: 40px;
  padding: 8px;
}

.seo-card-phone.modern-phone-frame .modern-phone-screen {
  border-radius: 32px;
}

.modern-phone-screen::after {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.14), transparent 24%, transparent 72%, rgba(255, 255, 255, 0.08));
  content: "";
  mix-blend-mode: screen;
  opacity: 0.3;
}

.feature-phone-screenshot,
.feature-phone-video,
.feature-phone-preview {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
}

.feature-phone-screenshot {
  z-index: 1;
  object-fit: cover;
  object-position: top center;
}

.feature-phone-video {
  z-index: 1;
  display: block;
  background: #f7faf7;
  object-fit: cover;
  object-position: top center;
}

.feature-phone-preview {
  display: flex;
  flex-direction: column;
  gap: 0.75em;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 20%, rgba(0, 69, 45, 0.2), transparent 5.8em),
    linear-gradient(180deg, #fbfdf9 0%, #f2f6f0 100%);
  color: #0d1510;
  font-size: 7.2px;
  padding: 1.7em 1.25em 1.3em;
}

.feature-page-phone .feature-phone-preview {
  gap: 0.95em;
  font-size: 13px;
  padding: 2em 1.45em 1.6em;
}

.feature-preview-status,
.feature-preview-header,
.feature-preview-row {
  display: flex;
  align-items: center;
}

.feature-preview-status {
  justify-content: space-between;
  gap: 0.6em;
  color: #1d2b22;
  font-size: 0.82em;
  font-weight: 900;
}

.feature-preview-status span:first-child {
  border-radius: 999px;
  background: #21b25d;
  color: #fff;
  padding: 0.25em 0.7em;
}

.feature-preview-header {
  justify-content: space-between;
  gap: 0.85em;
}

.feature-preview-header > span {
  display: grid;
  min-width: 0;
  gap: 0.18em;
}

.feature-preview-header strong {
  color: #101611;
  font-size: 1.45em;
  line-height: 1.03;
}

.feature-preview-header small,
.feature-preview-metric small {
  color: #59665d;
  font-weight: 900;
}

.feature-preview-header img {
  width: 3.35em;
  height: 3.35em;
  flex: 0 0 auto;
  border: 1px solid rgba(190, 211, 197, 0.85);
  border-radius: 0.8em;
  background: #edffd8;
  object-fit: contain;
  padding: 0.45em;
}

.feature-preview-metric {
  display: grid;
  grid-template-columns: minmax(0, auto) minmax(0, 1fr);
  gap: 0.45em;
  align-items: baseline;
  border: 1px solid rgba(11, 127, 75, 0.14);
  border-radius: 1.2em;
  background: rgba(255, 255, 255, 0.86);
  padding: 0.9em 1em;
  box-shadow: 0 0.8em 1.8em rgba(12, 38, 24, 0.08);
}

.feature-preview-metric strong {
  color: #0b130e;
  font-size: 2.2em;
  line-height: 1;
}

.feature-preview-accent {
  width: fit-content;
  max-width: 100%;
  overflow: hidden;
  border-radius: 999px;
  background: #0b7f4b;
  color: #fff;
  font-size: 0.82em;
  font-weight: 950;
  padding: 0.45em 0.8em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.feature-preview-row {
  min-height: 2.5em;
  gap: 0.65em;
  border: 1px solid rgba(190, 211, 197, 0.7);
  border-radius: 0.9em;
  background: rgba(255, 255, 255, 0.76);
  color: #213028;
  font-size: 0.95em;
  font-weight: 900;
  padding: 0 0.8em;
}

.feature-preview-row i {
  width: 0.72em;
  height: 0.72em;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #0b7f4b;
}

.feature-preview-row span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.seo-card-icon {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(190, 211, 197, 0.72);
  border-radius: 8px;
  background: #f2f9ec;
  object-fit: contain;
  padding: 7px;
  box-shadow: 0 10px 20px rgba(18, 40, 27, 0.1);
}

.seo-card-body {
  display: grid;
  gap: 14px;
  align-content: start;
  padding-top: 20px;
}

.seo-card-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.seo-card-title-row strong {
  color: var(--text);
  font-size: 1.18rem;
  line-height: 1.1;
}

.seo-card-title-row span {
  color: var(--green);
  font-size: 1.15rem;
  font-weight: 900;
}

.seo-card-body > span:last-child {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.seo-carousel-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 12px;
}

.seo-carousel-controls button {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  color: #435146;
  font-weight: 900;
  transition: border-color 140ms ease, color 140ms ease, transform 140ms ease, opacity 140ms ease;
}

.seo-carousel-controls button:hover:not(:disabled) {
  border-color: rgba(11, 127, 75, 0.34);
  color: var(--green);
}

.seo-carousel-controls button:active:not(:disabled) {
  transform: translateY(1px);
}

.seo-carousel-controls button:disabled {
  cursor: not-allowed;
  opacity: 0.38;
}

.pricing-section {
  position: relative;
  width: min(100% - 76px, 1120px);
  margin: 0 auto 72px;
  padding: 38px 0 0;
}

.pricing-section > h2 {
  margin: 0 0 34px;
  color: #0c130f;
  font-size: 2.4rem;
  text-align: center;
}

.pricing-section > h2 strong {
  color: var(--green);
}

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

.price-card {
  display: flex;
  min-height: 292px;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  border-color: rgba(190, 211, 197, 0.88);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 42px rgba(10, 32, 20, 0.08);
  padding: 34px 28px 30px;
}

.featured-price {
  border-color: rgba(11, 127, 75, 0.38);
  background: #fff;
  box-shadow: 0 22px 48px rgba(10, 32, 20, 0.12);
}

.price-card h3,
.price-card p {
  margin: 0;
}

.price-card-head {
  display: flex;
  min-height: 30px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.price-card h3 {
  color: #0c130f;
  font-size: 1.02rem;
}

.price-card-head span {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  border-radius: 999px;
  background: linear-gradient(90deg, #006b42, #0c8d55);
  color: #fff;
  font-size: 0.66rem;
  font-weight: 950;
  padding: 0 9px;
  white-space: nowrap;
}

.price-card p {
  min-height: 62px;
  color: var(--muted);
  font-size: 0.83rem;
  line-height: 1.45;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.price strong {
  color: #0c130f;
  font-size: 2.3rem;
  line-height: 1;
}

.price span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.price-card a {
  width: 100%;
  min-height: 38px;
  border-radius: 6px;
  background: linear-gradient(90deg, #006b42, #0c8d55);
  color: #fff;
  font-size: 0.82rem;
}

.price-card a:hover {
  box-shadow: 0 12px 26px rgba(0, 93, 57, 0.2);
}

.pricing-note {
  max-width: 620px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.45;
  text-align: center;
}

.faq-cta-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 44px;
  width: min(100% - 76px, 1100px);
  margin: 0 auto 54px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  padding: 34px 44px;
}

.faq-panel h2 {
  margin-bottom: 28px;
}

details {
  border-bottom: 10px solid transparent;
}

summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 44px;
  border-radius: 6px;
  background: #fff;
  color: #26332b;
  font-size: 0.9rem;
  list-style: none;
  padding: 0 16px;
  box-shadow: 0 8px 18px rgba(26, 49, 34, 0.06);
  cursor: pointer;
}

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

summary::after {
  color: #172018;
  font-size: 1.1rem;
  font-weight: 900;
  content: "+";
}

details[open] summary::after {
  content: "-";
}

details p {
  margin: 10px 8px 0;
  color: #536158;
  font-size: 0.88rem;
  line-height: 1.45;
}

.cta-panel {
  display: grid;
  align-content: center;
  min-height: 300px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 80% 58%, rgba(0, 69, 45, 0.34), transparent 11rem),
    linear-gradient(135deg, #06351f, #005533);
  color: #fff;
  padding: 48px 66px;
}

.cta-panel h2 {
  max-width: 430px;
  margin: 0;
  color: #fff;
}

.cta-panel p {
  max-width: 420px;
  margin: 20px 0 0;
  color: #cee3d4;
  line-height: 1.45;
}

.cta-download-link {
  width: fit-content;
  min-height: 48px;
  border-radius: 6px;
  background: linear-gradient(90deg, #006b42, #0c8d55);
  color: #fff;
  white-space: nowrap;
  margin-top: 30px;
  padding: 0 28px;
}

.landing-footer {
  display: grid;
  grid-template-columns: 1.15fr 0.8fr 1fr 1fr;
  gap: 48px;
  width: min(100% - 72px, 1100px);
  margin: 0 auto 34px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 14% 20%, rgba(0, 69, 45, 0.24), transparent 13rem),
    linear-gradient(135deg, #005533, #004327 55%, #005b36);
  color: #fff;
  padding: 40px 44px 0;
}

.footer-brand .brand-icon-image {
  filter: invert(1);
}

.footer-brand .brand-word {
  color: #fff;
}

.footer-brand p {
  max-width: 220px;
  margin: 22px 0 0;
  color: #d5e8db;
  font-size: 0.82rem;
  line-height: 1.55;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-column h2 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 0.95rem;
}

.footer-column a {
  color: #d5e8db;
  font-size: 0.84rem;
}

.footer-column a:hover {
  color: #fff;
}

.store-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  text-decoration: none;
  transition: filter 140ms ease, transform 140ms ease;
}

.store-badge:hover {
  filter: brightness(1.08);
}

.store-badge:active {
  transform: translateY(1px);
}

.store-badge img {
  width: auto;
  height: 40px;
}

.store-badge.google-play img {
  height: 52px;
  margin: -6px -8px;
}

.footer-store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.footer-store-row .store-badge {
  height: 34px;
}

.footer-store-row .store-badge img {
  height: 32px;
}

.footer-store-row .store-badge.google-play img {
  height: 42px;
}

.footer-bottom {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: #c4dbc9;
  font-size: 0.82rem;
  padding: 18px 0;
  text-align: center;
}

.footer-language-switcher {
  display: none;
}

.get-app-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 24px;
}

.get-app-card {
  display: grid;
  justify-items: center;
  width: min(640px, 100%);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
  padding: 58px;
  text-align: center;
}

.get-app-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  margin-bottom: 34px;
}

.get-app-brand {
  margin-bottom: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 23px;
  border-radius: 999px;
  background: #dff6e8;
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 900;
  padding: 0 12px;
  text-transform: uppercase;
}

.get-app-card h1 {
  margin: 18px 0 0;
  color: var(--text);
  font-size: 2.9rem;
  line-height: 1;
}

.get-app-card p {
  max-width: 500px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.55;
}

.get-app-store-actions {
  justify-content: center;
  margin-top: 32px;
}

.legal-page {
  min-height: 100vh;
}

.legal-content {
  display: grid;
  gap: 18px;
  width: min(900px, calc(100% - 36px));
  margin: 0 auto;
  padding: 86px 0 110px;
}

.legal-back-link {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 900;
  padding: 0 14px;
  text-decoration: none;
}

.legal-content h1 {
  max-width: 760px;
  margin: 0;
  color: var(--green-deep);
  font-size: 3.4rem;
  line-height: 1;
}

.legal-content > p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.legal-updated {
  max-width: none;
  color: #6a766d;
  font-size: 0.86rem;
  font-weight: 800;
}

.legal-section-list {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.legal-section {
  display: grid;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 30px;
  box-shadow: 0 14px 28px rgba(10, 32, 20, 0.06);
}

.legal-section h2,
.legal-section p,
.legal-section ul {
  margin: 0;
}

.legal-section h2 {
  color: var(--text);
  font-size: 1.35rem;
  line-height: 1.18;
}

.legal-section p,
.legal-section li {
  color: var(--muted);
  line-height: 1.6;
}

.legal-section ul {
  display: grid;
  gap: 8px;
  padding-left: 20px;
}

.legal-section li::marker {
  color: var(--green);
}

.legal-section a {
  color: var(--green);
  font-weight: 900;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.legal-page-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.legal-page-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--green-deep);
  font-size: 0.8rem;
  font-weight: 900;
  padding: 0 14px;
  text-decoration: none;
  transition: border-color 140ms ease, background 140ms ease, transform 140ms ease;
}

.legal-page-nav a:hover,
.legal-page-nav a.is-active {
  border-color: rgba(11, 127, 75, 0.32);
  background: #ecf8ed;
}

.legal-page-nav a:active {
  transform: translateY(1px);
}

.feature-page-hero {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 253, 250, 0.96) 45%, rgba(239, 250, 244, 0.9) 100%),
    #fbfdfb;
}

.feature-page-hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 70px;
  align-items: center;
  width: min(100% - 132px, 1120px);
  margin: 0 auto;
  padding: 64px 0 56px;
}

.feature-page-copy {
  max-width: 650px;
}

.feature-back-link {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--green);
  font-size: 0.88rem;
  font-weight: 900;
  text-decoration: none;
}

.feature-back-link:hover {
  color: var(--green-deep);
}

.feature-page-copy h1 {
  margin: 14px 0 0;
  color: var(--text);
  font-size: 3.4rem;
  line-height: 1.04;
}

.feature-page-copy p {
  max-width: 560px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.feature-page-phone {
  display: grid;
  justify-items: center;
}

.feature-page-phone .modern-phone-frame {
  width: min(375px, 78vw);
}

.feature-page-mockup-image {
  width: min(410px, 82vw);
}

.feature-page-detail,
.related-feature-section {
  width: min(100% - 76px, 1120px);
  margin: 76px auto;
}

.feature-page-detail {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 46px;
  align-items: start;
}

.feature-page-detail h2 {
  margin: 14px 0 0;
  color: var(--text);
  font-size: 2.3rem;
  line-height: 1.08;
}

.feature-page-detail > div > p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.58;
}

.feature-benefit-list {
  display: grid;
  gap: 14px;
}

.feature-benefit-list article {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 26px rgba(10, 32, 20, 0.08);
  padding: 18px;
}

.feature-benefit-list img {
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f2f9ec;
  object-fit: contain;
  padding: 6px;
}

.feature-benefit-list p {
  margin: 0;
  color: #26332b;
  font-size: 0.96rem;
  line-height: 1.4;
}

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

.related-feature-card {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  color: inherit;
  padding: 18px;
  text-decoration: none;
  transition: border-color 160ms ease, transform 160ms ease;
}

.related-feature-card:hover {
  border-color: rgba(11, 127, 75, 0.34);
  transform: translateY(-2px);
}

.related-feature-card img {
  width: 50px;
  height: 50px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f2f9ec;
  object-fit: contain;
  padding: 6px;
}

.related-feature-card span {
  display: grid;
  gap: 6px;
}

.related-feature-card strong {
  color: var(--green);
  font-size: 1rem;
}

.related-feature-card small {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.35;
}

@keyframes heroGlowDrift {
  from {
    opacity: 0.72;
    transform: translate3d(0, 0, 0) scale(1);
  }

  to {
    opacity: 1;
    transform: translate3d(-28px, 22px, 0) scale(1.08);
  }
}

@keyframes heroCanvasPan {
  from {
    transform: translate3d(-18px, 8px, 0) scale(1.015);
  }

  to {
    transform: translate3d(22px, -14px, 0) scale(1.04);
  }
}

@keyframes heroWaveLeft {
  from {
    transform: translate3d(0, 0, 0) rotate(-8deg) scale(1);
  }

  to {
    transform: translate3d(64px, -32px, 0) rotate(-5deg) scale(1.055);
  }
}

@keyframes heroWaveRight {
  from {
    transform: translate3d(0, 0, 0) rotate(-19deg) scale(1);
  }

  to {
    transform: translate3d(-58px, -28px, 0) rotate(-22deg) scale(1.045);
  }
}

@keyframes heroWaveCrest {
  from {
    transform: translate3d(0, 0, 0) rotate(-5deg) scale(1);
  }

  to {
    transform: translate3d(42px, -24px, 0) rotate(-8deg) scale(1.06);
  }
}

@keyframes heroArcFloat {
  from {
    transform: translate3d(0, 0, 0) rotate(var(--hero-arc-rotate));
  }

  to {
    transform: translate3d(48px, -24px, 0) rotate(var(--hero-arc-rotate));
  }
}

@keyframes heroTitleCircleShake {
  0%,
  42%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-2deg);
  }

  48% {
    transform: translate3d(-0.035em, 0.018em, 0) rotate(-2.8deg);
  }

  54% {
    transform: translate3d(0.03em, -0.014em, 0) rotate(-1.35deg);
  }

  60% {
    transform: translate3d(-0.018em, -0.01em, 0) rotate(-2.35deg);
  }

  66% {
    transform: translate3d(0.012em, 0.012em, 0) rotate(-1.75deg);
  }
}

@keyframes heroTitleCircleShakeGhost {
  0%,
  42%,
  100% {
    transform: translate3d(0, 0, 0) rotate(1.6deg);
  }

  48% {
    transform: translate3d(0.03em, -0.016em, 0) rotate(2.25deg);
  }

  54% {
    transform: translate3d(-0.026em, 0.014em, 0) rotate(0.9deg);
  }

  60% {
    transform: translate3d(0.016em, 0.01em, 0) rotate(1.95deg);
  }

  66% {
    transform: translate3d(-0.01em, -0.012em, 0) rotate(1.25deg);
  }
}

/* Server-rendered blog */
.blog-page {
  background:
    radial-gradient(circle at 10% 18%, rgba(11, 127, 75, 0.08), transparent 26rem),
    var(--page);
}

.blog-nav {
  position: relative;
  background: rgba(247, 250, 247, 0.88);
}

.blog-index-hero {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 420px;
  padding: 92px 24px 150px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(2, 18, 10, 0.98), rgba(0, 69, 45, 0.95)),
    var(--green-dark);
  color: #fff;
  text-align: center;
}

.blog-index-hero::before,
.blog-index-hero::after {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(197, 242, 56, 0.16);
  border-radius: 50%;
  content: "";
}

.blog-index-hero::before {
  right: -8%;
  bottom: -310px;
  left: -8%;
  height: 440px;
}

.blog-index-hero::after {
  right: 20%;
  bottom: -340px;
  left: -18%;
  height: 490px;
}

.blog-hero-glow {
  position: absolute;
  top: -210px;
  left: 50%;
  z-index: -1;
  width: 680px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(78, 208, 137, 0.25), transparent 68%);
  transform: translateX(-50%);
}

.blog-index-hero .section-kicker {
  color: var(--lime);
}

.blog-index-hero h1 {
  max-width: 820px;
  margin: 18px 0 20px;
  font-size: clamp(2.7rem, 6vw, 5.5rem);
  font-weight: 950;
  letter-spacing: -0.065em;
  line-height: 0.96;
}

.blog-index-hero p {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.08rem;
  line-height: 1.7;
}

.blog-index-content {
  position: relative;
  z-index: 2;
  width: min(100% - 48px, 1120px);
  margin: -70px auto 120px;
}

.blog-section-label {
  display: block;
  margin: 0 0 14px 8px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.blog-featured-card {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
  min-height: 430px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: #fff;
  box-shadow: 0 26px 70px rgba(5, 32, 19, 0.16);
}

.blog-card-media {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 35%, rgba(197, 242, 56, 0.34), transparent 16rem),
    linear-gradient(145deg, #092a1b, #021109);
}

.blog-card-media img {
  position: absolute;
  top: 62px;
  left: 50%;
  width: 242px;
  max-width: 70%;
  border: 7px solid #0a0e0b;
  border-radius: 34px 34px 0 0;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.38);
  transform: translateX(-50%) rotate(-2deg);
  transition: transform 240ms ease;
}

.blog-featured-card:hover .blog-card-media img {
  transform: translateX(-50%) translateY(-5px) rotate(-1deg);
}

.blog-card-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(38px, 6vw, 72px);
}

.blog-article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 18px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.blog-article-meta span:first-child {
  border-radius: 999px;
  background: rgba(11, 127, 75, 0.1);
  color: var(--green);
  padding: 7px 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.blog-card-copy h2 {
  margin: 24px 0 16px;
  font-size: clamp(2rem, 4vw, 3.25rem);
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.blog-card-copy h2 a {
  text-decoration: none;
}

.blog-card-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.blog-read-link,
.blog-back-link {
  color: var(--green);
  font-weight: 900;
  text-decoration: none;
}

.blog-read-link {
  margin-top: 28px;
}

.blog-read-link span {
  display: inline-block;
  margin-left: 6px;
  transition: transform 150ms ease;
}

.blog-read-link:hover span {
  transform: translateX(4px);
}

.blog-footer {
  margin-top: 0;
}

.blog-article-header {
  width: min(100% - 48px, 940px);
  margin: 0 auto;
  padding: 86px 0 54px;
  text-align: center;
}

.blog-back-link {
  display: inline-flex;
  margin-bottom: 44px;
}

.blog-article-header .blog-article-meta {
  justify-content: center;
}

.blog-article-header h1 {
  margin: 26px 0 24px;
  font-size: clamp(2.65rem, 6.5vw, 5.35rem);
  font-weight: 950;
  letter-spacing: -0.068em;
  line-height: 0.98;
}

.blog-article-deck {
  max-width: 730px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.26rem);
  line-height: 1.65;
}

.blog-article-author {
  margin: 25px 0 0;
  color: var(--green);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-article-cover {
  position: relative;
  width: min(100% - 48px, 1120px);
  height: 500px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 40%, rgba(197, 242, 56, 0.3), transparent 19rem),
    linear-gradient(130deg, #062616, #010906);
}

.blog-article-cover img {
  position: absolute;
  top: 58px;
  left: 50%;
  width: 270px;
  border: 8px solid #090d0a;
  border-radius: 38px 38px 0 0;
  box-shadow: 0 28px 75px rgba(0, 0, 0, 0.48);
  transform: translateX(-50%) rotate(2deg);
}

.blog-article-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 700px);
  gap: clamp(45px, 7vw, 90px);
  width: min(100% - 48px, 1040px);
  margin: 80px auto 110px;
}

.blog-toc {
  position: sticky;
  top: 24px;
  align-self: start;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
  padding: 24px;
}

.blog-toc strong {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-toc ol {
  display: grid;
  gap: 14px;
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.blog-toc a {
  text-decoration: none;
}

.blog-toc a:hover {
  color: var(--green);
}

.blog-article-body {
  color: #29352d;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.12rem;
  line-height: 1.86;
}

.blog-article-intro {
  margin-top: 0;
  color: var(--text);
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.65;
}

.blog-article-body section {
  scroll-margin-top: 30px;
  margin-top: 55px;
}

.blog-article-body h2 {
  margin: 0 0 20px;
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  letter-spacing: -0.04em;
  line-height: 1.15;
}

.blog-article-body p {
  margin: 0 0 22px;
}

.blog-article-body ul {
  display: grid;
  gap: 10px;
  margin: 28px 0;
  padding: 24px 28px 24px 48px;
  border-left: 4px solid var(--lime);
  border-radius: 0 18px 18px 0;
  background: #edf5ef;
}

.blog-article-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  width: min(100% - 48px, 1040px);
  margin: 0 auto 110px;
  border-radius: 28px;
  background: linear-gradient(120deg, #03170d, #06452c);
  color: #fff;
  padding: clamp(34px, 6vw, 62px);
}

.blog-article-cta h2 {
  margin: 0 0 10px;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  letter-spacing: -0.05em;
}

.blog-article-cta p {
  max-width: 590px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.blog-article-cta .hero-cta {
  flex: 0 0 auto;
}

body.contact-modal-open {
  overflow: hidden;
}

.contact-modal[hidden] {
  display: none;
}

.contact-modal {
  position: fixed;
  z-index: 1000;
  inset: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  background: #fbfdfb;
  opacity: 0;
  transition: opacity 180ms ease;
}

.contact-modal.is-open {
  opacity: 1;
}

.contact-modal-shell {
  min-height: 100%;
  padding: 0 44px 56px;
  background:
    radial-gradient(circle at 12% 12%, rgba(8, 122, 77, 0.09), transparent 24rem),
    radial-gradient(circle at 92% 88%, rgba(8, 122, 77, 0.08), transparent 28rem),
    #fbfdfb;
}

.contact-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, 1220px);
  min-height: 84px;
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
}

.contact-modal-close {
  display: grid;
  width: 46px;
  height: 46px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: #fff;
  color: var(--text);
  transition: border-color 140ms ease, transform 140ms ease, background 140ms ease;
}

.contact-modal-close:hover {
  border-color: var(--green);
  background: var(--surface-soft);
}

.contact-modal-close:active {
  transform: scale(0.95);
}

.contact-modal-close:focus-visible,
.contact-form input:focus-visible,
.contact-form select:focus-visible,
.contact-form textarea:focus-visible,
.contact-auth-form input:focus-visible,
.contact-form-submit:focus-visible {
  outline: 3px solid rgba(8, 122, 77, 0.28);
  outline-offset: 2px;
}

.contact-modal-close svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.8;
}

.contact-modal-content {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  gap: clamp(64px, 9vw, 140px);
  align-items: start;
  width: min(100%, 1080px);
  margin: 0 auto;
  padding-top: clamp(56px, 9vh, 104px);
}

.contact-modal-intro {
  padding-top: 12px;
}

.contact-modal-eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 13px;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-modal-intro h2 {
  max-width: 510px;
  margin: 24px 0 18px;
  font-size: clamp(2.5rem, 5vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.contact-modal-intro p {
  max-width: 480px;
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.contact-modal-intro > a {
  display: inline-block;
  margin-top: 24px;
  color: var(--green);
  font-weight: 850;
  text-underline-offset: 4px;
}

.contact-form,
.contact-auth {
  display: grid;
  gap: 20px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 26px 70px rgba(13, 50, 29, 0.09);
}

.contact-form[hidden],
.contact-auth[hidden],
[data-auth-register-field][hidden] {
  display: none;
}

.contact-auth-heading h3 {
  margin: 0;
  font-size: 1.5rem;
  letter-spacing: -0.035em;
}

.contact-auth-heading p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.contact-auth-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 5px;
  padding: 5px;
  border-radius: 14px;
  background: var(--surface-soft);
}

.contact-auth-tabs button {
  min-height: 42px;
  padding: 0 12px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 850;
}

.contact-auth-tabs button.is-active {
  background: #fff;
  color: var(--green);
  box-shadow: 0 4px 12px rgba(13, 50, 29, 0.08);
}

.contact-oauth {
  display: grid;
  gap: 10px;
  width: 100%;
  max-width: 400px;
  margin-inline: auto;
}

.contact-oauth.is-busy {
  pointer-events: none;
  opacity: 0.62;
}

.contact-oauth-apple {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr) 24px;
  align-items: center;
  width: 100%;
  height: 40px;
  padding: 0 16px;
  border: 1px solid #111;
  border-radius: 10px;
  background: #111;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 800;
  transition: opacity 140ms ease, transform 140ms ease;
}

.contact-oauth-apple:hover {
  opacity: 0.88;
}

.contact-oauth-apple:active {
  transform: translateY(1px);
}

.contact-oauth-apple:disabled {
  cursor: wait;
}

.contact-oauth-apple svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.contact-oauth-apple span {
  text-align: center;
}

.contact-oauth-google {
  display: flex;
  width: 100%;
  height: 40px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 10px;
}

.contact-oauth-google > div,
.contact-oauth-google iframe {
  width: 100% !important;
  height: 40px !important;
  max-width: 100%;
}

.contact-auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-auth-divider::before,
.contact-auth-divider::after {
  flex: 1;
  height: 1px;
  background: var(--line);
  content: "";
}

.contact-auth-tabs button:focus-visible,
.contact-account-bar button:focus-visible {
  outline: 3px solid rgba(8, 122, 77, 0.28);
  outline-offset: 2px;
}

.contact-auth-form {
  display: grid;
  gap: 18px;
}

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

.contact-form label,
.contact-auth-form label {
  display: grid;
  gap: 8px;
}

.contact-form label > span,
.contact-auth-form label > span {
  color: #35443a;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea,
.contact-auth-form input {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: #fbfdfb;
  color: var(--text);
  transition: border-color 140ms ease, background 140ms ease;
}

.contact-form input,
.contact-form select,
.contact-auth-form input {
  min-height: 50px;
  padding: 0 15px;
}

.contact-form textarea {
  min-height: 142px;
  padding: 14px 15px;
  resize: vertical;
  line-height: 1.5;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder,
.contact-auth-form input::placeholder {
  color: #8a968e;
}

.contact-form input:hover,
.contact-form select:hover,
.contact-form textarea:hover,
.contact-auth-form input:hover,
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus,
.contact-auth-form input:focus {
  border-color: var(--green);
  background: #fff;
}

.contact-auth-form small {
  color: var(--muted);
  font-size: 0.78rem;
}

.contact-account-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 15px;
  border-radius: 14px;
  background: var(--surface-soft);
}

.contact-account-bar div {
  display: grid;
  min-width: 0;
  gap: 3px;
}

.contact-account-bar span {
  color: var(--muted);
  font-size: 0.73rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-account-bar strong {
  overflow: hidden;
  color: var(--text);
  font-size: 0.9rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.contact-account-bar button {
  flex: 0 0 auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 850;
}

.contact-form-status {
  min-height: 20px;
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 750;
}

.contact-form-status.is-success {
  color: var(--green);
}

.contact-form-status.is-error {
  color: #a93424;
}

.contact-form-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 54px;
  padding: 0 20px;
  border: 0;
  border-radius: 15px;
  background: var(--green);
  color: #fff;
  font-weight: 900;
  transition: transform 140ms ease, background 140ms ease, opacity 140ms ease;
}

.contact-form-submit:hover {
  background: var(--green-hover);
}

.contact-form-submit:active {
  transform: translateY(1px);
}

.contact-form-submit:disabled {
  cursor: wait;
  opacity: 0.66;
}

.contact-form-submit > span:last-child {
  font-size: 1.35rem;
}

@media (prefers-reduced-motion: reduce) {
  .hero-animated-bg::before,
  .hero-animated-bg::after,
  .hero-animated-bg,
  .hero-wave,
  .hero-shell::before,
  .hero-shell::after,
  .hero-title-circled::before,
  .hero-title-circled::after {
    animation: none;
  }

  .contact-modal {
    transition: none;
  }
}

@media (max-width: 1080px) {
  .landing-nav {
    grid-template-columns: minmax(120px, 1fr) auto;
  }

  .landing-menu {
    display: none;
  }

  .hero-content,
  .journey-section,
  .offer-section,
  .feature-page-hero-content,
  .feature-page-detail,
  .related-feature-section,
  .faq-cta-section {
    width: min(100% - 48px, 900px);
  }

  .hero-content {
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 30px;
    padding-right: 38px;
    padding-left: 38px;
  }

  .hero-phone {
    min-height: 600px;
  }

  .hero-phone .hero-phone-mockup {
    right: 12px;
    bottom: -64px;
    width: clamp(310px, 34vw, 345px);
  }

  .hero-copy h1 {
    font-size: 3.2rem;
  }

  .hero-character {
    bottom: -104px;
    left: 128px;
    width: 320px;
  }

  .feature-card-grid {
    width: min(100% - 48px, 900px);
    gap: 20px;
  }

  .pricing-section {
    width: min(100% - 48px, 900px);
  }

  .feature-page-hero-content {
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 34px;
  }

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

  .landing-footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100% - 48px, 900px);
  }
}

@media (max-width: 820px) {
  .contact-modal-shell {
    padding: env(safe-area-inset-top) 20px calc(36px + env(safe-area-inset-bottom));
  }

  .contact-modal-header {
    position: relative;
    min-height: 70px;
    background: transparent;
    backdrop-filter: none;
  }

  .contact-modal-content {
    grid-template-columns: 1fr;
    gap: 28px;
    width: min(100%, 620px);
    padding-top: 30px;
  }

  .contact-modal-intro h2 {
    max-width: 560px;
    margin-top: 18px;
    font-size: clamp(2.35rem, 9vw, 3.6rem);
  }

  .contact-form,
  .contact-auth {
    padding: 22px;
    border-radius: 22px;
  }

  .hero-shell {
    width: 100%;
    min-height: auto;
  }

  .landing-nav {
    width: 100%;
    min-height: 70px;
    padding: 0 20px;
  }

  .landing-nav::after {
    right: 20px;
    left: 20px;
  }

  .hero-animated-bg::before {
    top: -28%;
    right: -42%;
  }

  .hero-animated-bg::after {
    right: -16%;
    bottom: -34%;
  }

  .hero-wave-left {
    bottom: -330px;
    left: -560px;
    width: 980px;
    height: 600px;
    opacity: 0.5;
  }

  .hero-wave-right {
    right: -520px;
    bottom: -245px;
    width: 960px;
    height: 650px;
    opacity: 0.44;
  }

  .hero-wave-crest {
    right: -90px;
    bottom: -295px;
    opacity: 0.3;
  }

  .landing-brand {
    gap: 8px;
  }

  .brand-icon-image {
    width: 42px;
    height: 25px;
  }

  .brand-word {
    font-size: 1.05rem;
  }

  .landing-get-app-link {
    min-width: 132px;
    min-height: 40px;
    font-size: 0.82rem;
    padding: 0 16px;
  }

  .nav-actions {
    gap: 8px;
  }

  .language-current {
    min-width: 76px;
    height: 40px;
    min-height: 40px;
    padding: 0 12px;
  }

  .hero-content {
    width: 100%;
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 46px 24px 0;
    text-align: left;
  }

  .hero-copy {
    padding-bottom: 0;
    transform: none;
  }

  .hero-copy h1 {
    font-size: 2.65rem;
  }

  .hero-copy p {
    font-size: 1rem;
  }

  .hero-character {
    display: none;
  }

  .hero-phone {
    min-height: 500px;
  }

  .hero-bottom-transition {
    height: 110px;
  }

  .hero-phone .hero-phone-mockup {
    right: 50%;
    bottom: -210px;
    width: 360px;
    transform: translateX(50%);
  }

  .feature-card-grid,
  .pricing-grid,
  .feature-page-hero-content,
  .feature-page-detail,
  .related-feature-grid,
  .faq-cta-section,
  .journey-section,
  .offer-section {
    grid-template-columns: 1fr;
  }

  .feature-card-grid,
  .journey-section,
  .offer-section,
  .feature-page-hero-content,
  .feature-page-detail,
  .related-feature-section,
  .pricing-section,
  .faq-cta-section,
  .landing-footer {
    width: min(100% - 32px, 620px);
  }

  .seo-feature-section {
    margin-top: 54px;
    margin-bottom: 54px;
  }

  .seo-feature-heading h2,
  .feature-page-copy h1 {
    font-size: 2.45rem;
  }

  .seo-feature-track {
    padding-right: 20px;
    padding-left: 20px;
  }

  .seo-feature-card {
    flex-basis: min(82vw, 340px);
  }

  .feature-page-hero-content {
    padding: 42px 0 48px;
  }

  .feature-page-phone .modern-phone-frame,
  .feature-page-mockup-image {
    width: 250px;
  }

  .feature-card-grid {
    margin-top: 24px;
  }

  .feature-card {
    min-height: 240px;
  }

  .journey-section,
  .offer-section {
    gap: 34px;
  }

  .offer-copy {
    padding-bottom: 0;
  }

  .pricing-section,
  .faq-cta-section,
  .landing-footer {
    padding: 30px 20px;
  }

  .cta-panel {
    padding: 36px 22px;
  }
}

@media (max-width: 520px) {
  .contact-modal-shell {
    padding-right: 14px;
    padding-bottom: calc(24px + env(safe-area-inset-bottom));
    padding-left: 14px;
  }

  .contact-modal-header {
    min-height: 64px;
  }

  .contact-modal-header .brand-icon-image {
    width: 38px;
    height: 23px;
  }

  .contact-modal-close {
    width: 42px;
    height: 42px;
  }

  .contact-modal-content {
    gap: 22px;
    padding-top: 22px;
  }

  .contact-modal-eyebrow {
    min-height: 27px;
    padding: 0 11px;
    font-size: 0.68rem;
  }

  .contact-modal-intro {
    padding-top: 0;
  }

  .contact-modal-intro h2 {
    margin: 15px 0 12px;
    font-size: clamp(2.15rem, 11.5vw, 3rem);
    letter-spacing: -0.055em;
  }

  .contact-modal-intro p {
    font-size: 0.94rem;
    line-height: 1.52;
  }

  .contact-modal-intro > a {
    margin-top: 14px;
    font-size: 0.92rem;
  }

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

  .contact-form,
  .contact-auth {
    gap: 16px;
    padding: 17px;
    border-radius: 18px;
  }

  .contact-auth-heading h3 {
    font-size: 1.28rem;
  }

  .contact-auth-heading p {
    font-size: 0.88rem;
  }

  .contact-auth-tabs button {
    min-height: 40px;
    padding: 0 8px;
    font-size: 0.79rem;
  }

  .contact-oauth-apple {
    height: 40px;
    padding: 0 13px;
    font-size: 0.82rem;
  }

  .contact-form input,
  .contact-form select,
  .contact-auth-form input {
    min-height: 48px;
  }

  .contact-form textarea {
    min-height: 128px;
  }

  .contact-form-submit {
    min-height: 50px;
  }

  .contact-account-bar {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 520px) {
  .landing {
    background: var(--page);
  }

  .faq-cta-section {
    width: 100%;
    min-height: 100svh;
    margin: 0;
    border-radius: 0;
    padding: 32px 20px;
  }

  .faq-panel,
  .cta-panel {
    width: 100%;
  }

  .landing-nav {
    grid-template-columns: auto minmax(0, 1fr);
    width: 100%;
    gap: 10px;
    padding: 0 14px;
  }

  .landing-nav::after {
    right: 14px;
    left: 14px;
  }

  .landing-brand {
    gap: 7px;
  }

  .brand-icon-image {
    width: 40px;
    height: 24px;
  }

  .brand-word {
    font-size: 0.98rem;
  }

  .landing-get-app-link {
    min-width: 112px;
    font-size: 0.78rem;
  }

  .nav-actions {
    gap: 6px;
  }

  .landing-nav .language-switcher {
    display: none;
  }

  .nav-actions .landing-get-app-link {
    width: auto;
    min-width: 126px;
    padding: 0 12px;
  }

  .language-current {
    min-width: 64px;
    height: 40px;
    gap: 6px;
    padding: 0 9px;
  }

  .language-menu {
    min-width: 122px;
  }

  .get-app-topbar {
    align-items: flex-start;
  }

  .hero-copy h1 {
    font-size: 2.3rem;
    line-height: 1.14;
    text-align: center;
  }

  .hero-copy .hero-cta {
    display: flex;
    width: fit-content;
    margin: 40px auto 0;
  }

  .hero-content {
    padding-top: 30px;
    padding-bottom: 44px;
  }

  .journey-copy h2,
  .offer-copy h2,
  .seo-feature-heading h2,
  .feature-page-copy h1,
  .feature-page-detail h2,
  .pricing-section h2,
  .faq-panel h2,
  .cta-panel h2,
  .legal-content h1,
  .get-app-card h1 {
    font-size: 1.8rem;
  }

  .feature-card,
  .price-card,
  .get-app-card,
  .legal-section {
    padding: 22px;
  }

  .journey-list article {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
    min-height: 90px;
    padding-bottom: 22px;
  }

  .journey-list {
    width: min(100%, 340px);
    margin-right: auto;
    margin-left: auto;
  }

  .journey-list article > div {
    padding: 10px 0;
  }

  .journey-list h3 {
    font-size: 1.06rem;
  }

  .journey-list p {
    font-size: 0.86rem;
    line-height: 1.32;
  }

  .journey-list::before {
    top: 21px;
    bottom: 21px;
    left: 21px;
  }

  .mini-icon {
    width: 42px;
    height: 42px;
  }

  .site-icon-mini {
    width: 34px;
    height: 34px;
  }

  .iphone-mockup {
    width: 230px;
  }

  .seo-card-phone.iphone-mockup,
  .seo-card-mockup-image {
    width: 198px;
  }

  .hero-phone {
    min-height: 430px;
  }

  .hero-phone .hero-phone-mockup {
    top: 16px;
    bottom: auto;
    width: min(285px, calc(100vw - 54px));
  }

  .offer-visual {
    height: 150px;
  }

  .seo-feature-section {
    margin-top: 54px;
  }

  .landing-footer {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 18px;
  }

  .footer-language-switcher {
    display: block;
    grid-column: 1 / -1;
    justify-self: center;
  }

  .footer-language-switcher .language-menu {
    top: auto;
    right: 50%;
    bottom: calc(100% + 8px);
    transform: translateX(50%);
  }
}

@media (max-width: 360px) {
  .landing-nav {
    padding-right: 10px;
    padding-left: 10px;
  }

  .brand-icon-image {
    width: 36px;
  }

  .brand-word {
    font-size: 0.9rem;
  }

  .nav-actions .landing-get-app-link {
    min-width: 116px;
    padding: 0 10px;
    font-size: 0.73rem;
  }
}

@media (max-width: 350px) {
  .landing-nav .brand-word {
    display: none;
  }
}

@media (max-width: 820px) {
  .blog-index-hero { min-height: 380px; padding-top: 72px; }
  .blog-featured-card { grid-template-columns: 1fr; }
  .blog-card-media { min-height: 340px; }
  .blog-card-media img { top: 38px; width: 210px; }
  .blog-card-copy { padding: 38px 28px 44px; }
  .blog-article-cover { height: 410px; }
  .blog-article-cover img { width: 225px; }
  .blog-article-layout { grid-template-columns: 1fr; gap: 45px; margin-top: 55px; }
  .blog-toc { position: static; }
  .blog-article-cta { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 520px) {
  .blog-index-hero { min-height: 350px; padding: 64px 18px 128px; }
  .blog-index-hero h1 { font-size: 2.7rem; }
  .blog-index-content,
  .blog-article-header,
  .blog-article-cover,
  .blog-article-layout,
  .blog-article-cta { width: min(100% - 28px, 1120px); }
  .blog-index-content { margin-bottom: 80px; }
  .blog-featured-card,
  .blog-article-cover { border-radius: 22px; }
  .blog-card-media { min-height: 290px; }
  .blog-card-media img { width: 180px; }
  .blog-article-header { padding-top: 58px; }
  .blog-back-link { margin-bottom: 34px; }
  .blog-article-header h1 { font-size: 2.65rem; }
  .blog-article-cover { height: 330px; }
  .blog-article-cover img { top: 38px; width: 185px; }
  .blog-article-body { font-size: 1.03rem; }
  .blog-article-intro { font-size: 1.18rem; }
  .blog-article-body ul { padding: 20px 20px 20px 38px; }
  .blog-article-cta { margin-bottom: 78px; padding: 30px 24px; }
}
