:root {
  --green: #187b43;
  --green-deep: #175a38;
  --green-bright: #16aa52;
  --green-soft: #eaf4e8;
  --green-pale: #f2f7ef;
  --cream: #faf7f1;
  --surface: #fffdf8;
  --butter: #ffba63;
  --butter-soft: #fff0d6;
  --coral: #ff7a59;
  --coral-soft: #f9ddd6;
  --ink: #1f2933;
  --muted: #667085;
  --border: #dde3da;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(36, 95, 66, 0.12);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family:
    -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Pretendard",
    "Noto Sans KR", "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::selection {
  color: var(--white);
  background: var(--green);
}

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

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

button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  min-height: 76px;
  padding: 10px clamp(24px, 5vw, 82px);
  border-bottom: 1px solid rgba(221, 227, 218, 0.78);
  background: rgba(250, 247, 241, 0.9);
  backdrop-filter: blur(18px);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 10px;
}

.brand>img:first-child {
  border-radius: 13px;
  box-shadow: 0 6px 16px rgba(36, 95, 66, 0.12);
}

.brand-wordmark {
  width: 92px;
  height: auto;
  object-fit: contain;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.site-header nav a {
  font-size: 15px;
  font-weight: 600;
  color: #4a5568;
  transition: color 0.2s ease;
}

.site-header nav a:hover {
  color: var(--green);
}

.header-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  padding: 11px 19px;
  border-radius: 999px;
  background: var(--green);
  color: var(--white);
  font-size: 13px;
  font-weight: 750;
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.header-cta:hover {
  background: #136938;
  color: var(--white);
  transform: translateY(-1px);
}

/* HERO SECTION */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(480px, 1.06fr);
  gap: clamp(40px, 5vw, 90px);
  align-items: center;
  min-height: 800px;
  max-width: 1320px;
  margin: 0 auto;
  padding: 82px clamp(28px, 7vw, 120px) 92px;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  z-index: 0;
  top: -220px;
  right: -200px;
  width: 760px;
  height: 760px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 45% 45%, rgba(203, 227, 203, 0.74), rgba(234, 244, 232, 0.24) 65%, transparent 68%);
  content: "";
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 13px;
  border: 1px solid #d6e5d5;
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.8);
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-bright);
  box-shadow: 0 0 0 4px rgba(22, 170, 82, 0.13);
}

.hero-copy h1 {
  max-width: 690px;
  margin: 24px 0 22px;
  font-size: clamp(38px, 4.2vw, 62px);
  line-height: 1.13;
  letter-spacing: -0.055em;
  font-weight: 800;
  color: var(--ink);
}

.hero-copy h1 span {
  position: relative;
  color: var(--green);
  display: inline-block;
}

.hero-copy h1 span::after {
  position: absolute;
  z-index: -1;
  right: -6px;
  bottom: 2px;
  left: -4px;
  height: 17px;
  border-radius: 20px;
  background: rgba(255, 186, 99, 0.4);
  content: "";
  transform: rotate(-1deg);
}

.hero-description {
  max-width: 610px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.8;
  word-break: keep-all;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 750;
  transition: transform 180ms ease, box-shadow 180ms ease;
  cursor: pointer;
}

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

.button-primary {
  gap: 12px;
  background: var(--green);
  box-shadow: 0 12px 24px rgba(24, 123, 67, 0.2);
  color: var(--white);
}

.button-secondary {
  border: 1px solid #cfdacf;
  background: rgba(255, 253, 248, 0.86);
  color: var(--green-deep);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 25px 0 0;
  padding: 0;
  color: #57635a;
  font-size: 13px;
  list-style: none;
}

.hero-points li {
  position: relative;
}

.hero-points li::before {
  margin-right: 7px;
  color: var(--green-bright);
  content: "✓";
  font-weight: 900;
}

/* HERO VISUAL MOCKUP */
.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 630px;
}

.phone-shadow {
  position: absolute;
  bottom: 31px;
  width: 370px;
  height: 70px;
  border-radius: 50%;
  background: rgba(31, 41, 51, 0.13);
  filter: blur(28px);
}

