:root {
  --bg: #ffffff;
  --bg-1: #f7f7f6;
  --bg-2: #ffffff;
  --bg-3: #f0f0ee;
  --line: rgba(0,0,0,0.08);
  --line-2: rgba(0,0,0,0.14);
  --fg-12: #0d0d0d;
  --fg-11: rgba(0,0,0,0.78);
  --fg-10: rgba(0,0,0,0.55);
  --green: hsl(130, 55%, 55%);
  --green-2: hsl(130, 55%, 45%);
  --head: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Segoe UI', system-ui, Roboto, 'Helvetica Neue', Arial, sans-serif;
  --sans: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'SF Pro Display', 'Segoe UI', system-ui, Roboto, 'Helvetica Neue', Arial, sans-serif;
  --mono: ui-monospace, 'SF Mono', SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

.phone-stage,
.phone-card,
.loyalty-card,
.mini-card,
.push-card,
.notif {
  --bg: #000;
  --bg-1: #0a0a0a;
  --bg-2: #111;
  --bg-3: #1a1a1a;
  --line: rgba(255,255,255,0.08);
  --line-2: rgba(255,255,255,0.14);
  --fg-12: #f5f5f5;
  --fg-11: rgba(255,255,255,0.82);
  --fg-10: rgba(255,255,255,0.55);
}

.final-cta {
  --fg-12: #ffffff;
}

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

html {
  scroll-behavior: smooth;
  background: var(--green);
}

body {
  background: var(--bg);
  color: var(--fg-12);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  background-image:
    radial-gradient(1100px 600px at 85% -10%, rgba(40,150,70,0.10), transparent 60%),
    radial-gradient(900px 500px at -10% 40%, rgba(40,150,70,0.06), transparent 60%);
  background-attachment: fixed;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 200;
  opacity: 0.035;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.55 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

a {
  color: inherit;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
footer.site-footer {
  background: var(--bg-1);
  border-top: 1px solid var(--line);
  color: var(--fg-12);
  padding: 56px 0 28px;
}

.site-footer .foot-top { display: flex; justify-content: space-between; gap: 48px; flex-wrap: wrap; }
.site-footer .foot-brand { max-width: 340px; display: flex; flex-direction: column; gap: 14px; }
.site-footer .foot-logo { display: flex; align-items: center; gap: 12px; }
.site-footer .foot-logo img { width: 40px; height: 40px; display: block; border-radius: 11px; object-fit: cover; }
.site-footer .foot-brand .name { font-family: var(--head); font-size: 26px; font-weight: 700; letter-spacing: -1px; }
.site-footer .foot-brand .sub { font-size: 14px; line-height: 22px; color: var(--fg-11); }
.site-footer .foot-brand .access { display: flex; align-items: center; gap: 10px; margin-top: 4px; }
.site-footer .foot-brand .access .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); }
.site-footer .foot-brand .access .text { font-family: var(--mono); font-size: 10px; letter-spacing: 2px; color: var(--fg-11); text-transform: uppercase; }
.site-footer .foot-cols { display: flex; gap: 48px; flex-wrap: wrap; }
.site-footer .foot-col { display: flex; flex-direction: column; gap: 10px; }
.site-footer .foot-col .h { font-family: var(--mono); font-size: 10px; letter-spacing: 2px; color: var(--green); margin-bottom: 2px; text-transform: uppercase; }
.site-footer .foot-col a { font-size: 14px; color: var(--fg-11); text-decoration: none; transition: color .2s; }
.site-footer .foot-col a:hover { color: var(--fg-12); }
.site-footer .foot-rule { height: 1px; background: var(--line); margin: 40px 0 0; }
.site-footer .foot-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; padding-top: 20px; font-family: var(--mono); font-size: 10px; letter-spacing: 2px; color: var(--fg-10); text-transform: uppercase; }
.site-footer .foot-lang { min-width: 220px; }
.site-footer .foot-lang .lang-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px 14px; }
.site-footer .foot-lang .lang-grid a { font-size: 13px; line-height: 1.2; white-space: nowrap; }
nav.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.site-header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 16px;
}

.site-header .brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--fg-12);
  text-decoration: none;
}

.site-header .brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  display: block;
  object-fit: cover;
}

.site-header .brand-word {
  font-family: var(--head);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -1px;
  white-space: nowrap;
}

.site-header .brand .accent {
  color: var(--green-2);
}

.site-header .links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-header .links a {
  color: var(--fg-11);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: color .2s;
}

.site-header .links a:hover {
  color: var(--fg-12);
}

.site-header .header-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.site-header .cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--green);
  border-radius: 999px;
  color: #000;
  font-size: 13px;
  font-weight: 700;
  min-height: 40px;
  padding: 0 20px;
  text-decoration: none;
}

.site-header .cta:hover {
  background: var(--green-2);
}

.site-header .cta.secondary {
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  color: var(--fg-12);
}

.site-header .cta.secondary:hover {
  background: var(--bg-1);
  border-color: rgba(0,0,0,0.22);
}

@media (max-width: 860px) {
  .site-header .links { display: none; }
}

@media (max-width: 620px) {
  .site-header .header-actions { display: none; }
}