@font-face {
  font-family: 'Melodrama';
  src: url('./Melodrama-Semibold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Chillax';
  src: url('./Chillax-Extralight.ttf') format('truetype');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg-gray: #e9e9e5;
  --orange: #f36d2c;
  --orange-dark: #d9541b;
  --tiffany: #81d8d0;
  --tiffany-light: #a8eee7;
  --tiffany-dark: #4fc3bb;
  --dark: #0b1118;
  --dark-soft: #1a212b;
  --text: #111111;
  --muted: rgba(17, 17, 17, 0.7);
  --light: #f2f2f2;
  --card: #f5f3f1;
  --heading-font: 'Melodrama', Georgia, serif;
  --body-font: 'Chillax', system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--body-font);
  font-weight: 200;
  background: var(--bg-gray);
  color: var(--text);
  overflow-x: hidden;
  padding-bottom: calc(102px + env(safe-area-inset-bottom));
}

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

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(111, 83, 243, 0.75);
  outline-offset: 4px;
}

button {
  font: inherit;
}

h1,
h2,
h3 {
  font-family: var(--heading-font);
  font-weight: 600;
}

.page-shell {
  min-height: 100vh;
  background: var(--bg-gray);
}

main {
  max-width: 1440px;
  margin: 0 auto;
}

.hero {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background: linear-gradient(180deg, var(--tiffany-light) 0%, var(--tiffany) 58%, var(--tiffany-dark) 100%);
  padding-top: 116px;
  padding-bottom: 28px;
  overflow: hidden;
}

.currency-bg {
  position: absolute;
  inset: -6% -2% -5% -2%;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
  mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.92) 14%,
    rgba(0, 0, 0, 0.96) 86%,
    rgba(0, 0, 0, 0) 100%
  );
  -webkit-mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.92) 14%,
    rgba(0, 0, 0, 0.96) 86%,
    rgba(0, 0, 0, 0) 100%
  );
}

.currency-symbol {
  position: absolute;
  display: block;
  font-weight: 900;
  letter-spacing: -0.08em;
  color: rgba(255, 255, 255, 0.34);
  text-shadow: 0 10px 34px rgba(16, 115, 107, 0.18);
  user-select: none;
  will-change: transform, opacity;
  opacity: var(--symbol-max-opacity, 0.26);
  animation: floatCurrency 22s ease-in-out infinite alternate;
  filter: drop-shadow(0 2px 10px rgba(255, 255, 255, 0.16));
}

@keyframes floatCurrency {
  0% {
    transform: translate3d(-18px, 0, 0) rotate(-8deg) scale(0.78);
    opacity: var(--symbol-min-opacity, 0.08);
  }
  18% {
    transform: translate3d(24px, -18px, 0) rotate(8deg) scale(0.96);
    opacity: var(--symbol-max-opacity, 0.26);
  }
  36% {
    transform: translate3d(-28px, -44px, 0) rotate(-12deg) scale(1.08);
    opacity: var(--symbol-max-opacity, 0.26);
  }
  56% {
    transform: translate3d(20px, -84px, 0) rotate(12deg) scale(1.18);
    opacity: calc(var(--symbol-max-opacity, 0.26) * 1.08);
  }
  78% {
    transform: translate3d(-24px, -126px, 0) rotate(-10deg) scale(1.08);
    opacity: var(--symbol-max-opacity, 0.26);
  }
  100% {
    transform: translate3d(14px, -162px, 0) rotate(8deg) scale(0.86);
    opacity: var(--symbol-min-opacity, 0.08);
  }
}

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
  display: flex;
  justify-content: center;
  padding: 22px 20px 0;
}

.nav-pill {
  width: min(94vw, 1120px);
  min-height: 70px;
  background: rgba(255, 255, 255, 0.84);
  border-radius: 999px;
  border: 2px solid rgba(17, 17, 17, 0.75);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px 0 20px;
  gap: 16px;
}

.brand-block {
  display: flex;
  align-items: center;
  font-weight: 800;
  font-size: 1.02rem;
  letter-spacing: -0.05em;
}

.brand-mark {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-right: 10px;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(255,255,255,0.7), rgba(240,244,249,0.46));
  border: 1px solid rgba(255,255,255,0.9);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.9), inset 0 -10px 18px rgba(180,201,220,0.2), 0 8px 18px rgba(61,80,96,0.14);
  overflow: hidden;
  backdrop-filter: blur(2px);
}