.phone {
  position: relative;
  z-index: 2;
  width: 336px;
  height: 650px;
  padding: 9px;
  border: 2px solid #1f2b23;
  border-radius: 48px;
  background: #27352c;
  box-shadow: 0 35px 80px rgba(37, 73, 51, 0.25);
  transform: rotate(2deg);
}

.phone-island {
  position: absolute;
  z-index: 4;
  top: 18px;
  left: 50%;
  width: 94px;
  height: 24px;
  border-radius: 99px;
  background: #18221c;
  transform: translateX(-50%);
}

.phone-screen {
  position: relative;
  height: 100%;
  padding: 18px 17px 0;
  border-radius: 39px;
  background: #faf7f1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.app-topline {
  display: flex;
  justify-content: space-between;
  padding: 0 6px;
  color: #24342a;
  font-size: 9px;
  font-weight: 800;
  margin-bottom: 12px;
}

.app-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 104px;
  margin-top: 14px;
  margin-bottom: 16px;
}

.app-heading>div {
  display: grid;
  gap: 6px;
}

.app-kicker {
  color: #657167;
  font-size: 9px;
  font-weight: 700;
}

.app-heading strong {
  max-width: 154px;
  font-size: 18px;
  line-height: 1.25;
  letter-spacing: -0.04em;
  color: var(--ink);
}

.app-heading img {
  width: 104px;
  height: auto;
  margin-right: -12px;
}

.mini-record {
  padding: 13px;
  border: 1px solid #d8e2d6;
  border-radius: 17px;
  background: #fffdf8;
  margin-bottom: 16px;
}

.mini-record-title {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 12px;
}

.mini-record-title>div {
  display: grid;
  gap: 2px;
}

.mini-record-title strong {
  font-size: 11px;
  color: var(--ink);
}

.mini-record-title small {
  color: #879087;
  font-size: 7px;
}

.heart-tile {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background: var(--green-soft);
  color: var(--green);
  font-size: 12px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-top: 11px;
}

.stats>div {
  display: grid;
  gap: 3px;
  padding: 8px 5px;
  border-radius: 10px;
  background: #f5f7f2;
  text-align: center;
}

.stats small {
  color: #7c867e;
  font-size: 6px;
}

.stats strong {
  color: var(--green-deep);
  font-size: 11px;
}

.phone-section-title {
  display: flex;
  justify-content: space-between;
  margin: 17px 2px 9px;
  font-size: 10px;
}

.phone-section-title strong {
  color: var(--ink);
}

.phone-section-title span {
  color: var(--green);
  font-size: 7px;
}

.recipe-preview {
  display: grid;
  grid-template-columns: 94px 1fr;
  min-height: 106px;
  border: 1px solid #dce4da;
  border-radius: 16px;
  background: var(--surface);
  overflow: hidden;
}

.recipe-art {
  display: grid;
  place-items: center;
  background: #edf5e9;
  overflow: hidden;
}

.recipe-art img {
  width: 112px;
  max-width: none;
  height: auto;
}

.recipe-preview-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 11px;
}

.recipe-preview-copy span {
  color: var(--green);
  font-size: 7px;
  font-weight: 750;
}

.recipe-preview-copy strong {
  font-size: 12px;
  line-height: 1.35;
  color: var(--ink);
}

.recipe-preview-copy small {
  color: #889087;
  font-size: 7px;
}

.phone-nav {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  padding: 10px 9px 12px;
  border-top: 1px solid #e8ebe5;
  background: rgba(255, 253, 248, 0.98);
}

.phone-nav span {
  display: grid;
  place-items: center;
  gap: 2px;
  color: #98a198;
  font-size: 14px;
}

.phone-nav span.active {
  color: var(--green);
}

.phone-nav small {
  font-size: 6px;
}

/* FLOATING CARDS */
.floating-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 232px;
  padding: 12px 14px;
  border: 1px solid rgba(214, 228, 211, 0.86);
  border-radius: 16px;
  background: rgba(255, 253, 248, 0.94);
  box-shadow: 0 18px 40px rgba(37, 73, 51, 0.14);
  backdrop-filter: blur(10px);
  animation: float 4s ease-in-out infinite;
}

