:root {
  --bg: #fffaf6;
  --bg-soft: #fff2ea;
  --card: rgba(255, 255, 255, 0.92);
  --text: #1f2933;
  --muted: #687385;
  --line: rgba(31, 41, 51, 0.10);
  --primary: #e86f5c;
  --primary-dark: #c94d3d;
  --accent: #5f7f95;
  --accent-soft: #eaf3f7;
  --success: #2e7d5b;
  --warning: #946200;
  --shadow: 0 18px 50px rgba(73, 45, 35, 0.12);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --max: 1120px;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(232, 111, 92, 0.16), transparent 32rem),
    radial-gradient(circle at 85% 15%, rgba(95, 127, 149, 0.16), transparent 28rem),
    linear-gradient(180deg, #fffaf6 0%, #fff7f1 42%, #ffffff 100%);
  line-height: 1.7;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(255, 250, 246, 0.82);
  border-bottom: 1px solid var(--line);
}

.nav {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.brand-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 8px 22px rgba(232, 111, 92, 0.22);
  background: linear-gradient(135deg, #ffb39f, #e86f5c);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.92rem;
  color: var(--muted);
}

.nav-links a {
  padding: 8px 10px;
  border-radius: 999px;
}

.nav-links a:hover {
  color: var(--text);
  background: rgba(232, 111, 92, 0.10);
}

main {
  max-width: var(--max);
  margin: 0 auto;
  padding: 30px 20px 64px;
}

.section {
  margin-top: 28px;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--card);
  box-shadow: var(--shadow);
}

.hero {
  min-height: 560px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(310px, 0.85fr);
  gap: 34px;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  right: -130px;
  bottom: -140px;
  width: 380px;
  height: 380px;
  border-radius: 999px;
  background: rgba(232, 111, 92, 0.12);
  z-index: 0;
}

.hero-copy,
.app-summary {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  color: var(--primary-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
  opacity: 0.55;
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(2.35rem, 6vw, 4.9rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(1.7rem, 3vw, 2.55rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}

.lead {
  max-width: 710px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(232, 111, 92, 0.24);
}

.button.secondary {
  color: var(--text);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: none;
}

.button:hover {
  transform: translateY(-1px);
}

.app-summary {
  padding: 26px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(255, 242, 234, 0.88));
  border: 1px solid rgba(232, 111, 92, 0.16);
}

.app-icon-large {
  width: 128px;
  height: 128px;
  border-radius: 32px;
  object-fit: cover;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #ffb39f, #e86f5c);
  box-shadow: 0 18px 45px rgba(232, 111, 92, 0.28);
}

.fact-list {
  display: grid;
  gap: 12px;
}

.fact-list > div,
.purchase-panel > div,
.status-pill {
  padding: 16px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--line);
}

.label {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.value {
  margin-bottom: 0;
  font-weight: 800;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 24px;
}

.section-heading p:last-child {
  color: var(--muted);
  font-size: 1.03rem;
}

.grid {
  display: grid;
  gap: 16px;
}

.grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.info-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--line);
}

.info-card p:last-child,
.info-card ul:last-child,
.info-card ol:last-child {
  margin-bottom: 0;
}

.info-card p,
.info-card li {
  color: var(--muted);
}

.info-card.highlight {
  border-color: rgba(232, 111, 92, 0.28);
  background: linear-gradient(180deg, #fff, #fff6f2);
}

.info-card.safe {
  border-color: rgba(46, 125, 91, 0.25);
  background: linear-gradient(180deg, #fff, #f2fbf6);
}

ul, ol {
  padding-left: 1.25rem;
}

li + li {
  margin-top: 7px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 22px;
  align-items: center;
}

.external-app {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 20px;
  border-radius: var(--radius-lg);
  background: var(--accent-soft);
  border: 1px solid rgba(95, 127, 149, 0.20);
}

.external-icon {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: #fff;
  background: var(--accent);
  font-size: 1.6rem;
  font-weight: 800;
}

.external-app small {
  display: block;
  color: var(--muted);
  margin-top: 3px;
}

.purchase-panel {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 20px 0 18px;
}

.code {
  display: inline-block;
  padding: 2px 7px;
  border-radius: 8px;
  background: rgba(31, 41, 51, 0.06);
  color: #2f3a45;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.92em;
}

.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.screenshot-slot {
  margin: 0;
  min-height: 420px;
  overflow: hidden;
  border-radius: 28px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 16px 38px rgba(31, 41, 51, 0.08);
}

.screenshot-slot img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  background: var(--bg-soft);
}

.screenshot-slot.is-missing::before {
  content: attr(data-placeholder);
  display: flex;
  height: 340px;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-weight: 800;
  background:
    linear-gradient(135deg, rgba(232, 111, 92, 0.12), rgba(95, 127, 149, 0.10)),
    #fff;
}

figcaption {
  padding: 14px 16px 18px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.review-list {
  display: grid;
  gap: 12px;
}

.review-list article {
  padding: 22px;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--line);
}

.review-list article p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.notice {
  padding: 20px;
  border-radius: var(--radius-lg);
  background: #fff8e8;
  border: 1px solid rgba(148, 98, 0, 0.18);
  color: #58400a;
}

.privacy-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--line);
}

.privacy-table th,
.privacy-table td {
  padding: 14px 16px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}

.privacy-table th {
  width: 32%;
  color: var(--text);
  background: rgba(31, 41, 51, 0.035);
  font-size: 0.92rem;
}

.privacy-table td {
  color: var(--muted);
}

.privacy-table tr:last-child th,
.privacy-table tr:last-child td {
  border-bottom: 0;
}

.footer {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px 42px;
  color: var(--muted);
  font-size: 0.92rem;
  text-align: center;
}

@media (max-width: 920px) {
  .hero,
  .split,
  .grid.two,
  .grid.three,
  .purchase-panel,
  .screenshot-grid {
    grid-template-columns: 1fr;
  }

  .hero { min-height: auto; }
  .screenshot-grid { max-width: 420px; }
}

@media (max-width: 680px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .section {
    padding: 26px 20px;
    border-radius: 24px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .privacy-table,
  .privacy-table tbody,
  .privacy-table tr,
  .privacy-table th,
  .privacy-table td {
    display: block;
    width: 100%;
  }

  .privacy-table th {
    border-bottom: 0;
  }
}