.brand-icon {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: translateZ(0);
}

.brand-mark::before,
.brand-mark::after {
  display: none;
}

.brand-name {
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 1.46rem;
  line-height: 1;
  letter-spacing: 0;
}

.nav-links {
  --nav-indicator-x: 0px;
  --nav-indicator-y: 0px;
  --nav-indicator-width: 0px;
  --nav-indicator-height: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 2vw, 24px);
  flex: 1;
  position: relative;
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(17, 17, 17, 0.9);
  white-space: nowrap;
}

.nav-links::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: var(--nav-indicator-width);
  height: var(--nav-indicator-height);
  border-radius: 999px;
  background: rgba(243, 109, 44, 0.14);
  box-shadow: inset 0 0 0 1px rgba(243, 109, 44, 0.18), 0 8px 18px rgba(243, 109, 44, 0.14);
  opacity: 0;
  transform: translate3d(var(--nav-indicator-x), var(--nav-indicator-y), 0) scale(0.86);
  transition: transform 0.34s cubic-bezier(0.2, 0.9, 0.2, 1.15), width 0.28s ease, height 0.28s ease, opacity 0.2s ease;
  pointer-events: none;
}

.nav-links.is-nav-ready::before,
.nav-links:focus-within::before,
.nav-links:hover::before {
  opacity: 1;
  transform: translate3d(var(--nav-indicator-x), var(--nav-indicator-y), 0) scale(1);
}

.nav-links a {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 6px;
  border-radius: 999px;
  transition: color 0.2s ease, transform 0.24s cubic-bezier(0.2, 0.9, 0.2, 1.2);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--orange-dark);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #fff;
  box-shadow: 0 12px 20px rgba(217, 84, 27, 0.22);
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  width: 17px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.22s ease;
}

.menu-toggle span:first-child {
  transform: translateY(-4px);
}

.menu-toggle span:last-child {
  transform: translateY(4px);
}

.nav-pill.is-menu-open .menu-toggle span:first-child {
  transform: rotate(45deg);
}

.nav-pill.is-menu-open .menu-toggle span:last-child {
  transform: rotate(-45deg);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 3px;
  width: 18px;
  height: 3px;
  border-radius: 999px;
  background: var(--orange);
  opacity: 0;
  transform: translateX(-50%) scaleX(0.4);
  transform-origin: center;
  transition: transform 0.24s ease, opacity 0.2s ease;
}

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

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #fff;
  font-weight: 800;
  letter-spacing: -0.04em;
  padding: 0.85rem 1.5rem;
  min-width: 136px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.cta-button:hover {
  transform: translateY(-1px);
}

.cta-button.dark {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  min-width: 132px;
}

.nav-cta {
  min-width: 116px;
  cursor: default;
}

.download-dock {
  position: fixed;
  z-index: 90;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0 18px calc(16px + env(safe-area-inset-bottom));
  pointer-events: none;
}

.download-dock-inner {
  width: min(92vw, 520px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.66), rgba(255, 255, 255, 0.34)),
    rgba(231, 255, 252, 0.68);
  box-shadow: 0 22px 56px rgba(29, 129, 121, 0.22), 0 8px 20px rgba(17, 17, 17, 0.12);
  backdrop-filter: blur(22px) saturate(1.18);
  -webkit-backdrop-filter: blur(22px) saturate(1.18);
  pointer-events: auto;
}

