:root {
  --bg: #f7f8fc;
  --surface: #ffffff;
  --surface-2: #f0f2f9;
  --border: #e2e5ef;
  --text: #0d0f14;
  --text-2: #525a6b;
  --muted: #8b94a8;
  --shadow: 0 10px 30px rgba(16,24,60,0.09);
  --plano: #93B4F0;
  --plano-ink: #2C4F9A;
  --plano-soft: #EEF3FD;
  --plano-border: #B8CAEE;
  --mint: #7bbfa4;
  --sky: #8db6d9;
  --rose: #d88a8a;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

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

.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247,248,252,0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 32px;
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo-img { width: 26px; height: 26px; border-radius: 8px; object-fit: contain; }
.nav-logo-name { font-size: 17px; font-weight: 700; letter-spacing: 0; }
.nav-links { display: flex; align-items: center; gap: 24px; }

.nav-links a {
  font-size: 14px;
  color: var(--text-2);
  transition: color 0.18s;
}

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

.nav-cta {
  padding: 8px 18px;
  border-radius: 8px;
  border: 1px solid var(--plano-border);
  background: var(--plano-soft);
  color: var(--plano-ink) !important;
  font-weight: 600;
  font-size: 13px;
}

.hero {
  min-height: calc(100vh - 60px);
  max-width: 1100px;
  margin: 0 auto;
  padding: 88px 32px 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-mark {
  position: absolute;
  width: min(520px, 82vw);
  height: min(520px, 82vw);
  object-fit: contain;
  opacity: 0.1;
  transform: translateY(-18px);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-logo {
  width: 106px;
  height: 106px;
  object-fit: contain;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.6s 0.06s ease forwards;
}

.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--plano-ink);
  font-weight: 700;
  margin-bottom: 18px;
  opacity: 0;
  animation: fadeUp 0.6s 0.12s ease forwards;
}

.hero-title {
  font-size: 76px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0;
  max-width: 760px;
  opacity: 0;
  animation: fadeUp 0.7s 0.2s ease forwards;
}

.hero-title em {
  font-style: italic;
  font-weight: 800;
  color: var(--plano-ink);
}

.hero-sub {
  margin-top: 24px;
  font-size: 17px;
  color: var(--text-2);
  max-width: 520px;
  line-height: 1.65;
  opacity: 0;
  animation: fadeUp 0.7s 0.32s ease forwards;
}

.hero-badges {
  display: flex;
  gap: 10px;
  margin-top: 38px;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  animation: fadeUp 0.7s 0.46s ease forwards;
  scroll-margin-top: 80px;
}

.badge-apple {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border-radius: 12px;
  background: #000;
  text-decoration: none;
  border: 1px solid #000;
  transition: opacity 0.18s;
}

.badge-apple:hover { opacity: 0.82; }

.badge-apple-icon { width: 22px; height: 22px; flex-shrink: 0; }

.badge-apple-text { text-align: left; }

.badge-apple-label {
  display: block;
  font-size: 10px;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.04em;
  line-height: 1;
}

.badge-apple-name {
  display: block;
  font-size: 17px;
  color: #fff;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.4;
}

.features,
.pages-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 32px;
}

.section-eyebrow {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--plano-ink);
  font-weight: 700;
  margin-bottom: 14px;
  text-align: center;
}

.section-title {
  font-size: 44px;
  font-weight: 800;
  text-align: center;
  line-height: 1.1;
  letter-spacing: 0;
  margin-bottom: 52px;
}

.section-title em { font-style: italic; color: var(--plano-ink); font-weight: 800; }

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

.feature-card,
.page-link-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: box-shadow 0.22s, border-color 0.22s, transform 0.22s;
}

.feature-card {
  padding: 28px 24px;
}

.feature-card:hover,
.page-link-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--plano-border);
  transform: translateY(-2px);
}

.feature-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border: 1px solid var(--border);
  color: var(--text);
  font-weight: 800;
  font-size: 14px;
}

.feature-icon--blue  { background: var(--plano-soft); border-color: var(--plano-border); color: var(--plano-ink); }
.feature-icon--mint  { background: #eef8f3; border-color: #c7e4d7; color: #2f755b; }
.feature-icon--sky   { background: #eef5fb; border-color: #c7ddeb; color: #356f9b; }
.feature-icon--rose  { background: #fff0f0; border-color: #efcaca; color: #9a4444; }

.feature-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: 0;
}

.feature-desc {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.65;
}

.moments {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 72px 32px;
  background: var(--surface-2);
}

.moments-inner { max-width: 1100px; margin: 0 auto; }

.moment-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 40px;
}

.moment-pill {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px 20px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--surface);
  font-size: 14px;
  color: var(--text-2);
}

.moment-pill .dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.dot--blue { background: var(--plano); }
.dot--mint { background: var(--mint); }
.dot--sky  { background: var(--sky); }
.dot--rose { background: var(--rose); }
.dot--ink  { background: var(--text); }

.page-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 44px;
}

.page-link-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px 22px;
}

.page-link-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  border: 1px solid var(--plano-border);
  background: var(--plano-soft);
  color: var(--plano-ink);
}

.page-link-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: 0;
}

.page-link-desc {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.55;
}

.page-link-arrow { font-size: 14px; color: var(--muted); margin-top: auto; }
.page-link-card:hover .page-link-arrow { color: var(--plano-ink); }

.site-footer {
  border-top: 1px solid var(--border);
  padding: 32px;
  background: var(--surface);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-logo { display: flex; align-items: center; gap: 9px; }
.footer-logo img { width: 22px; height: 22px; border-radius: 7px; object-fit: contain; }
.footer-logo-name { font-size: 15px; font-weight: 700; color: var(--text-2); }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a { font-size: 13px; color: var(--muted); transition: color 0.18s; }
.footer-links a:hover { color: var(--text); }
.footer-copy { font-size: 12px; color: var(--muted); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 860px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 700px) { .page-links { grid-template-columns: 1fr; } }
@media (max-width: 860px) {
  .hero-title { font-size: 56px; }
  .section-title { font-size: 36px; }
}
@media (max-width: 560px) {
  .site-nav { padding: 0 20px; }
  .nav-links { gap: 14px; }
  .nav-links a:not(.nav-cta) { display: none; }
  .hero { min-height: calc(100vh - 60px); padding: 64px 20px 70px; }
  .hero-logo { width: 88px; height: 88px; }
  .hero-title { font-size: 40px; }
  .section-title { font-size: 30px; }
  .feature-grid { grid-template-columns: 1fr; }
  .features, .pages-section { padding: 64px 20px; }
  .moments { padding: 64px 20px; }
}