.floating-card>div {
  display: grid;
  gap: 3px;
}

.floating-card small {
  color: var(--muted);
  font-size: 9px;
}

.floating-card strong {
  font-size: 11px;
  color: var(--ink);
}

.float-icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: var(--green-soft);
  color: var(--green);
  font-size: 17px;
  font-weight: 900;
}

.float-icon.sparkle {
  background: var(--butter-soft);
  color: #b66a19;
}

.floating-share {
  top: 168px;
  left: -8px;
}

.floating-ai {
  right: -12px;
  bottom: 117px;
  animation-delay: -2s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* SOURCE STRIP */
.source-strip {
  text-align: center;
  padding: 40px 24px;
  background: rgba(255, 255, 255, 0.6);
  border-y: 1px solid var(--border);
}

.source-strip p {
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
  margin: 0 0 16px;
}

.source-strip div {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
}

.source-strip .divider {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--muted);
}

.naver-blog {
  background: #03cf5d;
  color: #fff;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 900;
}

/* SECTION HEADINGS */
.section-heading {
  margin-bottom: 48px;
}

.section-heading.centered {
  text-align: center;
}

.section-heading.narrow {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.section-kicker {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--green);
  margin-bottom: 12px;
}

.section-kicker.light {
  color: var(--butter);
}

.section-heading h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  line-height: 1.3;
  margin: 0 0 16px;
  color: var(--ink);
}

.section-heading p {
  font-size: 17px;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}

/* SCREENSHOTS GALLERY */
.screenshots-section {
  padding: 132px clamp(28px, 6vw, 104px) 144px;
  background:
    radial-gradient(circle at 8% 10%, rgba(255, 223, 166, 0.32), transparent 23%),
    linear-gradient(180deg, #fffdf8 0%, #f4f7f0 100%);
  overflow: hidden;
}

.screenshots-heading {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 60px;
  align-items: end;
  max-width: 1320px;
  margin: 0 auto 48px;
}

.screenshots-heading h2 {
  margin: 15px 0 0;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.18;
  letter-spacing: -0.045em;
}

.screenshots-heading>p {
  max-width: 590px;
  margin: 0 0 6px auto;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
  word-break: keep-all;
}

.screenshot-gallery {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(13px, 1.5vw, 22px);
  max-width: 1440px;
  margin: 0 auto;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  cursor: grab;
  -webkit-user-select: none;
  user-select: none;
}

.screenshot-gallery::-webkit-scrollbar {
  display: none;
}

.screenshot-gallery.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.screenshot-card {
  min-width: 0;
  margin: 0;
}

.screenshot-card>a {
  position: relative;
  display: block;
  border: 1px solid rgba(195, 210, 194, 0.95);
  border-radius: 27px;
  background: #eaf4e8;
  box-shadow: 0 18px 46px rgba(39, 79, 52, 0.11);
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease;
  -webkit-user-drag: none;
  user-drag: none;
}

.screenshot-card>a:hover,
.screenshot-card>a:focus-visible {
  box-shadow: 0 24px 60px rgba(39, 79, 52, 0.17);
  outline: none;
  transform: translateY(-7px);
}

.screenshot-card img {
  display: block;
  width: 100%;
  aspect-ratio: 660 / 1434;
  object-fit: cover;
  -webkit-user-drag: none;
  user-drag: none;
}

.screenshot-card figcaption {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 11px;
  align-items: start;
  padding: 18px 4px 0;
}

.screenshot-card figcaption>span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 9px;
  background: var(--green-soft);
  color: var(--green);
  font-size: 9px;
  font-weight: 850;
}

.screenshot-card figcaption>div {
  min-width: 0;
}

.screenshot-card figcaption strong {
  display: block;
  font-size: 14px;
  line-height: 1.42;
  letter-spacing: -0.02em;
  word-break: keep-all;
}

.screenshot-card figcaption p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
  word-break: keep-all;
}

.screenshot-note {
  max-width: 1440px;
  margin: 34px auto 0;
  color: #7c867e;
  font-size: 11px;
  text-align: right;
}