.store-button {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  border-radius: 19px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background:
    radial-gradient(circle at 22% 0%, rgba(255, 255, 255, 0.34), transparent 34%),
    linear-gradient(135deg, #ff8b3d 0%, var(--orange) 48%, var(--orange-dark) 100%);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28), 0 12px 28px rgba(217, 84, 27, 0.32);
  font-weight: 850;
  letter-spacing: -0.03em;
  line-height: 1.05;
  user-select: none;
  white-space: nowrap;
}

.store-button svg {
  width: 25px;
  height: 25px;
  flex: 0 0 auto;
  fill: currentColor;
  filter: drop-shadow(0 1px 0 rgba(0, 0, 0, 0.08));
}

.store-button span {
  display: grid;
  gap: 2px;
  text-align: left;
  font-size: 1rem;
}

.store-button small {
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.86;
}

.store-button[aria-disabled="true"] {
  cursor: default;
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(17, 17, 17, 0.62);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-top: 12px;
  padding-inline: clamp(20px, 5vw, 72px);
}

.hero-content h1 {
  margin: 0;
  max-width: 980px;
  margin-inline: auto;
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: clamp(2.65rem, 3.65vw, 4.55rem);
  line-height: 0.98;
  letter-spacing: 0;
  color: #111;
  text-wrap: balance;
}

.hero-content p {
  margin: 20px auto 0;
  max-width: 900px;
  font-size: clamp(0.98rem, 1.02vw, 1.14rem);
  line-height: 1.64;
  letter-spacing: 0;
  color: rgba(17, 17, 17, 0.74);
}

.mockup-gallery {
  position: relative;
  z-index: 1;
  width: min(94%, 1120px);
  margin: 24px auto 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: clamp(18px, 3vw, 54px);
  padding-inline: 0;
}

.mockup-preview {
  position: relative;
  flex: 0 0 clamp(220px, 18vw, 310px);
  aspect-ratio: 0.48;
  margin: 0;
  overflow: hidden;
  filter: drop-shadow(0 34px 34px rgba(20, 12, 48, 0.26));
}

.mockup-preview img {
  position: absolute;
  display: block;
  width: auto;
  max-width: none;
  height: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.mockup-preview:nth-child(1),
.mockup-preview:nth-child(3) {
  transform: translateY(24px);
  z-index: 1;
}

.mockup-preview.is-featured {
  flex-basis: clamp(240px, 19.5vw, 340px);
  transform: translateY(2px);
  z-index: 2;
}

.mockup-preview.is-featured img {
  height: 100%;
}

.brand-strip {
  background: var(--bg-gray);
  text-align: center;
  padding-top: 60px;
  padding-bottom: 32px;
}

.section-shell {
  width: min(96%, 1160px);
  margin: 0 auto;
}

.feature-section,
.pro-section {
  padding: 58px 24px;
}

.section-heading {
  margin-bottom: 28px;
}

.section-heading h2,
.pro-shell h2,
.legal-hero h1 {
  margin: 0;
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: clamp(1.95rem, 2.45vw, 2.85rem);
  line-height: 1;
  letter-spacing: 0;
}

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

.feature-card,
.pro-card,
.contact-card {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(17, 17, 17, 0.06);
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 18px 24px rgba(17, 17, 17, 0.02);
}

.feature-card h3,
.pro-card h3,
.contact-card h2 {
  margin: 0 0 10px;
  font-size: clamp(1.22rem, 1.45vw, 1.55rem);
  line-height: 1;
  letter-spacing: 0;
}

.feature-card p,
.pro-card p,
.pro-shell p,
.contact-card p,
.legal-content p,
.legal-content li {
  color: rgba(17, 17, 17, 0.72);
  line-height: 1.62;
  font-size: 0.93rem;
}

.pro-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.95fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: stretch;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 255, 255, 0.32), transparent 35%),
    radial-gradient(circle at 82% 16%, rgba(243, 109, 44, 0.18), transparent 34%),
    linear-gradient(135deg, var(--tiffany-light) 0%, var(--tiffany) 50%, var(--tiffany-dark) 100%);
  border-radius: 34px;
  padding: clamp(28px, 4vw, 46px);
  color: #111;
  box-shadow: 0 24px 52px rgba(29, 129, 121, 0.22);
}

.pro-shell .eyebrow,
.pro-shell p {
  color: rgba(17, 17, 17, 0.72);
}

.pro-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pro-copy p:not(.eyebrow) {
  max-width: 620px;
}

.pro-options {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.pro-card {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 10px;
  background: rgba(255, 255, 255, 0.46);
  border-color: rgba(255, 255, 255, 0.34);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.36), 0 18px 28px rgba(29, 129, 121, 0.12);
}

.pro-card-highlight {
  background:
    radial-gradient(circle at 72% 18%, rgba(255,255,255,0.18), transparent 38%),
    linear-gradient(135deg, rgba(243, 109, 44, 0.94), rgba(217, 84, 27, 0.92));
  border-color: rgba(255,255,255,0.18);
}

