@font-face {
  font-family: "Creuse Circular";
  src: url("fonts/creuse-book.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Creuse Circular";
  src: url("fonts/creuse-bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --brand: #4397f1;
  --brand-dark: #1675d8;
  --green: #049c64;
  --green-soft: #c9f7df;
  --orange: #f47b20;
  --orange-soft: #ffe1bd;
  --pink: #f04f88;
  --pink-soft: #ffd6e5;
  --yellow: #e3a900;
  --yellow-soft: #fff0b8;
  --teal: #079c9c;
  --teal-soft: #c8f6f3;
  --ink-soft: #e7edf5;
  --ink: #101723;
  --muted: #5f6b7a;
  --line: #e6edf4;
  --soft: #f3f8fe;
  --soft-strong: #e7f2ff;
  --white: #ffffff;
  --radius: 8px;
  --shadow: 0 18px 45px rgba(16, 23, 35, 0.12);
  --shadow-strong: 0 28px 80px rgba(16, 23, 35, 0.16);
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 10%, rgba(67, 151, 241, 0.12), transparent 28rem),
    radial-gradient(circle at 88% 4%, rgba(67, 151, 241, 0.08), transparent 24rem),
    var(--white);
  font-family: "Creuse Circular", Arial, sans-serif;
  line-height: 1.5;
}

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

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

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

.site-header {
  position: sticky;
  top: 18px;
  z-index: 20;
  width: min(1120px, calc(100% - 40px));
  margin: 18px auto 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 18px 60px rgba(16, 23, 35, 0.1);
  animation: dropIn 700ms var(--ease) both;
}

.nav {
  position: relative;
  min-height: 62px;
  width: 100%;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--brand);
  font-family: "Sora", "Creuse Circular", Arial, sans-serif;
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-weight: 700;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  padding: 0;
  color: var(--brand-dark);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  transition: background 180ms var(--ease), transform 180ms var(--ease);
}

.nav-toggle svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 2.25;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  transition: opacity 160ms var(--ease), transform 160ms var(--ease);
}

.nav-toggle .close-icon {
  position: absolute;
  opacity: 0;
  transform: scale(0.82) rotate(-10deg);
}

.nav-toggle:hover {
  background: var(--soft-strong);
  transform: translateY(-1px);
}

.site-header.is-open .nav-toggle .menu-icon {
  opacity: 0;
  transform: scale(0.82) rotate(10deg);
}

.site-header.is-open .nav-toggle .close-icon {
  opacity: 1;
  transform: scale(1) rotate(0);
}

.nav-links a:not(.button) {
  position: relative;
  padding: 9px 0;
  transition: color 180ms var(--ease);
}

.nav-links a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  background: var(--brand);
  border-radius: 99px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms var(--ease);
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--brand-dark);
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  color: var(--white);
  background: var(--brand);
  border-radius: var(--radius);
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(67, 151, 241, 0.26);
  transition: transform 180ms var(--ease), background 180ms var(--ease), box-shadow 180ms var(--ease);
}

.button:hover {
  background: var(--brand-dark);
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(67, 151, 241, 0.34);
}

.button.secondary {
  color: var(--brand-dark);
  background: var(--soft);
  box-shadow: none;
}

.hero {
  padding: 90px 0 58px;
  overflow: hidden;
}

