:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-2: #f7f7f7;
  --surface-3: #f2f2f2;
  --line: #e5e5e5;
  --line-soft: #f0f0f0;

  --text: #111111;
  --text-2: #666666;
  --muted: #777777;
  --faint: #999999;
  --faint-2: #bbbbbb;
  --faint-3: #cccccc;

  --accent: #e85a52;
  --accent-dark: #d44941;
  --accent-soft: #fdf0ef;
  --accent-ui: #e87a73;
  --accent-ui-border: #f0a39e;
  --accent-ui-glow: rgba(232, 122, 115, 0.18);

  --shadow-phone: 0 18px 40px rgba(0, 0, 0, 0.08), 0 0 40px rgba(232, 122, 115, 0.12);
  --shadow-phone-main: 0 24px 55px rgba(0, 0, 0, 0.1), 0 0 60px rgba(232, 122, 115, 0.16);
  --shadow-card: 0 12px 28px rgba(0, 0, 0, 0.06);

  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 20px;
  --r-2xl: 30px;
  --r-full: 9999px;

  --font-body: 'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-display: 'Manrope', ui-sans-serif, system-ui, -apple-system, sans-serif;

  --container: 1160px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

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

button {
  font: inherit;
  color: inherit;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  color: var(--accent-dark);
}

[hidden] {
  display: none !important;
}

::selection {
  background: var(--accent-soft);
}

.display {
  font-family: var(--font-display);
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  padding-left: max(32px, env(safe-area-inset-left));
  padding-right: max(32px, env(safe-area-inset-right));
}

@media (max-width: 640px) {
  .container {
    padding-left: max(36px, env(safe-area-inset-left));
    padding-right: max(36px, env(safe-area-inset-right));
  }
}

@media (max-width: 400px) {
  .container {
    padding-left: max(28px, env(safe-area-inset-left));
    padding-right: max(28px, env(safe-area-inset-right));
  }
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  color: var(--text);
}

.brand-lockup:hover {
  color: var(--text);
}

.brand-lockup__logo {
  height: 28px;
  width: auto;
  object-fit: contain;
}

.brand-lockup__mark {
  height: 28px;
  width: auto;
  object-fit: contain;
}

.brand-lockup--sm .brand-lockup__logo {
  height: 22px;
}

.brand-lockup--sm .brand-lockup__mark {
  height: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: none;
  border-radius: var(--r-lg);
  padding: 13px 20px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, opacity 0.2s, transform 0.2s;
  white-space: nowrap;
}

.btn--dark {
  background: var(--text);
  color: #ffffff;
  opacity: 0.94;
}

.btn--dark:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.btn--light {
  background: var(--surface-3);
  color: var(--text);
}

.btn--light:hover {
  background: #e9e9e9;
  transform: translateY(-2px);
}

.btn--badge {
  background: var(--surface-3);
  color: var(--text);
  padding: 10px 18px;
  border-radius: var(--r-full);
  font-size: 13px;
  cursor: default;
}

.btn--store {
  cursor: default;
}

.btn__icon {
  flex-shrink: 0;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: var(--r-full);
  background: var(--accent-soft);
}

.pill__dot {
  width: 6px;
  height: 6px;
  border-radius: var(--r-full);
  background: var(--accent);
}

.pill__text {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  color: var(--accent-dark);
  letter-spacing: 0.2px;
}

.nav-link {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-2);
  transition: color 0.15s;
}

.nav-link:hover {
  color: var(--text);
}