/* STORY SECTION */
.story-section,
.how-section,
.privacy-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(60px, 8vw, 130px);
  align-items: center;
  padding: 138px clamp(28px, 7vw, 120px);
}

.story-cards {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: center;
}

.story-card {
  position: relative;
  min-height: 370px;
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: var(--surface);
  overflow: hidden;
}

.story-card > span {
  color: var(--green);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.story-before span {
  background: #fee2e2;
  color: #dc2626;
  padding: 3px 10px;
  border-radius: 99px;
}

.story-after span {
  background: var(--green-soft);
  color: var(--green-deep);
  padding: 3px 10px;
  border-radius: 99px;
}

.saved-stack {
  position: relative;
  width: 150px;
  height: 150px;
  margin: 48px auto 5px;
}

.saved-stack i {
  position: absolute;
  inset: 18px;
  display: block;
  border: 1px solid #d6ddd4;
  border-radius: 23px;
  background: #f6f3ed;
}

.saved-stack i:nth-child(1) {
  transform: rotate(-12deg) translate(-8px, 2px);
}

.saved-stack i:nth-child(2) {
  background: #ecece7;
  transform: rotate(9deg) translate(7px, -2px);
}

.saved-stack i:nth-child(3) {
  display: grid;
  background: linear-gradient(135deg, #c5cbc5 0 45%, #f1eee7 45%);
  transform: rotate(-1deg);
}

.saved-stack i:nth-child(3)::after {
  display: grid;
  place-items: center;
  color: #8d968e;
  content: "?";
  font-size: 42px;
  font-style: normal;
  font-weight: 800;
}

.story-after {
  border-color: #bdd8bd;
  background: linear-gradient(155deg, #f9fcf6, #eaf4e8);
}

.story-after img {
  display: block;
  width: 174px;
  margin: 38px auto -4px;
}

.story-card h3 {
  margin: 20px 0 9px;
  font-size: 22px;
  letter-spacing: -0.035em;
  color: var(--ink);
}

.story-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.story-arrow {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green);
  color: white;
  font-size: 20px;
}

/* FEATURES GRID */
.features-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 100px clamp(24px, 5vw, 82px);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.feature-card {
  position: relative;
  background: #fff;
  border-radius: 24px;
  padding: 32px;
  border: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.02);
  transition: transform 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 20px;
}

.feature-icon.green {
  background: var(--green-soft);
  color: var(--green);
}

.feature-icon.butter {
  background: var(--butter-soft);
  color: #d97706;
}

.feature-icon.coral {
  background: var(--coral-soft);
  color: var(--coral);
}

.feature-number {
  position: absolute;
  top: 28px;
  right: 28px;
  font-size: 14px;
  font-weight: 800;
  color: #cbd5e1;
}

.feature-card h3 {
  font-size: 20px;
  margin: 0 0 12px;
  color: var(--ink);
}

.feature-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* HOW IT WORKS SECTION */
.how-section {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  min-height: 760px;
}

.how-art {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 540px;
}

.how-art>img {
  position: relative;
  z-index: 2;
  width: min(430px, 80%);
  height: auto;
}

.how-orbit {
  position: absolute;
  width: 470px;
  height: 470px;
  border: 1px dashed #bbd3ba;
  border-radius: 50%;
}

.how-orbit::before,
.how-orbit::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.how-orbit::before {
  top: 55px;
  right: 22px;
  width: 16px;
  height: 16px;
  background: var(--butter);
}

.how-orbit::after {
  bottom: 72px;
  left: 20px;
  width: 11px;
  height: 11px;
  background: var(--green-bright);
}

.ingredient-chip {
  position: absolute;
  z-index: 3;
  padding: 11px 15px;
  border: 1px solid #dbe5d9;
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.96);
  box-shadow: 0 12px 30px rgba(39, 79, 52, 0.1);
  color: #39463d;
  font-size: 12px;
  font-weight: 720;
}

.chip-one {
  top: 45px;
  left: 10%;
}

.chip-two {
  right: 3%;
  bottom: 96px;
}

.chip-three {
  top: 34%;
  right: -4%;
}