.hero-grid,
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 56px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--brand-dark);
  font-weight: 700;
  letter-spacing: 0.02em;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 660px;
  margin-bottom: 18px;
  font-size: clamp(3rem, 7vw, 5.9rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.lead {
  max-width: 600px;
  color: var(--muted);
  font-size: 1.2rem;
}

.hero-grid > div:first-child,
.section-heading,
.split > div,
.panel,
.legal {
  animation: riseIn 760ms var(--ease) both;
}

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

.store-row {
  margin-top: 26px;
}

.store-badge img {
  height: 44px;
  width: auto;
  transition: transform 180ms var(--ease), filter 180ms var(--ease);
}

.store-badge:hover img {
  filter: drop-shadow(0 14px 20px rgba(16, 23, 35, 0.16));
  transform: translateY(-2px) scale(1.02);
}

.hero-media {
  position: relative;
  animation: floatIn 900ms var(--ease) 120ms both;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 11% -8% -7% 16%;
  background: linear-gradient(135deg, var(--soft), rgba(67, 151, 241, 0.16));
  border-radius: 28px;
  z-index: -1;
  animation: softPulse 5s ease-in-out infinite;
}

.hero-media::after {
  content: "";
  position: absolute;
  right: -20px;
  top: 14%;
  width: 98px;
  height: 98px;
  background: rgba(67, 151, 241, 0.14);
  border: 1px solid rgba(67, 151, 241, 0.22);
  border-radius: 999px;
  z-index: -1;
  animation: drift 7s ease-in-out infinite;
}

.hero-media img,
.photo-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow-strong);
  transition: transform 320ms var(--ease), box-shadow 320ms var(--ease);
}

.hero-media:hover img,
.photo-card:hover img,
.app-frame:hover {
  transform: translateY(-6px);
  box-shadow: 0 34px 90px rgba(16, 23, 35, 0.19);
}

.section {
  padding: 72px 0;
}

.section.soft {
  background: linear-gradient(180deg, rgba(243, 248, 254, 0.92), rgba(231, 242, 255, 0.72));
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

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

.card {
  position: relative;
  overflow: hidden;
  min-height: 190px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 38px rgba(16, 23, 35, 0.055);
  transition: transform 260ms var(--ease), border-color 260ms var(--ease), box-shadow 260ms var(--ease);
  animation: riseIn 720ms var(--ease) both;
}

.card:nth-child(2) {
  animation-delay: 90ms;
}

.card:nth-child(3) {
  animation-delay: 180ms;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(67, 151, 241, 0.14), transparent 45%);
  opacity: 0;
  transition: opacity 260ms var(--ease);
}

.card > * {
  position: relative;
}

.card:hover {
  border-color: rgba(67, 151, 241, 0.38);
  box-shadow: 0 24px 70px rgba(16, 23, 35, 0.11);
  transform: translateY(-6px);
}

.card:hover::before {
  opacity: 1;
}

.card .icon,
.contact-card .icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  color: var(--brand-dark);
  background: var(--soft-strong);
  border-radius: 8px;
  font-weight: 700;
}

.icon svg {
  width: 23px;
  height: 23px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.icon-blue {
  color: #075fb4;
  background: #d8ecff;
}

.icon-green {
  color: #04724d;
  background: #d7f7e5;
}

.icon-amber {
  color: #a05a00;
  background: #ffe8bd;
}

.icon-coral,
.icon-pink {
  color: #c02b5f;
  background: #ffd9e6;
}

.icon-orange {
  color: #b84e00;
  background: #ffe0c2;
}

.icon-teal {
  color: #087a7a;
  background: #d2f4f1;
}

.icon-ink {
  color: var(--ink);
  background: var(--ink-soft);
}

.card p,
.split p,
.faq p {
  color: var(--muted);
}

.panel {
  position: relative;
  overflow: hidden;
  padding: 42px;
  background:
    radial-gradient(circle at 85% 18%, rgba(67, 151, 241, 0.35), transparent 18rem),
    linear-gradient(135deg, var(--ink), #172233);
  color: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-strong);
}

.panel::after {
  content: "";
  position: absolute;
  right: 36px;
  bottom: -54px;
  width: 170px;
  height: 170px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  animation: drift 8s ease-in-out infinite;
}

.panel > * {
  position: relative;
  z-index: 1;
}

.panel p {
  color: rgba(255, 255, 255, 0.74);
}

.app-frame {
  padding: 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: transform 320ms var(--ease), box-shadow 320ms var(--ease);
}

.app-frame img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 6px;
}

.help-hero {
  padding: 92px 0 76px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(16, 23, 35, 0.86), rgba(16, 23, 35, 0.42)),
    url("images/help-hero.jpg") center / cover;
}

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

