:root {
  color-scheme: light;
  --bg: #fbfaf7;
  --surface: #ffffff;
  --surface-strong: #f2f5ef;
  --text: #14231b;
  --muted: #546157;
  --brand: #0b6f3f;
  --brand-strong: #084f33;
  --accent: #d99a21;
  --red: #c94732;
  --blue: #1b5f95;
  --border: #d8dfd6;
  --focus: #1b5f95;
  --shadow: 0 18px 50px rgba(20, 35, 27, 0.12);
  --text-scale: 100%;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-size: 1rem;
  line-height: 1.6;
}

#main,
.site-footer {
  font-size: var(--text-scale);
}

body.high-contrast {
  --bg: #000000;
  --surface: #111111;
  --surface-strong: #1d1d1d;
  --text: #ffffff;
  --muted: #eeeeee;
  --brand: #00d66f;
  --brand-strong: #5dffac;
  --accent: #ffd34d;
  --red: #ff7868;
  --blue: #77c8ff;
  --border: #ffffff;
  --focus: #ffd34d;
  --shadow: none;
}

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

a {
  color: var(--brand-strong);
}

button,
input,
textarea {
  font: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

.skip-link {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 20;
  padding: 0.65rem 1rem;
  background: var(--text);
  color: var(--bg);
  transform: translateY(-150%);
}

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

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

.site-header {
  font-size: 1rem;
  position: sticky;
  top: 0;
  z-index: 10;
  background: color-mix(in srgb, var(--bg) 92%, transparent);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(14px);
}

.nav-shell {
  width: min(1180px, calc(100% - 32px));
  min-height: 76px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 0.75rem;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--text);
  font-weight: 800;
  text-decoration: none;
}

.brand img {
  border-radius: 10px;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(0.3rem, 1.5vw, 1rem);
  justify-self: end;
}

.nav-menu a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.45rem 0.2rem;
}

.nav-menu a + a,
.nav-menu .language-picker {
  border-left: 1px solid color-mix(in srgb, var(--border) 72%, transparent);
  padding-left: clamp(0.55rem, 1.2vw, 0.9rem);
}

.contrast-toggle,
.text-size-button,
.nav-toggle {
  min-height: 44px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  border-radius: 8px;
  cursor: pointer;
}

.contrast-toggle {
  width: 44px;
  display: inline-grid;
  place-items: center;
  padding: 0;
  font-size: 1.2rem;
  font-weight: 800;
}

.text-size-controls {
  display: inline-flex;
  gap: 0.35rem;
}

.text-size-button {
  min-width: 44px;
  padding: 0 0.45rem;
  font-weight: 900;
}

.text-size-button:disabled {
  cursor: not-allowed;
  opacity: 0.48;
}

.language-picker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.9rem;
  font-weight: 900;
}

.language-picker select {
  min-height: 44px;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.45rem 0.65rem;
  background: var(--surface);
  color: var(--text);
  font-weight: 800;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 44px;
  padding: 0;
  place-items: center;
  justify-self: end;
  align-self: center;
}

.nav-toggle span[aria-hidden="true"] {
  position: relative;
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
  transition: background-color 160ms ease;
}

.nav-toggle span[aria-hidden="true"]::before,
.nav-toggle span[aria-hidden="true"]::after {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
  content: "";
  transition: transform 160ms ease;
}

.nav-toggle span[aria-hidden="true"]::before {
  transform: translateY(-7px);
}

.nav-toggle span[aria-hidden="true"]::after {
  transform: translateY(7px);
}

.nav-toggle[aria-expanded="true"] span[aria-hidden="true"] {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] span[aria-hidden="true"]::before {
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span[aria-hidden="true"]::after {
  transform: rotate(-45deg);
}

.section,
.section-band {
  padding: clamp(3.5rem, 7vw, 6.5rem) max(1rem, calc((100vw - 1180px) / 2));
}

.section-band {
  background: var(--surface-strong);
}

.hero {
  min-height: calc(100svh - 76px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: clamp(2rem, 7vw, 5rem);
  align-items: center;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--brand-strong);
  font-size: 0.82em;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 13ch;
  margin: 0;
  font-size: clamp(2.6em, 6vw, 5.4em);
  line-height: 0.98;
}

h2 {
  max-width: 17ch;
  margin: 0;
  font-size: clamp(2em, 4vw, 3.35em);
  line-height: 1.05;
}

h3 {
  margin: 0 0 0.45rem;
  font-size: 1.1em;
  line-height: 1.2;
}

.hero-intro {
  max-width: 52ch;
  margin: 1.25rem 0 0;
  color: var(--muted);
  font-size: 1.12em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.8rem;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--brand);
  border-radius: 8px;
  padding: 0.75rem 1.05rem;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  background: var(--brand);
  color: #ffffff;
}

.button.secondary {
  color: var(--brand-strong);
  background: transparent;
}

.phone-stage {
  display: grid;
  place-items: center;
}

.phone-frame {
  width: min(100%, 360px);
  padding: 0.45rem;
  background: #0e0b12;
  border: 1px solid color-mix(in srgb, var(--border) 60%, transparent);
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.app-screenshot {
  display: block;
  width: 100%;
  height: auto;
  background: #0e0b12;
  border-radius: 26px;
}

.section-heading {
  margin-bottom: 2rem;
}

.section-heading p:not(.eyebrow) {
  max-width: 68ch;
  color: var(--muted);
}

.two-column,
.download-layout,
.contact-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.5rem, 4vw, 3rem);
}