.how-copy h2 {
  font-size: 38px;
  font-weight: 800;
  margin: 0 0 32px;
  line-height: 1.3;
}

.how-copy ol {
  display: grid;
  gap: 24px;
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
}

.how-copy li {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 16px;
  align-items: start;
}

.how-copy li>span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid #c8d9c6;
  border-radius: 15px;
  background: var(--green-soft);
  color: var(--green);
  font-size: 13px;
  font-weight: 850;
}

.how-copy li h3 {
  font-size: 18px;
  margin: 2px 0 6px;
  color: var(--ink);
}

.how-copy li p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* PRIVACY LOCAL FIRST */
.privacy-section {
  position: relative;
  grid-template-columns: 1.05fr 0.95fr;
  background: var(--green-deep);
  color: #fff;
  min-height: 600px;
  overflow: hidden;
}

.privacy-section::before {
  position: absolute;
  right: -120px;
  bottom: -240px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.privacy-copy,
.privacy-visual {
  position: relative;
  z-index: 1;
}

.privacy-copy h2 {
  font-size: 38px;
  font-weight: 800;
  margin: 0 0 20px;
  line-height: 1.3;
}

.privacy-copy p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
  margin: 0 0 36px;
  max-width: 610px;
}

.privacy-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 40px;
}

.privacy-points>div {
  display: grid;
  gap: 14px;
  min-height: 116px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
}

.privacy-points strong {
  color: #9ee2ae;
  font-size: 11px;
  font-weight: 800;
}

.privacy-points span {
  font-size: 13px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.9);
}

.privacy-visual {
  display: grid;
  place-items: center;
  min-height: 420px;
}

.privacy-visual img {
  position: relative;
  z-index: 2;
  width: 250px;
  height: 250px;
  border: 8px solid rgba(255, 255, 255, 0.1);
  border-radius: 64px;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.24);
  object-fit: cover;
}

.privacy-halo {
  position: absolute;
  width: 410px;
  height: 410px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(166, 225, 180, 0.22), transparent 68%);
}

.lock-badge {
  position: absolute;
  z-index: 3;
  right: 18%;
  bottom: 18%;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 5px solid var(--green-deep);
  border-radius: 50%;
  background: var(--butter);
  color: white;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.lock-badge::before {
  position: absolute;
  top: 12px;
  width: 17px;
  height: 14px;
  border: 3px solid white;
  border-bottom: 0;
  border-radius: 12px 12px 0 0;
  content: "";
}

.lock-badge::after {
  position: absolute;
  bottom: 12px;
  width: 22px;
  height: 19px;
  border-radius: 5px;
  background: white;
  content: "";
}

/* SHOWCASE GRID */
.detail-showcase {
  max-width: 1440px;
  margin: 0 auto;
  padding: 138px clamp(28px, 7vw, 120px) 100px;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.showcase-card {
  background: #fff;
  border-radius: 28px;
  padding: 32px;
  border: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.02);
}

.showcase-card img {
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
}

.showcase-card span {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 6px;
}

.showcase-card h3 {
  font-size: 20px;
  margin: 0 0 10px;
  color: var(--ink);
}

.showcase-card p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

/* FAQ SECTION */
.faq-heading {
  position: sticky;
  top: 120px;
  align-self: start;
}

.faq-heading h2 {
  margin: 12px 0 0;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.faq-section {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(60px, 9vw, 150px);
  padding: 138px clamp(28px, 7vw, 120px);
  max-width: 1440px;
  margin: 0 auto;
  background: #f2f5ef;
}

.faq-list {
  border-top: 1px solid #cfd8cd;
}

.faq-list details {
  border-bottom: 1px solid #cfd8cd;
}

.faq-list summary {
  position: relative;
  padding: 25px 48px 25px 0;
  cursor: pointer;
  font-size: 17px;
  font-weight: 720;
  list-style: none;
  color: var(--ink);
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 5px;
  color: var(--green);
  content: "+";
  font-size: 24px;
  font-weight: 400;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 760px;
  margin: -4px 0 24px;
  padding-right: 30px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

/* FINAL CTA */
.final-cta {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  align-items: center;
  min-height: 600px;
  padding: 80px clamp(28px, 9vw, 150px);
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 223, 166, 0.6), transparent 32%),
    linear-gradient(135deg, #e9f3e5, #f9f5e9);
  overflow: hidden;
}

.cta-copy {
  position: relative;
  z-index: 2;
}

.cta-copy>img {
  width: 172px;
}

.cta-copy h2 {
  margin-top: 18px;
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.cta-copy p {
  color: var(--muted);
  font-size: 18px;
  margin: 12px 0 0;
}

.coming-soon {
  display: inline-flex;
  margin-top: 18px;
  padding: 12px 17px;
  border: 1px solid #bfd4bc;
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.75);
  color: var(--green);
  font-size: 13px;
  font-weight: 780;
}

.cta-pot {
  position: absolute;
  right: 6%;
  bottom: 35px;
  width: min(440px, 41vw);
  height: auto;
}

/* FOOTER */
footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px 40px;
  align-items: center;
  padding: 42px clamp(28px, 7vw, 120px);
  background: #18271e;
  color: white;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 800;
  color: white;
}

.footer-brand img {
  border-radius: 11px;
  width: 38px;
  height: 38px;
}

footer p {
  grid-column: 1;
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
}

footer>div {
  display: flex;
  grid-column: 2;
  grid-row: 1 / span 2;
  gap: 22px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  flex-direction: column;
  align-items: flex-end;
}

footer>div a:hover {
  color: rgba(255, 255, 255, 1);
}

footer small {
  grid-column: 1 / -1;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.36);
  font-size: 10px;
}