.pro-card-label {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  margin-bottom: 8px;
  padding: 0 11px;
  border-radius: 999px;
  background: rgba(255,255,255,0.38);
  color: rgba(17, 17, 17, 0.68);
  font-family: var(--heading-font);
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1;
}

.pro-card p,
.pro-card h3,
.pro-card a {
  color: #111;
}

.pro-card-highlight p,
.pro-card-highlight h3,
.pro-card-highlight a,
.pro-card-highlight .pro-card-label {
  color: #fff;
}

.pro-card-highlight .pro-card-label {
  background: rgba(255,255,255,0.18);
}

.pro-card p {
  margin-top: 0;
  margin-bottom: 0;
}

.pro-note {
  grid-column: 1 / -1;
  margin: 0;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.34);
  border: 1px solid rgba(255,255,255,0.28);
}

.pro-note a {
  color: #111;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.text-link {
  display: inline-flex;
  margin-top: 8px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.brand-strip h2 {
  margin: 0;
  font-size: clamp(1.2rem, 1.45vw, 1.55rem);
  letter-spacing: -0.025em;
  color: rgba(17, 17, 17, 0.84);
}

.brand-list {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: clamp(1.8rem, 3vw, 4rem);
  padding: 0 24px;
}

.brand-logo {
  font-size: clamp(1.7rem, 2vw, 3.1rem);
  font-weight: 800;
  letter-spacing: -0.08em;
  color: rgba(17, 17, 17, 0.82);
  opacity: 0.9;
}

.logo-pro {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 130px;
  height: 72px;
  font-size: clamp(1.2rem, 1.6vw, 1.8rem);
  letter-spacing: -0.09em;
  font-weight: 900;
  background: rgba(17,17,17,0.04);
  border-radius: 12px;
  box-shadow: inset 0 0 0 1px rgba(17,17,17,0.08);
}

.logo-pro::before,
.logo-pro::after {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  height: 8px;
  background: rgba(17, 17, 17, 0.7);
  border-radius: 999px;
}

.logo-pro::before {
  top: 22px;
}

.logo-pro::after {
  bottom: 22px;
}

.logo-gillette {
  font-family: var(--heading-font);
  font-weight: 600;
}

.logo-nespresso {
  font-family: var(--heading-font);
  font-weight: 600;
}

.logo-alan {
  font-family: var(--heading-font);
  font-weight: 600;
}

.faq-section {
  padding: 34px 24px 54px;
}

.policy-section {
  padding: 0 24px 32px;
}

.policy-shell {
  width: min(96%, 1240px);
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 30px;
  padding: 30px 26px 18px;
  border: 1px solid rgba(17, 17, 17, 0.06);
  box-shadow: 0 18px 24px rgba(17, 17, 17, 0.02);
}

.policy-header {
  margin-bottom: 18px;
}

.policy-header h3 {
  margin: 0;
  font-size: clamp(1.7rem, 2vw, 2.35rem);
  letter-spacing: 0;
  color: rgba(17, 17, 17, 0.9);
}

.policy-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 2fr);
  gap: 28px;
}

.policy-intro p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.6;
  letter-spacing: -0.015em;
  color: rgba(17, 17, 17, 0.76);
}

.policy-content {
  display: grid;
  gap: 18px;
}

.policy-item {
  background: rgba(17, 17, 17, 0.02);
  border: 1px solid rgba(17, 17, 17, 0.06);
  border-radius: 18px;
  padding: 18px 18px 16px;
}

.policy-item h4 {
  margin: 0 0 8px;
  font-size: 1rem;
  letter-spacing: -0.04em;
  color: rgba(17, 17, 17, 0.9);
}

.policy-item p {
  margin: 0;
  color: rgba(17, 17, 17, 0.7);
  line-height: 1.6;
  font-size: 0.96rem;
}

.faq-shell {
  width: min(96%, 1160px);
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 8%, rgba(243, 109, 44, 0.18), transparent 32%),
    linear-gradient(135deg, rgba(255,255,255,0.82), rgba(247,245,242,0.62));
  border-radius: 30px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: 0 22px 46px rgba(17, 17, 17, 0.06);
}

.faq-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.faq-header .eyebrow {
  margin-bottom: 8px;
  color: rgba(243, 109, 44, 0.94);
}