.two-column p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08em;
}

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

.feature-item,
.download-app-panel,
.whatsapp-bot-panel,
.contact-methods {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.feature-item,
.download-app-panel,
.whatsapp-bot-panel,
.contact-methods {
  padding: 1.25rem;
}

.feature-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  background: var(--surface-strong);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--brand-strong);
  font-weight: 900;
}

.feature-item p,
.requirements li,
.whatsapp-bot-panel p,
.whatsapp-bot-panel li,
.contact-methods p {
  margin: 0;
  color: var(--muted);
}


.partner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 190px), 1fr));
  gap: 1rem;
}

.partner-logo-card {
  min-height: 126px;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 8px;
}

.partner-logo-card img {
  display: block;
  width: auto;
  max-width: min(100%, 230px);
  max-height: 86px;
  object-fit: contain;
}

.faq-search-label {
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 900;
}

.faq-search {
  width: min(100%, 620px);
  min-height: 50px;
  padding: 0.75rem 0.9rem;
  border: 2px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  color: var(--text);
}

.faq-list {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.4rem;
}

details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.85rem 1rem;
}

summary {
  cursor: pointer;
  font-weight: 900;
}

details p {
  color: var(--muted);
  margin-bottom: 0;
}

.download-layout {
  align-items: stretch;
}

.download-app-panel {
  display: grid;
  gap: 0.85rem;
  align-content: start;
  overflow: hidden;
}

.download-panel-body {
  display: grid;
  gap: 0.85rem;
}

.download-panel-body h3 {
  margin-bottom: 0;
}

.store-links {
  display: grid;
  gap: 0.75rem;
  align-content: start;
  justify-items: start;
}

.store-links a {
  display: inline-flex;
}

.store-links img {
  width: 245px;
  height: 82px;
  object-fit: contain;
}

.requirements {
  padding-top: 0.9rem;
  border-top: 1px solid var(--border);
}

.requirements h3 {
  margin-bottom: 0.45rem;
}

.requirements ul,
.whatsapp-bot-panel ul {
  margin: 0;
  padding-left: 1.2rem;
}

.whatsapp-bot-panel {
  display: grid;
  gap: 0.85rem;
  align-content: start;
  overflow: hidden;
}

.whatsapp-bot-media {
  display: grid;
  place-items: center;
  margin: -1.25rem -1.25rem 0;
  padding: clamp(0.8rem, 3vw, 1.35rem);
  background: #0b0f0d;
}

.whatsapp-bot-preview {
  display: block;
  width: min(100%, 410px);
  height: auto;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.26);
}

.whatsapp-bot-panel .eyebrow {
  margin: 0;
  padding-top: 0.4rem;
}

.whatsapp-bot-panel .button {
  justify-self: start;
  margin-top: 0.25rem;
}

.contact-form {
  display: grid;
  gap: 0.65rem;
}

.contact-link-panel {
  align-content: start;
  padding: 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.contact-link-panel p {
  margin: 0;
  color: var(--muted);
}

.contact-link-panel .button {
  justify-self: start;
  margin-top: 0.5rem;
}


.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem max(1rem, calc((100vw - 1180px) / 2));
  background: #101913;
  color: #ffffff;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: #ffffff;
}

@media (max-width: 1120px) {
  .nav-shell {
    width: min(1180px, calc(100% - 24px));
    grid-template-columns: minmax(0, 1fr) 44px auto 48px;
    gap: 0.6rem;
    padding: 0.6rem 0;
  }

  .brand {
    min-width: 0;
  }

  .brand span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .nav-toggle {
    display: grid;
    grid-column: 4;
    grid-row: 1;
  }

  .contrast-toggle {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    align-self: center;
  }

  .text-size-controls {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    align-self: center;
  }

  .nav-menu {
    display: none;
    grid-column: 1 / -1;
    grid-row: 2;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin-top: 0.35rem;
    padding-bottom: 0.4rem;
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-menu a {
    padding: 0.85rem 0;
    border-top: 1px solid var(--border);
  }

  .nav-menu a + a {
    border-left: 0;
    padding-left: 0;
  }

  .nav-menu .language-picker {
    border-left: 0;
    border-top: 1px solid var(--border);
    padding: 0.85rem 0 0.15rem;
    align-items: stretch;
    flex-direction: column;
    gap: 0.3rem;
  }

  .nav-menu .language-picker select {
    width: 100%;
    min-width: 0;
  }

  .hero,
  .two-column,
  .download-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  h1 {
    max-width: 12ch;
  }

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

@media (max-width: 430px) {
  .brand span {
    display: none;
  }
}

@media (max-width: 620px) {
  body {
    overflow-x: hidden;
  }

  .section,
  .section-band {
    padding-left: 1rem;
    padding-right: 1rem;
  }

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

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

  .phone-frame {
    width: min(100%, 310px);
  }

  .store-links img {
    width: min(245px, 100%);
  }

  .language-picker {
    align-items: stretch;
    flex-direction: column;
    gap: 0.3rem;
  }

  h1 {
    font-size: clamp(2.25em, 12vw, 3em);
  }
}

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