:root {
  --ink: #09090b;
  --ink-soft: #1c1c1f;
  --lavender: #d9dcf5;
  --lavender-deep: #c7caec;
  --orange: #ff9f2d;
  --orange-bright: #ffac43;
  --orange-ink: #9b4700;
  --cream: #f8f3e9;
  --white: #ffffff;
  --green: #34c759;
  --muted: #666572;
  --border: 2px solid var(--ink);
  --shadow: 10px 10px 0 var(--ink);
  --radius: 28px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--lavender);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.article-page {
  background: var(--cream);
}

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

a {
  color: inherit;
}

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

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-160%);
}

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

.shell {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  color: var(--white);
  background: rgba(9, 9, 11, 0.96);
  border-bottom: 2px solid var(--orange);
  backdrop-filter: blur(16px);
}

.nav {
  display: flex;
  min-height: 78px;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 25px;
  font-weight: 900;
  letter-spacing: -0.04em;
  text-decoration: none;
}

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 12px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-left: auto;
  font-size: 15px;
  font-weight: 750;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--orange-bright);
}

.language-switch {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
}

.language-switch a {
  min-width: 38px;
  padding: 5px 9px;
  border-radius: 999px;
  text-align: center;
}

.language-switch a[aria-current="page"] {
  color: var(--ink);
  background: var(--orange);
}

.mobile-nav {
  display: none;
  margin-left: auto;
}

.mobile-nav summary {
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  list-style: none;
  font-weight: 800;
  cursor: pointer;
}

.mobile-nav summary::-webkit-details-marker {
  display: none;
}

.mobile-panel {
  position: absolute;
  top: 68px;
  right: 20px;
  left: 20px;
  display: grid;
  gap: 2px;
  padding: 12px;
  color: var(--ink);
  background: var(--cream);
  border: var(--border);
  border-radius: 18px;
  box-shadow: 7px 7px 0 var(--orange);
}

.mobile-panel a {
  padding: 11px 12px;
  border-radius: 10px;
  font-weight: 800;
  text-decoration: none;
}

.mobile-panel a:hover {
  background: rgba(255, 159, 45, 0.2);
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100svh - 80px);
  align-items: center;
  overflow: hidden;
  padding: clamp(38px, 4vw, 62px) 0;
  border-bottom: var(--border);
}

.hero::before,
.hero::after {
  position: absolute;
  width: 260px;
  height: 260px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  content: "";
  opacity: 0.18;
}

.hero::before {
  top: -100px;
  left: -120px;
}

.hero::after {
  right: -100px;
  bottom: -130px;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(calc(100% - 56px), 1320px);
  grid-template-columns: minmax(0, 1.12fr) minmax(390px, 0.8fr);
  align-items: center;
  gap: clamp(44px, 5vw, 76px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 7px 12px;
  color: var(--white);
  background: var(--ink);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 9px;
  height: 9px;
  background: var(--orange);
  border-radius: 50%;
  content: "";
}

.hero h1,
.display-title {
  max-width: 810px;
  margin: 0;
  font-weight: 950;
  letter-spacing: -0.07em;
  line-height: 0.88;
  text-wrap: balance;
}

.hero h1 {
  font-size: clamp(56px, 5vw, 92px);
}

.display-title {
  font-size: clamp(58px, 8vw, 112px);
}

.hero h1 span {
  display: inline-block;
  margin-top: 0.12em;
  padding: 0.01em 0.1em 0.07em;
  color: var(--ink);
  background: var(--orange-bright);
  border-radius: 0.1em;
  line-height: 0.95;
  -webkit-text-stroke: 0;
  box-shadow: 0.06em 0.06em 0 var(--ink);
}

.hero-copy > p {
  max-width: 650px;
  margin: 22px 0 0;
  font-size: clamp(18px, 1.25vw, 21px);
  font-weight: 650;
  letter-spacing: -0.02em;
  line-height: 1.4;
}

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

.hero-actions {
  margin-top: 24px;
}

.cta-actions {
  margin-top: 32px;
}

.store-button,
.button-secondary {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  padding: 13px 21px;
  border: 2px solid var(--ink);
  border-radius: 14px;
  font-weight: 850;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.store-button {
  color: var(--white);
  background: var(--ink);
  box-shadow: 6px 6px 0 var(--orange);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.45);
}

.store-button:hover,
.button-secondary:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 var(--orange);
}

.compatibility-note {
  margin-top: 16px;
  color: #34333a;
  font-size: 14px;
  font-weight: 650;
}

