@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap");

:root {
  --bg: #071816;
  --card: #102924;
  --text: #ecfdf9;
  --muted: #8fbdb4;
  --accent: #14b8a6;
  --accent-soft: #5eead4;
  --accent2: #a4de02;
  --line: rgba(20, 184, 166, 0.22);
  --max: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(15, 118, 110, 0.25), transparent 55%),
    radial-gradient(ellipse 50% 40% at 100% 30%, rgba(164, 222, 2, 0.06), transparent 45%),
    var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--accent-soft);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

header {
  background: rgba(8, 22, 26, 0.94);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  backdrop-filter: blur(10px);
  z-index: 100;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.nav-links {
  display: flex;
  gap: 0.35rem;
  align-items: center;
  flex-wrap: wrap;
}

.lang-selector {
  position: relative;
  display: inline-block;
}

.lang-btn {
  color: var(--muted);
  padding: 0.4rem 0.7rem;
  border-radius: 8px;
  font-size: 0.93rem;
  background: transparent;
  border: 1px solid var(--line);
  cursor: pointer;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.lang-btn:hover {
  color: var(--text);
  background: rgba(20, 184, 166, 0.12);
}

.lang-arrow {
  font-size: 0.7rem;
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 0.35rem);
  right: 0;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.5rem;
  min-width: 10rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
  z-index: 200;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.25rem;
}

.lang-dropdown[hidden] {
  display: none !important;
}

.lang-dropdown a {
  padding: 0.45rem 0.55rem;
  border-radius: 6px;
  font-size: 0.88rem;
  color: var(--muted);
  text-decoration: none;
}

.lang-dropdown a:hover {
  background: rgba(20, 184, 166, 0.12);
  color: var(--text);
}

.lang-dropdown a[aria-current="page"] {
  background: rgba(164, 222, 2, 0.12);
  color: var(--accent2);
  font-weight: 600;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--text);
  text-decoration: none;
}

.logo:hover {
  text-decoration: none;
}

.logo img {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  box-shadow: 0 0 0 1px rgba(20, 184, 166, 0.35);
}

.logo span {
  color: var(--accent2);
}

.hero {
  padding: 3.5rem 0 2rem;
}

.hero-rich {
  padding: 3rem 0 2.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}

.hero .kicker {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--accent-soft);
  background: rgba(20, 184, 166, 0.12);
  border: 1px solid rgba(20, 184, 166, 0.35);
  border-radius: 999px;
  padding: 0.25rem 0.75rem;
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(1.85rem, 3.2vw, 2.75rem);
  line-height: 1.12;
  margin: 0 0 1rem;
  max-width: 720px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.hero-copy .hero-lead {
  color: var(--text);
  max-width: none;
  font-size: 1.08rem;
  margin-bottom: 0.75rem;
}

.hero-copy .hero-sub {
  color: var(--muted);
  max-width: none;
  font-size: 0.98rem;
}

.btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.btn {
  display: inline-block;
  padding: 0.7rem 1.25rem;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(16, 41, 36, 0.9);
  color: var(--text);
  font-weight: 700;
  font-size: 0.95rem;
}

.btn:hover {
  background: var(--card);
  text-decoration: none;
}