.faq-header h2 {
  margin: 0;
  font-family: var(--heading-font);
  font-size: clamp(1.95rem, 2.35vw, 2.8rem);
  line-height: 1;
  letter-spacing: 0;
  color: rgba(17, 17, 17, 0.92);
}

.faq-support-link {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #fff;
  font-size: 0.86rem;
  font-weight: 800;
  box-shadow: 0 12px 20px rgba(217, 84, 27, 0.2);
}

.faq-list {
  width: 100%;
  margin: 0 auto;
  display: grid;
  gap: 12px;
  counter-reset: faq;
}

.faq-item {
  counter-increment: faq;
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(17, 17, 17, 0.07);
  border-radius: 20px;
  box-shadow: 0 12px 24px rgba(17, 17, 17, 0.035);
  transition: border-color 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
}

.faq-item:hover,
.faq-item.active {
  border-color: rgba(243, 109, 44, 0.28);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 34px rgba(17, 17, 17, 0.06);
}

.faq-question {
  position: relative;
  width: 100%;
  background: transparent;
  color: rgba(17, 17, 17, 0.9);
  border: none;
  border-radius: 20px;
  padding: 18px 20px;
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  text-align: left;
  font-family: var(--heading-font);
  font-size: clamp(1.18rem, 1.35vw, 1.42rem);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.04;
  cursor: pointer;
}

.faq-question span:last-child {
  min-width: 0;
}

.faq-plus {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(243, 109, 44, 0.12);
  border: 1px solid rgba(243, 109, 44, 0.18);
  color: var(--orange-dark);
  font-size: 0;
  line-height: 1;
  transform: none;
  transition: background 0.24s ease, color 0.24s ease, border-color 0.24s ease;
}

.faq-plus::before {
  content: counter(faq, decimal-leading-zero);
  display: inline-grid;
  place-items: center;
  width: 2.25ch;
  height: 1em;
  text-align: center;
  font-size: 0.76rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  font-variant-numeric: tabular-nums;
  transform: translateY(0.02em);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 0.34s ease, opacity 0.24s ease;
  padding: 0 20px 0 76px;
  opacity: 0;
}

.faq-answer p {
  min-height: 0;
  margin: 0;
  padding: 0 0 18px;
  color: rgba(17, 17, 17, 0.68);
  font-size: 0.92rem;
  line-height: 1.66;
  transform: translateY(-4px);
  transition: transform 0.3s ease;
}

.faq-answer a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.faq-item.active .faq-answer {
  grid-template-rows: 1fr;
  opacity: 1;
}

.faq-item.active .faq-answer p {
  transform: translateY(0);
}

.faq-item.active .faq-plus {
  transform: none;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-color: rgba(217, 84, 27, 0.35);
  color: #fff;
}

.footer-wrap {
  padding: 22px 24px 64px;
}

.footer-card {
  width: min(94%, 1160px);
  margin: 0 auto;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.82), rgba(247,245,242,0.66)),
    radial-gradient(circle at 0% 0%, rgba(129, 216, 208, 0.32), transparent 38%);
  border-radius: 30px;
  box-shadow: 0 24px 48px rgba(17,17,17,0.06);
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.7fr);
  overflow: hidden;
  border: 1px solid rgba(17,17,17,0.07);
}

.footer-brand {
  position: relative;
  min-height: 320px;
  background:
    radial-gradient(circle at 18% 18%, rgba(255,255,255,0.28), transparent 30%),
    linear-gradient(180deg, var(--tiffany-light) 0%, var(--tiffany) 58%, var(--tiffany-dark) 100%);
  padding: clamp(26px, 3vw, 34px);
  color: #111;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: clamp(20px, 2.4vw, 30px);
  overflow: hidden;
}

.footer-brand::after {
  content: "$";
  position: absolute;
  right: -14px;
  bottom: -34px;
  font-size: clamp(7rem, 11vw, 10rem);
  font-weight: 900;
  line-height: 1;
  color: rgba(255,255,255,0.16);
  pointer-events: none;
}

.footer-logotype {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
  font-size: 1rem;
}

.footer-brand p {
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: var(--heading-font);
  max-width: 17ch;
  font-size: clamp(1.55rem, 1.82vw, 2.15rem);
  font-weight: 600;
  line-height: 1.16;
  letter-spacing: 0;
  color: rgba(17,17,17,0.92);
  text-wrap: balance;
}