.compatibility-note-on-dark {
  color: #bdbbc4;
}

.hero-visual {
  position: relative;
  width: 100%;
  min-height: clamp(520px, 55vh, 580px);
}

.hero-app-icon {
  position: absolute;
  z-index: 4;
  top: 4%;
  right: 2%;
  width: 94px;
  height: 94px;
  border-radius: 24px;
  box-shadow: 0 18px 38px rgba(9, 9, 11, 0.32), 6px 6px 0 var(--orange);
  transform: rotate(6deg);
}

.hero-phone {
  position: absolute;
  width: min(58%, 270px);
  overflow: hidden;
  border-radius: 32px;
  background: var(--ink);
  box-shadow: 0 28px 58px rgba(9, 9, 11, 0.34);
}

.hero-phone img {
  width: 100%;
  height: auto;
}

.hero-phone-primary {
  z-index: 2;
  top: 50%;
  left: 42%;
  transform: translate(-50%, -50%) rotate(-2deg);
}

.hero-phone-secondary {
  z-index: 1;
  top: 50%;
  right: 2%;
  transform: translateY(-50%) rotate(4deg) scale(0.84);
}

html[lang="pt-BR"] .hero h1,
html[lang="de-DE"] .hero h1,
html[lang="pl-PL"] .hero h1 {
  font-size: clamp(54px, 4.55vw, 86px);
}

.trust-band {
  color: var(--white);
  background: var(--ink);
  border-bottom: var(--border);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-grid li {
  min-height: 112px;
  padding: 26px 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  text-align: center;
}

.trust-grid li:first-child {
  border-left: 0;
}

.trust-grid strong,
.trust-grid span {
  display: block;
}

.trust-grid strong {
  color: var(--orange);
  font-size: 19px;
}

.trust-grid span {
  margin-top: 3px;
  color: #c9c8cf;
  font-size: 13px;
  font-weight: 650;
}

.section {
  padding: clamp(78px, 10vw, 132px) 0;
  border-bottom: var(--border);
}

.section-cream {
  background: var(--cream);
}

.section-orange {
  background: var(--orange);
}

.section-black {
  color: var(--white);
  background: var(--ink);
}

.section-heading {
  display: grid;
  grid-template-columns: 0.45fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 48px;
}

.section-kicker {
  margin: 0;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.section-orange .section-kicker {
  color: #49434a;
}

.section-heading h2 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(44px, 6vw, 78px);
  font-weight: 950;
  letter-spacing: -0.06em;
  line-height: 0.98;
  text-wrap: balance;
}

.section-heading p {
  max-width: 620px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 19px;
}

.section-black .section-heading p {
  color: #b5b3bd;
}

.carousel-wrap {
  position: relative;
}

.carousel-controls {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-bottom: 16px;
}

.carousel-button {
  width: 48px;
  height: 48px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  color: var(--ink);
  background: var(--orange);
  font-size: 23px;
  font-weight: 900;
  cursor: pointer;
}

.screenshot-track {
  display: grid;
  overflow-x: auto;
  grid-auto-columns: minmax(260px, 31%);
  grid-auto-flow: column;
  gap: 24px;
  padding: 5px 5px 28px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--orange) var(--cream);
}

.screenshot-card {
  margin: 0;
  scroll-snap-align: start;
}

.screenshot-card picture {
  display: block;
  overflow: hidden;
  border-radius: 30px;
  background: var(--ink);
  box-shadow: 0 18px 42px rgba(9, 9, 11, 0.24);
}

.screenshot-card img {
  width: 100%;
  height: auto;
}

.screenshot-card figcaption {
  padding: 18px 6px 6px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}

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

.step-card {
  min-height: 280px;
  padding: 25px;
  border: var(--border);
  border-radius: 22px;
  background: var(--lavender);
  box-shadow: 7px 7px 0 var(--ink);
}

.step-card:nth-child(even) {
  background: var(--orange);
}

.step-number {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  border-radius: 50%;
  font-weight: 900;
}

.step-card h3 {
  margin: 28px 0 10px;
  font-size: 27px;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.step-card p {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
}

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

.guide-card {
  display: grid;
  min-height: 245px;
  padding: 28px;
  border: 2px solid rgba(255, 255, 255, 0.22);
  border-radius: 24px;
  background: var(--ink-soft);
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease;
}

.guide-card:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
}