/* RESPONSIVE MEDIA QUERIES */
@media (max-width: 1080px) {
  .story-section {
    grid-template-columns: 1fr;
  }

  .story-section .section-heading {
    max-width: 720px;
  }
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: auto 1fr;
  }

  .site-header nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 40px;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-points {
    justify-content: center;
  }

  .story-section,
  .how-section,
  .privacy-section,
  .detail-showcase,
  .faq-section {
    padding: 92px 22px;
  }

  .how-section {
    grid-template-columns: 1fr;
  }

  .privacy-section {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .privacy-copy p {
    margin-left: auto;
    margin-right: auto;
  }

  .privacy-points {
    grid-template-columns: repeat(3, 1fr);
    justify-content: center;
  }

  @media (max-width: 768px) {
    .privacy-points {
      grid-template-columns: 1fr;
      max-width: 440px;
      margin-left: auto;
      margin-right: auto;
    }
  }

  .story-cards {
    grid-template-columns: 1fr;
  }

  .story-arrow {
    margin: -2px auto;
    transform: rotate(90deg);
  }

  .story-card {
    min-height: 340px;
  }

  .final-cta {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 70px 24px 220px;
    text-align: center;
  }

  .cta-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .cta-copy > img {
    margin: 0 auto;
  }

  .cta-pot {
    right: 50%;
    bottom: -60px;
    width: min(360px, 80vw);
    transform: translateX(50%);
  }

  .screenshots-section {
    padding-right: 0;
    padding-left: 0;
  }

  .screenshots-heading {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 22px;
  }

  .screenshots-heading>p {
    margin-left: 0;
  }

  .screenshot-gallery {
    display: flex;
    gap: 15px;
    padding: 4px 22px 22px;
    overflow-x: auto;
    scroll-padding-left: 22px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .screenshot-gallery::-webkit-scrollbar {
    display: none;
  }

  .screenshot-card {
    flex: 0 0 min(78vw, 310px);
    scroll-snap-align: start;
  }

  .screenshot-card>a {
    border-radius: 24px;
  }

  .screenshot-note {
    margin: 12px 22px 0;
    text-align: left;
  }

  .faq-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .faq-heading {
    position: static;
  }

  .faq-list summary {
    font-size: 15px;
  }
}

@media (max-width: 560px) {
  .final-cta {
    padding: 60px 20px 180px;
  }

  .cta-pot {
    width: min(280px, 82vw);
    bottom: -40px;
  }

  footer {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 38px 22px;
  }

  footer > div {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 12px;
  }
}