.btn.primary {
  background: linear-gradient(135deg, #0f766e, #14b8a6);
  border: 0;
  color: #fff;
}

.btn.primary:hover {
  opacity: 0.92;
}

.btn-lg {
  padding: 0.85rem 1.5rem;
  font-size: 1rem;
}

.btn-nav {
  padding: 0.5rem 0.9rem;
  font-size: 0.88rem;
}

.stats-row {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.stats-row li {
  background: rgba(20, 184, 166, 0.1);
  border: 1px solid rgba(20, 184, 166, 0.28);
  border-radius: 12px;
  padding: 0.85rem 0.65rem;
  text-align: center;
}

.stats-row strong {
  display: block;
  font-size: 1.25rem;
  color: var(--accent-soft);
  line-height: 1.2;
  font-weight: 800;
}

.stats-row span {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 0.2rem;
}

.phone-mock {
  position: relative;
  max-width: 320px;
  margin-inline: auto;
  padding: 0.65rem;
  background: linear-gradient(160deg, #163530, #071816);
  border-radius: 28px;
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.phone-mock img {
  border-radius: 20px;
  width: 100%;
  height: auto;
}

.section {
  padding: 1.5rem 0 2.5rem;
}

.section h2 {
  font-size: 1.45rem;
  margin: 0 0 0.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.section-sub {
  color: var(--muted);
  margin: 0 0 1.25rem;
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.steps li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.1rem 1.15rem;
}

.step-num {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(164, 222, 2, 0.12);
  border: 1px solid rgba(164, 222, 2, 0.35);
  color: var(--accent2);
  font-weight: 700;
}

.steps h3 {
  margin: 0 0 0.25rem;
  font-size: 1.02rem;
}

.steps p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.section-shots {
  padding-top: 2rem;
}

.shots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.shot-card {
  margin: 0;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.shot-frame {
  background: #051412;
  padding: 0.75rem 0.75rem 0;
  display: flex;
  justify-content: center;
}

.shot-frame img {
  width: auto;
  max-height: 340px;
  border-radius: 12px 12px 0 0;
}

.shot-card figcaption {
  padding: 1rem 1.1rem 1.15rem;
}

.shot-index {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent2);
  margin-bottom: 0.35rem;
}

.shot-card h3 {
  margin: 0 0 0.35rem;
  font-size: 0.98rem;
}

.shot-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.section-wear {
  padding-top: 1rem;
}

.wear-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  background: linear-gradient(145deg, rgba(16, 41, 36, 0.95), rgba(10, 31, 28, 0.98));
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.75rem;
}

.wear-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.wear-visual img {
  width: auto;
  height: auto;
  max-width: min(100%, 300px);
  max-height: none;
  object-fit: contain;
  aspect-ratio: 9 / 16;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
}

.wear-list {
  grid-template-columns: 1fr !important;
}

.feat-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.feat-list li {
  position: relative;
  padding: 0.75rem 0.75rem 0.75rem 2rem;
  background: rgba(20, 184, 166, 0.08);
  border: 1px solid rgba(20, 184, 166, 0.2);
  border-radius: 10px;
  font-size: 0.94rem;
}

.feat-list li::before {
  content: "✓";
  position: absolute;
  left: 0.75rem;
  color: var(--accent2);
  font-weight: 700;
}

.cta-banner {
  margin: 1rem 0 2rem;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.18), rgba(164, 222, 2, 0.1));
  border: 1px solid rgba(20, 184, 166, 0.35);
  padding: 2.25rem 1.5rem;
  text-align: center;
}

.cta-inner {
  max-width: 640px;
  margin-inline: auto;
}

.cta-banner h2 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
}

.cta-banner p {
  color: var(--muted);
  margin: 0 0 1.25rem;
}

.grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.card {
  background: linear-gradient(180deg, #163530, #102924);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.2rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.card h3 {
  margin: 0;
  font-size: 1.05rem;
}

.card p {
  color: var(--muted);
  margin: 0;
  font-size: 0.9rem;
  flex: 1;
}

.card-link {
  margin-top: 0.5rem;
  font-size: 0.88rem;
  font-weight: 600;
}

.lang-pick {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1rem;
}

.lang-pick a {
  font-size: 0.88rem;
  padding: 0.35rem 0.65rem;
  border-radius: 8px;
  border: 1px solid var(--line);
  color: var(--muted);
}

.lang-pick a:hover {
  color: var(--text);
  background: rgba(20, 184, 166, 0.12);
  text-decoration: none;
}

footer {
  border-top: 1px solid var(--line);
  padding: 2rem 0 2.5rem;
  color: var(--muted);
  font-size: 0.88rem;
  margin-top: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
}

.footer-col h4 {
  color: var(--text);
  margin: 0 0 0.6rem;
  font-size: 0.95rem;
}

.footer-col a {
  display: block;
  color: var(--muted);
  margin-bottom: 0.35rem;
  font-size: 0.88rem;
}

.footer-play {
  display: inline-block;
  margin-top: 0.75rem;
  padding: 0.45rem 0.85rem;
  border-radius: 8px;
  background: rgba(20, 184, 166, 0.12);
  border: 1px solid rgba(20, 184, 166, 0.3);
  color: var(--accent-soft) !important;
  font-weight: 600;
  font-size: 0.82rem !important;
}

.footer-play:hover {
  text-decoration: none;
  background: rgba(20, 184, 166, 0.2);
}

.footer-bottom {
  margin-top: 1.5rem;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}

.legal-intro h1 {
  margin: 0;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
}

.legal-body {
  max-width: 800px;
  color: var(--muted);
}

.legal-body h2 {
  color: var(--text);
  font-size: 1.05rem;
  margin-top: 1.75rem;
}

.legal-body h2:first-of-type {
  margin-top: 0.5rem;
}

.legal-body h3 {
  color: var(--text);
  font-size: 1rem;
  margin-top: 1.35rem;
}

.legal-body p {
  margin: 0 0 1rem;
}

.legal-body ul {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
}

.legal-body li {
  margin: 0.35rem 0;
}

.legal-body .meta {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}

.legal-back {
  margin-top: 2rem;
  margin-bottom: 0;
}

@media (max-width: 960px) {
  .hero-grid,
  .wear-grid {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    order: -1;
  }
  .phone-mock {
    max-width: 260px;
  }
  .shots-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .hero {
    padding-top: 2.5rem;
  }
  .shots-grid {
    grid-template-columns: 1fr;
  }
  .shot-frame img {
    max-height: 420px;
  }
}