.faq {
  position: relative;
  overflow: hidden;
  padding: 24px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(16, 23, 35, 0.055);
  transition: transform 220ms var(--ease), border-color 220ms var(--ease), box-shadow 220ms var(--ease);
}

.faq:hover {
  border-color: rgba(67, 151, 241, 0.34);
  box-shadow: 0 18px 55px rgba(16, 23, 35, 0.1);
  transform: translateY(-4px);
}

.site-footer {
  padding: 44px 0;
  color: var(--muted);
  background: linear-gradient(180deg, #f8fafc, #eef6ff);
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 24px;
  align-items: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-weight: 700;
}

.footer-stores {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.footer-stores .store-badge img {
  height: 36px;
}

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

.contact-card {
  padding: 28px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 38px rgba(16, 23, 35, 0.055);
  transition: transform 260ms var(--ease), border-color 260ms var(--ease), box-shadow 260ms var(--ease);
}

.contact-card:hover {
  border-color: rgba(67, 151, 241, 0.38);
  box-shadow: 0 24px 70px rgba(16, 23, 35, 0.11);
  transform: translateY(-6px);
}

.contact-card p {
  color: var(--muted);
}

.contact-link {
  display: inline-flex;
  margin-top: 8px;
  color: var(--brand-dark);
  font-weight: 700;
}

.top-button {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--brand);
  border: 0;
  border-radius: 999px;
  box-shadow: 0 18px 46px rgba(67, 151, 241, 0.34);
  cursor: pointer;
  opacity: 0;
  transform: translateY(14px) scale(0.92);
  pointer-events: none;
  transition: opacity 220ms var(--ease), transform 220ms var(--ease), background 180ms var(--ease);
}

.top-button.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.top-button:hover {
  background: var(--brand-dark);
  transform: translateY(-2px) scale(1.02);
}

.top-button svg {
  width: 21px;
  height: 21px;
}

.legal {
  max-width: 860px;
  padding: 54px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.legal h1 {
  font-size: clamp(2.6rem, 5vw, 4.8rem);
}

.legal h2 {
  margin-top: 34px;
  font-size: 1.7rem;
}

.legal p,
.legal li {
  color: var(--muted);
}

.legal ul {
  padding-left: 20px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes dropIn {
  from {
    opacity: 0;
    transform: translateY(-18px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(28px) rotate(1.5deg) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) rotate(0) scale(1);
  }
}

@keyframes softPulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.035);
  }
}

@keyframes drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(-12px, 14px, 0);
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 840px) {
  .site-header {
    top: 10px;
    width: min(100% - 24px, 1120px);
    border-radius: 999px;
  }

  .nav {
    min-height: 58px;
    padding: 0 22px;
    gap: 18px;
  }

  .brand {
    font-size: 1.25rem;
  }

  .nav-links {
    gap: 18px;
    font-size: 0.98rem;
  }

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

  .hero {
    padding-top: 48px;
  }

  .cards,
  .faq-list,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .panel {
    padding: 28px;
  }

  .legal {
    padding: 30px;
  }
}

@media (max-width: 620px) {
  .site-header {
    border-radius: 28px;
  }

  .nav {
    min-height: 58px;
    padding: 0 16px 0 22px;
    align-items: center;
    flex-direction: row;
  }

  .nav-toggle {
    display: grid;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    width: 100%;
    display: grid;
    gap: 6px;
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: 0 22px 60px rgba(16, 23, 35, 0.14);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px) scale(0.98);
    transform-origin: top center;
    transition: opacity 180ms var(--ease), transform 180ms var(--ease);
  }

  .site-header.is-open .nav-links {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .nav-links a:not(.button) {
    padding: 12px 14px;
    border-radius: 12px;
  }

  .nav-links a:not(.button)::after {
    display: none;
  }

  .nav-links a:hover,
  .nav-links a[aria-current="page"] {
    background: var(--soft);
  }

  .footer-stores {
    justify-content: flex-start;
  }
}

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

  .nav-links {
    font-size: 0.95rem;
  }

  .nav-links .button {
    display: none;
  }

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

  .top-button {
    right: 16px;
    bottom: 16px;
  }
}