.footer-links-panel {
  padding: clamp(24px, 3vw, 34px);
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.footer-topline {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: start;
}

.footer-columns {
  display: grid;
  grid-template-columns: minmax(130px, 0.7fr) minmax(130px, 0.7fr) minmax(240px, 1.1fr);
  gap: 18px;
}

.footer-column {
  min-width: 0;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255,255,255,0.48);
  border: 1px solid rgba(17,17,17,0.05);
}

.footer-description {
  margin: 0;
  max-width: 680px;
  color: rgba(17,17,17,0.7);
  line-height: 1.58;
  font-size: clamp(0.9rem, 0.96vw, 1rem);
  letter-spacing: -0.01em;
}

.footer-mail {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #fff;
  font-size: 0.86rem;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 12px 20px rgba(217, 84, 27, 0.18);
}

.footer-columns h2 {
  margin: 0 0 14px;
  font-size: clamp(1rem, 1.15vw, 1.18rem);
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(243, 109, 44, 0.9);
}

.footer-columns ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 11px;
}

.footer-columns a {
  font-size: clamp(0.9rem, 0.95vw, 0.98rem);
  font-weight: 800;
  letter-spacing: -0.018em;
  line-height: 1.28;
  color: rgba(17,17,17,0.82);
}

.footer-contact p {
  margin: 0 0 14px;
  color: rgba(17,17,17,0.66);
  font-size: 0.9rem;
  line-height: 1.55;
}

.footer-contact a {
  display: inline-flex;
  color: var(--orange-dark);
}

.footer-columns a:hover,
.footer-mail:hover,
.legal-content a:hover,
.contact-card a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.legal-main {
  padding-top: 118px;
}

.legal-hero {
  width: min(92%, 960px);
  margin: 0 auto;
  padding: 44px 0 24px;
}

.legal-hero p {
  max-width: 760px;
  color: rgba(17, 17, 17, 0.72);
  line-height: 1.62;
  font-size: clamp(0.98rem, 1.25vw, 1.12rem);
}

.legal-shell {
  width: min(92%, 960px);
  margin: 0 auto 28px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(17, 17, 17, 0.06);
  border-radius: 28px;
  padding: 30px;
  box-shadow: 0 18px 24px rgba(17, 17, 17, 0.02);
}

.legal-content {
  max-width: 960px;
}

.legal-content h2 {
  margin: 34px 0 10px;
  font-size: clamp(1.08rem, 1.25vw, 1.28rem);
  letter-spacing: -0.015em;
}

.legal-content h2:first-of-type {
  margin-top: 22px;
}

.legal-content p {
  margin: 0 0 14px;
}

.legal-content a,
.contact-card a,
.legal-crosslinks a {
  color: #5234d8;
  font-weight: 800;
}