.guide-card .guide-label {
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.guide-card h3 {
  margin: 21px 0 9px;
  font-size: clamp(28px, 3vw, 38px);
  letter-spacing: -0.05em;
  line-height: 1.02;
}

.guide-card p {
  margin: 0;
  color: #bdbbc4;
  font-size: 15px;
}

.guide-card strong {
  align-self: end;
  margin-top: 24px;
  color: var(--orange);
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 970px;
  margin-inline: auto;
}

.faq-item {
  border: var(--border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.45);
  box-shadow: 5px 5px 0 var(--ink);
}

.faq-item summary {
  position: relative;
  padding: 22px 62px 22px 22px;
  list-style: none;
  font-size: 20px;
  font-weight: 850;
  line-height: 1.25;
  cursor: pointer;
}

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

.faq-item summary::after {
  position: absolute;
  top: 20px;
  right: 22px;
  color: var(--orange);
  content: "+";
  font-size: 28px;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-answer {
  padding: 0 22px 22px;
}

.faq-answer p {
  margin: 0 0 12px;
}

.faq-answer a {
  font-weight: 850;
}

.final-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  padding: clamp(48px, 7vw, 86px);
  color: var(--white);
  background: var(--ink);
  border: var(--border);
  border-radius: 35px;
  box-shadow: 13px 13px 0 var(--orange);
}

.final-cta h2 {
  margin: 0;
  font-size: clamp(46px, 6vw, 78px);
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.final-cta p {
  max-width: 600px;
  margin: 18px 0 0;
  color: #bdbbc4;
}

.final-cta .store-button {
  color: var(--ink);
  background: var(--orange);
  box-shadow: 7px 7px 0 var(--white);
}

.site-footer {
  padding: 54px 0 34px;
  color: var(--white);
  background: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 0.7fr);
  gap: 38px;
}

.footer-brand p {
  max-width: 330px;
  color: #a7a5ae;
  font-size: 14px;
}

.footer-column h2 {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-column a {
  display: block;
  margin: 7px 0;
  color: #d6d4dc;
  font-size: 14px;
  text-decoration: none;
}

.footer-column a:hover {
  color: var(--orange);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  color: #8f8d96;
  font-size: 12px;
}

.article-hero {
  padding: 70px 0 50px;
  background: var(--lavender);
  border-bottom: var(--border);
}

.article-shell {
  width: min(calc(100% - 40px), 900px);
  margin-inline: auto;
}

.breadcrumbs {
  margin-bottom: 27px;
  color: #55545c;
  font-size: 14px;
  font-weight: 700;
}

.breadcrumbs a {
  text-decoration-thickness: 2px;
}

.article-hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(48px, 7vw, 82px);
  font-weight: 950;
  letter-spacing: -0.06em;
  line-height: 0.98;
  text-wrap: balance;
}

.article-dek {
  max-width: 760px;
  margin: 25px 0 0;
  font-size: clamp(19px, 2.2vw, 24px);
  font-weight: 600;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 24px;
  color: #5e5d65;
  font-size: 13px;
  font-weight: 750;
}

.article-body {
  padding: 62px 0 90px;
}

.article-body h2 {
  margin: 62px 0 15px;
  font-size: clamp(31px, 4vw, 44px);
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.article-body h3 {
  margin: 32px 0 10px;
  font-size: 24px;
  letter-spacing: -0.03em;
}

.article-body p,
.article-body li {
  color: #2f2e34;
}

.article-body li + li {
  margin-top: 8px;
}

.answer-box,
.app-callout,
.safety-note {
  margin: 0 0 38px;
  border: var(--border);
  border-radius: 24px;
  box-shadow: 8px 8px 0 var(--ink);
}

.answer-box {
  padding: 26px;
  background: var(--orange);
}

.answer-box strong {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.answer-box p {
  margin: 0;
  color: var(--ink);
  font-size: 19px;
  font-weight: 700;
}

.article-image {
  display: grid;
  grid-template-columns: minmax(220px, 0.48fr) 1fr;
  align-items: center;
  gap: clamp(28px, 5vw, 60px);
  margin: 0 0 38px;
}

.article-image picture {
  display: block;
  width: min(100%, 320px);
  overflow: hidden;
  border-radius: 30px;
  background: var(--ink);
  box-shadow: 0 18px 42px rgba(9, 9, 11, 0.24);
}

.article-image img {
  width: 100%;
  height: auto;
  margin-inline: auto;
}

.article-image figcaption {
  padding: 0;
  font-size: 24px;
  font-weight: 850;
  letter-spacing: -0.03em;
  line-height: 1.18;
}

.app-callout {
  padding: 30px;
  color: var(--white);
  background: var(--ink);
}

.app-callout h2,
.app-callout h3 {
  margin-top: 0;
  color: var(--white);
}

.app-callout p,
.app-callout li {
  color: #d0ced6;
}

.app-callout a {
  color: var(--orange);
  font-weight: 850;
}

.safety-note {
  padding: 24px;
  background: #fff6db;
}

.safety-note strong {
  display: block;
  margin-bottom: 7px;
}

.source-list a {
  font-weight: 700;
  text-underline-offset: 3px;
}

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

.related-link {
  padding: 17px;
  border: var(--border);
  border-radius: 15px;
  background: var(--white);
  font-weight: 800;
  line-height: 1.3;
  text-decoration: none;
}

.related-link:hover {
  background: var(--lavender);
}

.guide-hub-hero {
  padding: 80px 0;
  background: var(--lavender);
  border-bottom: var(--border);
}

.guide-hub-hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(56px, 8vw, 96px);
  letter-spacing: -0.065em;
  line-height: 0.92;
}

.guide-hub-hero p {
  max-width: 720px;
  margin: 24px 0 0;
  font-size: 21px;
  font-weight: 600;
}

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

.hub-card {
  padding: 30px;
  border: var(--border);
  border-radius: 23px;
  background: var(--white);
  box-shadow: 7px 7px 0 var(--ink);
}

.hub-card h2 {
  margin: 0;
  font-size: 30px;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.hub-card p {
  margin: 14px 0 22px;
  color: var(--muted);
}

.hub-card a {
  font-weight: 850;
}

.legal-page main {
  width: min(calc(100% - 40px), 850px);
  margin: 60px auto 90px;
  padding: clamp(26px, 6vw, 58px);
  background: var(--white);
  border: var(--border);
  border-radius: 26px;
  box-shadow: 10px 10px 0 var(--orange);
}

.legal-page h1 {
  font-size: clamp(42px, 6vw, 66px);
  letter-spacing: -0.055em;
  line-height: 1;
}

.legal-page h2 {
  margin-top: 42px;
  font-size: 28px;
  letter-spacing: -0.035em;
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .mobile-nav {
    display: block;
  }

  .hero {
    min-height: 0;
    padding-block: 58px 68px;
  }

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

  .hero-visual {
    min-height: 610px;
    max-width: 620px;
    margin-inline: auto;
  }

  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .trust-grid li:nth-child(4) {
    border-left: 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 16px;
  }

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

  .screenshot-track {
    grid-auto-columns: minmax(250px, 44%);
  }

  .final-cta {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1.2fr repeat(2, 0.8fr);
  }
}

@media (max-width: 700px) {
  .shell,
  .article-shell {
    width: min(calc(100% - 28px), var(--max));
  }

  .nav {
    min-height: 68px;
  }

  .brand {
    font-size: 22px;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .hero {
    padding: 46px 0 56px;
  }

  .hero h1 {
    font-size: clamp(48px, 14vw, 68px);
  }

  .display-title {
    font-size: clamp(52px, 17vw, 76px);
  }

  .hero-copy > p {
    font-size: 18px;
  }

  .hero-visual {
    min-height: 480px;
  }

  .hero-phone {
    width: min(64%, 240px);
    border-radius: 27px;
    box-shadow: 0 22px 42px rgba(9, 9, 11, 0.3);
  }

  .hero-app-icon {
    width: 78px;
    height: 78px;
    border-radius: 19px;
  }

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

  .trust-grid li,
  .trust-grid li:nth-child(4) {
    border-left: 1px solid rgba(255, 255, 255, 0.18);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .trust-grid li:nth-child(odd) {
    border-left: 0;
  }

  .trust-grid li:last-child {
    grid-column: 1 / -1;
  }

  .section {
    padding: 72px 0;
  }

  .section-heading h2 {
    font-size: 45px;
  }

  .screenshot-track {
    grid-auto-columns: minmax(245px, 82%);
  }

  .steps-grid,
  .guide-grid,
  .hub-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .final-cta {
    padding: 36px 25px;
    border-radius: 26px;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .article-hero {
    padding-top: 48px;
  }

  .article-hero h1 {
    font-size: 49px;
  }

  .article-image {
    grid-template-columns: 1fr;
  }

  .article-image picture {
    max-width: 320px;
    margin-inline: auto;
  }

  .article-image figcaption {
    padding: 0 18px;
    font-size: 20px;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
