:root {
  --landing-bg: #ffffff;
  --landing-bg-soft: #f7f8fb;
  --landing-border: #e8edf3;
  --landing-text: #111827;
  --landing-muted: #667085;
  --landing-blue: #4f6eff;
  --landing-blue-deep: #2446a6;
  --landing-shadow: 0 24px 60px rgba(17, 24, 39, 0.06);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.landing-clean-page {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(79, 110, 255, 0.06), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f7f8fb 100%);
  color: var(--landing-text);
  font-family: "Manrope", sans-serif;
}

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

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

.landing-container {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.landing-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(17, 24, 39, 0.06);
}

.landing-header-shell,
.landing-footer-shell {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.landing-brand,
.landing-footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.landing-brand-icon,
.landing-footer-brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.landing-brand-copy {
  display: grid;
  gap: 2px;
}

.landing-brand-copy strong {
  font-size: 1rem;
}

.landing-brand-copy span,
.landing-footer-link {
  color: var(--landing-muted);
}

.landing-header-stores {
  display: flex;
  align-items: center;
  gap: 10px;
}

.landing-header-store {
  height: 44px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 14px;
  border: 1px solid var(--landing-border);
  background: #ffffff;
  color: var(--landing-text);
  font-weight: 700;
  box-shadow: 0 10px 22px rgba(17, 24, 39, 0.04);
}

.landing-header-store:hover,
.landing-footer-link:hover {
  color: var(--landing-blue-deep);
  border-color: #d5deea;
}

.landing-header-store-dark {
  background: #111827;
  border-color: #111827;
  color: #ffffff;
}

.landing-header-store-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
  flex-shrink: 0;
}

.landing-header-store-icon-apple {
  width: 16px;
  height: 16px;
}

.landing-hero {
  padding: 56px 0 36px;
}

.landing-hero-grid {
  display: grid;
  gap: 28px;
  justify-items: center;
}

.landing-content-grid,
.landing-cta-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: 48px;
  align-items: center;
}