a.cta-button,
.contact-card a.cta-button {
  color: #fff;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}

.support-button {
  margin-top: 10px;
}

.check-list {
  margin: 0;
  padding-left: 20px;
}

.details-list {
  display: grid;
  gap: 12px;
}

.details-list details {
  background: rgba(17, 17, 17, 0.03);
  border: 1px solid rgba(17, 17, 17, 0.07);
  border-radius: 16px;
  padding: 0 16px;
}

.details-list summary {
  cursor: pointer;
  padding: 16px 0;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.details-list p {
  margin: 0;
  padding: 0 0 18px;
  color: rgba(17, 17, 17, 0.72);
  line-height: 1.7;
}

.legal-crosslinks {
  margin-top: 24px !important;
}

.footer-bottom {
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid rgba(17,17,17,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(17,17,17,0.6);
}

@media (prefers-reduced-motion: reduce) {
  .currency-symbol {
    animation: none;
    opacity: 0.08;
  }

  .nav-links::before,
  .nav-links a,
  .nav-links a::after,
  .cta-button,
  .store-button {
    transition: none;
  }
}

@media (max-width: 900px) {
  .nav-pill {
    width: min(94vw, 820px);
    padding-inline: 14px;
  }

  .nav-links {
    gap: 12px;
    font-size: 0.72rem;
  }

  .nav-cta {
    display: none;
  }

  .hero-content {
    padding-inline: 24px;
  }

  .hero-content h1 {
    max-width: 38rem;
    font-size: clamp(1.95rem, 5.55vw, 2.9rem);
    line-height: 1.1;
  }

  .hero-content p {
    max-width: 38rem;
    font-size: 0.94rem;
    line-height: 1.62;
  }

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

  .pro-shell,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .pro-options {
    grid-template-columns: 1fr 1fr;
  }

  .mockup-gallery {
    width: min(90%, 520px);
    flex-direction: column;
    align-items: center;
    gap: 18px;
    margin-top: 26px;
  }

  .mockup-preview,
  .mockup-preview:nth-child(1),
  .mockup-preview:nth-child(3),
  .mockup-preview.is-featured {
    flex: 0 0 auto;
    width: min(100%, 320px);
    height: auto;
    aspect-ratio: 0.48;
    transform: none;
    margin-inline: 0;
  }

  .mockup-preview img,
  .mockup-preview.is-featured img {
    width: auto;
    height: 100%;
  }

  .cta-button {
    min-width: auto;
    padding-inline: 1.1rem;
  }

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

  .footer-brand {
    min-height: auto;
    gap: 24px;
  }

  .footer-brand p {
    max-width: 19ch;
  }

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

  .footer-mail {
    justify-self: start;
  }

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

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

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: calc(96px + env(safe-area-inset-bottom));
  }

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

  .site-nav {
    padding: 8px 8px 0;
  }

  .nav-pill {
    width: calc(100vw - 16px);
    min-height: 46px;
    flex-wrap: nowrap;
    justify-content: space-between;
    border-radius: 999px;
    padding: 6px 7px 6px 9px;
    gap: 10px;
    overflow: visible;
    position: relative;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: min(230px, calc(100vw - 24px));
    flex: none;
    display: grid;
    justify-content: stretch;
    gap: 6px;
    padding: 10px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(17, 17, 17, 0.12);
    box-shadow: 0 18px 36px rgba(17, 17, 17, 0.14);
    backdrop-filter: blur(18px) saturate(1.12);
    -webkit-backdrop-filter: blur(18px) saturate(1.12);
    font-size: 1.05rem;
    line-height: 1;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px) scale(0.98);
    transform-origin: top right;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.2s ease, visibility 0.18s ease;
  }

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

  .nav-links a {
    min-height: 38px;
    justify-content: flex-start;
    padding-inline: 12px;
    border-radius: 14px;
    background: rgba(243, 109, 44, 0.08);
  }

  .nav-pill.is-menu-open .nav-links {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }

  .menu-toggle {
    position: relative;
    display: inline-flex;
    flex: 0 0 auto;
    width: 36px;
    height: 36px;
  }

  .nav-links a:hover,
  .nav-links a:focus-visible {
    transform: none;
  }

  .brand-block {
    flex: 0 0 auto;
    font-size: 0.82rem;
  }

  .brand-mark {
    width: 24px;
    height: 24px;
    border-radius: 10px;
    margin-right: 4px;
  }

  .brand-name {
    font-size: 0.86rem;
  }

  .download-dock {
    padding: 0 10px calc(10px + env(safe-area-inset-bottom));
  }

  .download-dock-inner {
    width: min(100%, 370px);
    gap: 7px;
    padding: 7px;
    border-radius: 21px;
  }

  .store-button {
    min-height: 48px;
    gap: 6px;
    border-radius: 15px;
  }

  .store-button svg {
    width: 18px;
    height: 18px;
  }

  .store-button span {
    display: inline-flex;
    align-items: baseline;
    gap: 3px;
    font-size: 0.82rem;
    letter-spacing: -0.035em;
    line-height: 1;
    text-align: center;
  }

  .store-button small {
    font-size: 0;
    letter-spacing: 0;
  }

  .store-button small::after {
    content: "Get";
    font-size: 0.62rem;
    letter-spacing: -0.02em;
    text-transform: none;
    opacity: 0.9;
  }

  .hero-content {
    margin-top: 2px;
    padding-inline: 22px;
  }

  .hero-content h1 {
    max-width: 21.5rem;
    font-size: clamp(1.42rem, 5.85vw, 1.78rem);
    line-height: 1.16;
    letter-spacing: -0.038em;
  }

  .hero-content p {
    margin-top: 15px;
    max-width: 21.5rem;
    font-size: 0.78rem;
    line-height: 1.64;
  }

  .mockup-gallery {
    width: min(94vw, 360px);
    margin-top: 22px;
    padding-inline: 0;
    display: flex;
    flex-direction: row;
    align-items: end;
    justify-content: center;
    gap: 6px;
  }

  .mockup-preview,
  .mockup-preview:nth-child(1),
  .mockup-preview:nth-child(3),
  .mockup-preview.is-featured {
    flex: 0 0 auto;
    width: clamp(88px, 24vw, 96px);
    height: auto;
    aspect-ratio: 0.58;
    margin: 0;
  }

  .mockup-preview:nth-child(1) {
    transform: translateY(12px);
  }

  .mockup-preview:nth-child(3) {
    transform: translateY(12px);
  }

  .mockup-preview.is-featured {
    width: clamp(104px, 28vw, 116px);
    transform: translateY(0);
  }

  .mockup-preview:nth-child(3) img {
    left: 43%;
  }

  .mockup-preview img,
  .mockup-preview.is-featured img {
    width: auto;
    height: 100%;
  }

  .section-heading h2,
  .pro-shell h2 {
    font-size: clamp(1.68rem, 7.4vw, 2.15rem);
    line-height: 1;
    letter-spacing: 0;
  }

  .feature-card,
  .pro-card,
  .contact-card {
    padding: 20px;
  }

  .feature-card h3,
  .pro-card h3,
  .contact-card h2 {
    font-size: clamp(1.12rem, 5.1vw, 1.34rem);
    line-height: 1.02;
  }

  .faq-shell {
    padding: 20px 14px;
    border-radius: 24px;
  }

  .faq-header {
    align-items: flex-start;
    margin-bottom: 18px;
  }

  .faq-support-link {
    min-height: 36px;
    padding-inline: 14px;
    font-size: 0.78rem;
  }

  .faq-header h2 {
    font-size: clamp(1.7rem, 7.5vw, 2.15rem);
  }

  .faq-question {
    grid-template-columns: 34px minmax(0, 1fr);
    padding: 14px 14px;
    gap: 12px;
    font-size: 1.05rem;
    align-items: start;
  }

  .faq-plus {
    width: 34px;
    height: 34px;
    margin-top: 1px;
  }

  .faq-plus::before {
    font-size: 0.7rem;
    transform: translateY(0.015em);
  }

  .faq-answer {
    padding-left: 60px;
    padding-right: 14px;
  }

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

  .faq-answer p {
    font-size: 0.86rem;
    line-height: 1.58;
  }

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

  .footer-wrap {
    padding: 16px 14px 42px;
  }

  .footer-card {
    width: min(100%, 420px);
    border-radius: 24px;
  }

  .footer-brand,
  .footer-links-panel {
    padding: 22px;
  }

  .footer-logotype {
    margin-bottom: 0;
  }

  .footer-brand p {
    max-width: 17ch;
    font-size: clamp(1.38rem, 7.2vw, 1.86rem);
    line-height: 1.16;
    letter-spacing: 0;
  }

  .footer-links-panel {
    gap: 18px;
  }

  .footer-description {
    font-size: 0.86rem;
    line-height: 1.56;
  }

  .footer-mail {
    width: 100%;
    min-height: 44px;
    font-size: 0.78rem;
  }

  .footer-column {
    padding: 16px;
    border-radius: 16px;
  }

  .footer-columns a {
    font-size: 0.88rem;
  }

  .footer-columns h2 {
    font-size: 1rem;
  }

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

  .feature-section,
  .pro-section {
    padding-inline: 14px;
  }

  .pro-shell,
  .legal-shell {
    padding: 22px;
    border-radius: 22px;
  }

  .pro-shell {
    gap: 22px;
  }

  .pro-options {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .pro-card {
    min-height: auto;
    padding: 18px;
    gap: 9px;
  }

  .pro-card-label {
    margin-bottom: 7px;
    font-size: 0.9rem;
  }

  .pro-note {
    padding: 14px;
    font-size: 0.84rem;
  }

  .legal-main {
    padding-top: 146px;
  }

  .legal-hero {
    padding-top: 26px;
  }

}
