:root {
  --primary: #FF8A3D;
  --primary-dark: #E56F20;
  --primary-soft: #FFE1C8;
  --bg: #FFF8EE;
  --card-bg: #FFFFFF;
  --text: #2F2A24;
  --muted: #7A6D60;
  --border-radius-lg: 24px;
  --border-radius-md: 18px;
  --content-width: 1080px;
  --shadow-soft: 0 16px 40px rgba(0,0,0,0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--primary-dark);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* HEADER / NAV */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(22px);
  background: rgba(255,255,255,0.88);
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding: 10px 0;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-logo {
    width: 32px;
    height: 32px;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

    .brand-logo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-text-title {
  font-weight: 700;
  font-size: 18px;
}

.brand-text-sub {
  font-size: 11px;
  color: #7A6D60;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
  align-items: center;
}

.nav-links a {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.04);
  color: var(--text);
  text-decoration: none;
  background: rgba(255,255,255,0.8);
  transition: background 0.15s ease, transform 0.08s ease;
}

.nav-links a:hover {
  background: rgba(0,0,0,0.04);
  transform: translateY(-1px);
}

.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.06);
  background: #fff;
  font-size: 12px;
}

.lang-switcher select {
  border: none;
  background: transparent;
  font-size: 12px;
  outline: none;
}

/* HERO */
.hero-wrap {
  background: linear-gradient(180deg, #FF9960 0%, #FFB77F 45%, #FFE6CD 80%, #FFF8EE 100%);
  padding: 24px 0 56px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
}

.hero-pre {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.25);
  font-size: 11px;
  color: #fff;
  margin-bottom: 12px;
}

.hero-title {
  font-size: 34px;
  line-height: 1.2;
  font-weight: 800;
  margin: 0 0 8px;
  color: #fff;
}

.hero-subtitle {
  font-size: 15px;
  color: rgba(255,255,255,0.95);
  margin-bottom: 18px;
}

.hero-bullets {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 22px;
  font-size: 12px;
}

.hero-badge {
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.22);
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 10px;
}

.btn {
  border-radius: 999px;
  padding: 10px 18px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: transform 0.08s ease, box-shadow 0.12s ease, background 0.12s ease;
}

.btn-primary {
  background: #fff;
  color: var(--primary-dark);
  box-shadow: 0 10px 26px rgba(0,0,0,0.18);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.2);
}

.btn-ghost {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.8);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.2);
}

.hero-note {
  font-size: 12px;
  color: rgba(255,255,255,0.9);
}

/* Phone mockup */
.hero-mock {
  display: flex;
  justify-content: center;
}

.phone-shell {
  width: 260px;
  max-width: 90%;
  border-radius: 36px;
  padding: 10px;
  background: radial-gradient(circle at 10% 0%, #FFFFFF 0%, #F2E0D1 40%, #FCD0B1 100%);
  box-shadow: var(--shadow-soft);
  position: relative;
}

.phone-shell::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 5px;
  border-radius: 999px;
  background: rgba(0,0,0,0.08);
}

.phone-inner {
  border-radius: 28px;
  overflow: hidden;
  background: #000;
}

.phone-inner img {
  display: block;
  width: 100%;
  height: auto;
}

.phone-floating {
  position: absolute;
  bottom: -26px;
  right: -28px;
  width: 170px;
  border-radius: 22px;
  padding: 8px 10px;
  background: rgba(255,255,255,0.96);
  box-shadow: 0 12px 32px rgba(0,0,0,0.18);
  font-size: 11px;
}

.phone-floating-title {
  font-weight: 600;
  margin-bottom: 4px;
  display:flex;
  align-items:center;
  gap:6px;
  font-size:12px;
}

.pill-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(255,138,61,0.08);
  color: var(--primary-dark);
  font-size: 10px;
  margin-right: 4px;
}

/* Sections */
main {
  flex: 1;
}

section {
  padding: 48px 0 8px;
}

.section-head {
  margin-bottom: 16px;
}

.section-kicker {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary-dark);
  font-weight: 600;
  margin-bottom: 4px;
}

.section-title {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 4px;
}

.section-desc {
  font-size: 13px;
  color: var(--muted);
  max-width: 620px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.card {
  background: var(--card-bg);
  border-radius: var(--border-radius-md);
  padding: 16px 16px 14px;
  box-shadow: 0 10px 26px rgba(0,0,0,0.04);
}

.card-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--primary-dark);
  margin-bottom: 4px;
}

.card-title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}

.card-body {
  font-size: 13px;
  color: var(--muted);
}

.card-badges {
  display:flex;
  flex-wrap:wrap;
  gap:6px;
  margin-top:8px;
}

.badge-soft {
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 999px;
  background: #FFF1E1;
  color: var(--primary-dark);
}

/* Screenshots gallery */
.gallery {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.shot {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(0,0,0,0.10);
  background: #000;
}

.shot img {
  display: block;
  width: 100%;
  height: auto;
}

.shot-caption {
  padding: 8px 10px 9px;
  font-size: 12px;
  background: #fff7f1;
  color: var(--muted);
}

/* Steps / Guide */
.steps-wrap {
  display:grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0,1fr);
  gap: 22px;
  margin-top: 18px;
}

.steps-list {
  background:#FFF1E4;
  border-radius: var(--border-radius-md);
  padding: 16px 18px;
  box-shadow: 0 10px 26px rgba(0,0,0,0.04);
  font-size: 13px;
}

.steps-list ol {
  margin:0;
  padding-left:18px;
}

.steps-list li + li {
  margin-top:6px;
}

.steps-hint {
  margin-top:10px;
  font-size:11px;
  color:var(--muted);
}

.steps-extra {
  display:flex;
  flex-direction:column;
  gap:12px;
}

.mini-card {
  background: #fff;
  border-radius: 16px;
  padding: 12px 14px;
  font-size: 13px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.04);
}

.mini-title {
  font-weight:600;
  margin-bottom:4px;
}

.mini-note {
  font-size:12px;
  color:var(--muted);
}

/* Footer */
footer {
  padding: 20px 0 26px;
  border-top: 1px solid rgba(0,0,0,0.06);
  font-size: 12px;
  color: var(--muted);
  background:#fff;
  margin-top: 40px;
}

.footer-inner {
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  align-items:center;
  justify-content:space-between;
}

.footer-links {
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

.footer-links a {
  color: var(--primary-dark);
  text-decoration:none;
}

.footer-links a:hover {
  text-decoration:underline;
}

/* Responsive */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: minmax(0,1fr);
  }
  .hero-wrap {
    padding-bottom: 40px;
  }
  .phone-shell {
    margin-top: 10px;
  }
  .phone-floating {
    position: static;
    margin-top: 10px;
    width: 100%;
  }
  header {
    position: sticky;
  }
}

@media (max-width: 768px) {
  .nav {
    align-items:flex-start;
    flex-direction:column;
  }
  .card-grid {
    grid-template-columns: minmax(0,1fr);
  }
  .gallery {
    grid-template-columns: minmax(0,1fr);
  }
  .steps-wrap {
    grid-template-columns:minmax(0,1fr);
  }
}


.ecosystem {
    background: #fff5eb;
    border-top: 1px solid rgba(0,0,0,0.03);
    border-bottom: 1px solid rgba(0,0,0,0.03);
    padding: 18px 0;
    margin-bottom: 10px;
    font-size: 12px;
}

.eco-inner {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    color: var(--muted);
}

.eco-brand {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    color: var(--primary-dark);
}

    .eco-brand img {
        width: 18px;
        height: 18px;
        border-radius: 4px;
        object-fit: contain;
    }