.landing-kicker {
  margin: 0 0 14px;
  color: var(--landing-blue-deep);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.landing-hero-copy h1,
.landing-section-head h2,
.landing-content-copy h1,
.landing-content-copy h2,
.landing-cta-shell h2 {
  margin: 0;
  line-height: 1.04;
  letter-spacing: -0.035em;
}

.landing-hero-copy h1 {
  max-width: 12ch;
  font-size: clamp(2.6rem, 6vw, 5rem);
}

.landing-hero-copy {
  max-width: 760px;
  display: grid;
  justify-items: center;
  text-align: center;
}

.landing-lead,
.landing-section-head p,
.landing-content-copy p,
.landing-cta-shell p,
.landing-card p,
.landing-audience-card p,
.landing-info-row span {
  color: var(--landing-muted);
  line-height: 1.7;
}

.landing-lead {
  max-width: 52ch;
  margin: 20px 0 0;
  font-size: 1.05rem;
}

.landing-store-row,
.landing-store-column {
  display: flex;
  align-items: center;
  gap: 14px;
}

.landing-store-row {
  margin-top: 28px;
  flex-wrap: wrap;
}

.landing-language-links {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.landing-language-link {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--landing-border);
  background: rgba(255, 255, 255, 0.88);
  color: var(--landing-text);
  font-size: 0.92rem;
  font-weight: 700;
  box-shadow: 0 10px 22px rgba(17, 24, 39, 0.04);
}

.landing-language-link:hover {
  color: var(--landing-blue-deep);
  border-color: #d5deea;
}

.landing-store-column {
  flex-direction: column;
  align-items: stretch;
}

.landing-store-button {
  min-width: 240px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-radius: 18px;
  border: 1px solid var(--landing-border);
  background: #ffffff;
  box-shadow: 0 12px 24px rgba(17, 24, 39, 0.04);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.landing-store-button:hover {
  transform: translateY(-1px);
  border-color: #d5deea;
  box-shadow: 0 18px 34px rgba(17, 24, 39, 0.08);
}

.landing-store-button-dark {
  background: #111827;
  border-color: #111827;
  color: #ffffff;
}

.landing-store-icon-wrap {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
  flex-shrink: 0;
}

.landing-store-icon-wrap-light {
  background: #f8fafc;
}

.landing-store-icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.landing-store-icon-apple {
  width: 20px;
  height: 20px;
}

.landing-store-copy {
  display: grid;
  gap: 2px;
}

.landing-store-note {
  font-size: 0.76rem;
  font-weight: 700;
  color: inherit;
  opacity: 0.76;
}

.landing-store-copy strong {
  font-size: 1rem;
}

.landing-metrics,
.landing-card-grid,
.landing-audience-grid {
  display: grid;
  gap: 16px;
}

.landing-metrics {
  margin-top: 26px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.landing-metric,
.landing-card,
.landing-audience-card,
.landing-info-card,
.landing-device-card,
.landing-cta-shell,
.landing-flag {
  background: #ffffff;
  border: 1px solid var(--landing-border);
  box-shadow: var(--landing-shadow);
}

.landing-metric {
  padding: 18px;
  border-radius: 18px;
}

.landing-metric strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.45rem;
  line-height: 1;
}

.landing-metric span {
  display: block;
  color: var(--landing-muted);
  line-height: 1.55;
}

.landing-hero-visual {
  position: relative;
  width: min(100%, 760px);
  min-height: 620px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.landing-device-card {
  position: absolute;
  bottom: 26px;
  left: 50%;
  z-index: 3;
  width: min(620px, calc(100% - 56px));
  overflow: hidden;
  padding: 18px;
  border-radius: 24px;
  transform: translateX(-50%);
  background: rgba(249, 251, 255, 0.98);
  border-color: #dfe8fb;
  box-shadow: 0 12px 18px rgba(17, 24, 39, 0.08);
}

.landing-device-aura {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.landing-device-aura-one {
  top: -78px;
  right: -42px;
  width: 150px;
  height: 150px;
  background: rgba(113, 164, 255, 0.11);
}

.landing-device-aura-two {
  bottom: -40px;
  left: -26px;
  width: 108px;
  height: 108px;
  background: rgba(107, 228, 157, 0.11);
}

.landing-device-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.landing-device-list div {
  min-height: 100%;
  padding: 13px 12px;
  border-radius: 14px;
  display: grid;
  justify-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.54);
  border: 1px solid rgba(204, 218, 246, 0.76);
  color: #445575;
  font-weight: 700;
  text-align: center;
  line-height: 1.35;
}

.landing-device-list div span {
  font-size: 0.95rem;
}

.landing-device-footer {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.landing-device-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 16px;
  padding: 12px 14px;
  background: #1d2433;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.landing-device-cta-arrow {
  font-size: 1.05rem;
  font-weight: 700;
}

.landing-hero-speech {
  position: absolute;
  top: 18px;
  left: 50%;
  z-index: 4;
  width: min(280px, calc(100% - 80px));
  padding: 14px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(212, 222, 234, 0.9);
  box-shadow: 0 18px 34px rgba(17, 24, 39, 0.08);
  transform: translateX(-50%);
  text-align: center;
}

.landing-hero-speech::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 18px;
  height: 18px;
  background: inherit;
  border-right: 1px solid rgba(212, 222, 234, 0.9);
  border-bottom: 1px solid rgba(212, 222, 234, 0.9);
  transform: translateX(-50%) rotate(45deg);
}

.landing-hero-speech strong {
  display: block;
  font-size: 1.2rem;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.landing-flags {
  position: absolute;
  inset: 40px 0 0 0;
  z-index: 1;
}

.landing-flag {
  position: absolute;
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  font-size: 1.7rem;
  user-select: none;
}

.landing-flag-1 { top: 72px; left: 34px; transform: rotate(-6deg); }
.landing-flag-2 { top: 118px; right: 48px; transform: rotate(8deg); }
.landing-flag-3 { top: 214px; left: 112px; transform: rotate(-10deg); }
.landing-flag-4 { top: 286px; right: 92px; transform: rotate(6deg); }
.landing-flag-5 { top: 372px; left: 44px; transform: rotate(-7deg); }
.landing-flag-6 { top: 430px; right: 154px; transform: rotate(9deg); }
.landing-flag-7 { top: 486px; left: 160px; transform: rotate(-8deg); }
.landing-flag-8 { top: 520px; right: 24px; transform: rotate(7deg); }

.landing-hero-character {
  position: relative;
  z-index: 2;
  display: block;
  width: min(420px, 90%);
  margin: 0 auto 44px;
  transform: translateY(-18px);
  filter: drop-shadow(0 26px 44px rgba(17, 24, 39, 0.1));
}

.landing-section {
  padding: 92px 0;
}

.landing-section-soft {
  background: var(--landing-bg-soft);
}

.landing-section-head {
  max-width: 760px;
}

.landing-card-grid,
.landing-audience-grid {
  margin-top: 28px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.landing-card,
.landing-audience-card {
  padding: 24px;
  border-radius: 20px;
}

.landing-card h3,
.landing-audience-card strong {
  display: block;
  margin: 0 0 10px;
  font-size: 1.06rem;
}

.landing-feature-list {
  margin: 24px 0 0;
  padding-left: 18px;
  display: grid;
  gap: 12px;
}

.landing-feature-list li {
  line-height: 1.6;
}

.landing-info-card {
  padding: 24px;
  border-radius: 24px;
}

.landing-info-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.landing-info-row + .landing-info-row {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--landing-border);
}

.landing-info-row strong {
  text-align: right;
}

.landing-section-cta {
  padding-top: 24px;
}

.landing-cta-shell {
  padding: 34px;
  border-radius: 28px;
}

.landing-footer {
  padding: 24px 0 36px;
}

.landing-footer-shell {
  border-top: 1px solid var(--landing-border);
}

.landing-footer-brand span {
  color: var(--landing-muted);
  font-weight: 700;
}

@media (max-width: 1080px) {
  .landing-content-grid,
  .landing-cta-shell {
    grid-template-columns: 1fr;
  }

  .landing-card-grid,
  .landing-audience-grid,
  .landing-metrics {
    grid-template-columns: 1fr;
  }

  .landing-hero-visual {
    min-height: 560px;
  }

  .landing-device-card {
    width: min(560px, calc(100% - 40px));
  }

  .landing-hero-speech {
    top: 12px;
  }
}

@media (max-width: 760px) {
  .landing-header {
    position: static;
  }

  .landing-header-shell,
  .landing-footer-shell {
    min-height: auto;
    padding: 16px 0;
    flex-direction: column;
    align-items: flex-start;
  }

  .landing-header-stores {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .landing-header-store {
    width: 100%;
    justify-content: center;
  }

  .landing-hero {
    padding-top: 28px;
  }

  .landing-hero-grid {
    gap: 24px;
  }

  .landing-hero-copy h1 {
    max-width: none;
    font-size: clamp(2.1rem, 12vw, 3.2rem);
  }

  .landing-lead {
    font-size: 0.98rem;
  }

  .landing-hero-visual {
    min-height: 370px;
    padding-top: 72px;
    justify-content: center;
  }

  .landing-hero-speech {
    top: 8px;
    width: min(244px, calc(100% - 48px));
    padding: 12px 14px;
    border-radius: 18px;
  }

  .landing-hero-speech strong {
    font-size: 1rem;
  }

  .landing-device-card {
    position: absolute;
    inset: auto auto 12px 50%;
    width: min(360px, calc(100% - 20px));
    padding: 14px;
    border-radius: 20px;
    transform: translateX(-50%);
  }

  .landing-device-list {
    grid-template-columns: 1fr;
  }

  .landing-device-list div {
    padding: 11px 12px;
    display: flex;
    align-items: center;
    justify-items: unset;
    gap: 9px;
    font-size: 0.9rem;
    text-align: left;
  }

  .landing-device-footer {
    margin-top: 10px;
  }

  .landing-device-cta {
    width: 100%;
    justify-content: center;
  }

  .landing-flags {
    inset: 68px 0 0 0;
  }

  .landing-flag {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    font-size: 1.1rem;
  }

  .landing-flag-1 { top: 10px; left: 8px; }
  .landing-flag-2 { top: 30px; right: 10px; }
  .landing-flag-3 { top: 72px; left: 54px; }
  .landing-flag-4 { top: 106px; right: 48px; }
  .landing-flag-5 { top: 164px; left: 16px; }
  .landing-flag-6 { top: 194px; right: 92px; }
  .landing-flag-7 { top: 236px; left: 70px; }
  .landing-flag-8 { top: 252px; right: 6px; }

  .landing-hero-character {
    width: min(240px, 60vw);
    margin: 0 auto 30px;
    transform: translateY(-12px);
  }

  .landing-store-button {
    width: 100%;
    min-width: 0;
  }

  .landing-store-row,
  .landing-store-column {
    flex-direction: column;
    align-items: stretch;
  }

  .landing-hero-copy {
    justify-items: stretch;
    text-align: left;
  }

  .landing-language-links {
    justify-content: flex-start;
  }

  .landing-section {
    padding: 72px 0;
  }

  .landing-info-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .landing-info-row strong {
    text-align: left;
  }
}

@media (max-width: 420px) {
  .landing-hero-visual {
    min-height: 332px;
    padding-top: 64px;
  }

  .landing-hero-speech {
    top: 6px;
    width: min(220px, calc(100% - 40px));
    padding: 10px 12px;
  }

  .landing-hero-speech strong {
    font-size: 0.92rem;
  }

  .landing-device-card {
    width: min(310px, calc(100% - 16px));
    padding: 12px;
  }

  .landing-device-list div {
    padding: 10px;
    font-size: 0.8rem;
  }

  .landing-device-cta {
    font-size: 0.74rem;
  }

  .landing-flag {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }

  .landing-flag-1 { top: 12px; left: 4px; }
  .landing-flag-2 { top: 22px; right: 6px; }
  .landing-flag-3 { top: 58px; left: 42px; }
  .landing-flag-4 { top: 92px; right: 42px; }
  .landing-flag-5 { top: 146px; left: 12px; }
  .landing-flag-6 { top: 174px; right: 74px; }
  .landing-flag-7 { top: 214px; left: 58px; }
  .landing-flag-8 { top: 230px; right: 4px; }

  .landing-hero-character {
    width: min(206px, 56vw);
    margin: 0 auto 24px;
    transform: translateY(-10px);
  }
}

.landing-form-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: start;
}

.landing-form-copy p {
  max-width: 54ch;
}

.landing-contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 24px;
  border: 1px solid #e4e7ec;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 20px 60px rgba(16, 24, 40, 0.05);
}

.landing-contact-field {
  display: grid;
  gap: 8px;
}

.landing-contact-field span {
  color: #344054;
  font-size: 0.84rem;
  font-weight: 700;
}

.landing-contact-field input,
.landing-contact-field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #d0d5dd;
  border-radius: 18px;
  background: #ffffff;
  color: #101828;
  font: inherit;
  resize: vertical;
}

.landing-contact-field input:focus,
.landing-contact-field textarea:focus {
  outline: none;
  border-color: #111827;
  box-shadow: 0 0 0 4px rgba(17, 24, 39, 0.06);
}

.landing-contact-field-full,
.landing-contact-actions {
  grid-column: 1 / -1;
}

.landing-contact-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.landing-contact-submit {
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid #111827;
  border-radius: 999px;
  background: #111827;
  color: #ffffff;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.landing-contact-submit:disabled {
  opacity: 0.6;
  cursor: default;
}

.landing-contact-feedback {
  margin: 0;
  color: #667085;
  line-height: 1.5;
  text-align: right;
}

.landing-contact-feedback-success {
  color: #027a48;
}

.landing-contact-feedback-error {
  color: #b42318;
}

@media (max-width: 900px) {
  .landing-form-shell {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .landing-contact-form {
    grid-template-columns: 1fr;
    padding: 20px;
    border-radius: 24px;
  }

  .landing-contact-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .landing-contact-feedback {
    text-align: left;
  }
}
