@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=DM+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap");

:root {
  --background: #fdf6f0;
  --foreground: #4a0f0f;
  --card: #fffaf6;
  --muted: #f5e7df;
  --muted-foreground: #7a5751;
  --border: #ead6cb;
  --pom-blush: #f5ddd5;
  --pom-rose: #dea295;
  --pom-coral: #d4685a;
  --pom-ruby: #b33838;
  --pom-garnet: #8d1b1b;
  --pom-deep: #4a0f0f;
  --cream-alpha: rgba(253, 246, 240, 0.86);
  --shadow: 0 24px 80px rgba(107, 35, 28, 0.14);
  --soft-shadow: 0 16px 42px rgba(107, 35, 28, 0.08);
  --font-heading: "Cormorant Garamond", serif;
  --font-body: "DM Sans", sans-serif;
}

* {
  box-sizing: border-box;
  min-width: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::selection {
  background: var(--pom-ruby);
  color: var(--background);
}

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

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  min-height: 72px;
  padding: 14px clamp(18px, 5vw, 64px);
  border-bottom: 1px solid rgba(234, 214, 203, 0.74);
  background: rgba(253, 246, 240, 0.9);
  backdrop-filter: blur(18px);
  width: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--pom-deep);
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: var(--pom-coral);
}

.nav-links {
  justify-self: center;
  display: flex;
  gap: clamp(14px, 3vw, 34px);
  color: var(--muted-foreground);
  font-size: 13px;
  font-weight: 700;
}

.nav-links a,
.nav-cta,
.button,
.feature-card,
.relationship-grid article,
.bento-card,
.pricing-card,
.comparison-card {
  transition:
    transform 180ms ease,
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

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

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--pom-coral);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.nav-cta,
.button-primary {
  background: var(--pom-ruby);
  border-color: var(--pom-ruby);
  color: var(--background);
}

.button-secondary {
  background: rgba(255, 250, 246, 0.82);
  color: var(--pom-ruby);
}

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

.feature-card:hover,
.relationship-grid article:hover,
.bento-card:hover,
.pricing-card:hover,
.comparison-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 104, 90, 0.42);
  box-shadow: var(--shadow);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: 126px clamp(20px, 6vw, 84px) 92px;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 22%, rgba(212, 104, 90, 0.16), transparent 26%),
    radial-gradient(circle at 11% 70%, rgba(222, 162, 149, 0.22), transparent 30%),
    linear-gradient(120deg, rgba(253, 246, 240, 0.96), rgba(253, 246, 240, 0.73));
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 26vh;
  background: linear-gradient(0deg, var(--background), rgba(253, 246, 240, 0));
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 4;
  max-width: 760px;
}

.pill,
.eyebrow {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--pom-coral);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.pill {
  min-height: 32px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(212, 104, 90, 0.24);
  border-radius: 999px;
  background: rgba(255, 250, 246, 0.66);
}

h1,
h2,
h3 {
  font-family: var(--font-heading);
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(58px, 8.5vw, 118px);
  line-height: 0.86;
  font-weight: 700;
  color: var(--pom-deep);
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(38px, 5.1vw, 74px);
  line-height: 0.95;
  font-weight: 700;
  color: var(--pom-deep);
}

h3 {
  margin-bottom: 8px;
  font-size: 27px;
  line-height: 1;
  font-weight: 700;
  color: var(--pom-deep);
}

.hero-copy {
  max-width: 640px;
  margin-bottom: 28px;
  color: var(--muted-foreground);
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.48;
  font-weight: 500;
}

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

.button {
  min-height: 50px;
  padding: 0 24px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(234, 214, 203, 0.9);
  border-radius: 999px;
  background: rgba(255, 250, 246, 0.72);
  color: var(--muted-foreground);
  font-size: 12px;
  font-weight: 700;
}

.hero-scene {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.hero-phone {
  position: absolute;
  width: min(31vw, 370px);
  min-width: 290px;
  border: 1px solid rgba(234, 214, 203, 0.9);
  border-radius: 34px;
  background: rgba(255, 250, 246, 0.92);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.primary-phone {
  right: clamp(24px, 7vw, 110px);
  top: 128px;
  min-height: 628px;
  padding: 24px;
  transform: rotate(3deg);
  animation: phoneFloat 7s ease-in-out infinite;
}

.secondary-phone {
  right: clamp(260px, 29vw, 500px);
  bottom: 50px;
  width: min(25vw, 306px);
  min-width: 250px;
  min-height: 386px;
  padding: 20px;
  transform: rotate(-7deg);
  animation: phoneFloatAlt 8s ease-in-out infinite;
}

.phone-top {
  display: grid;
  gap: 4px;
  margin-bottom: 18px;
}

.phone-top span {
  font-family: var(--font-heading);
  color: var(--pom-deep);
  font-size: 28px;
  font-weight: 700;
}

.phone-top small,
.moon-card small,
.quick-grid span,
.care-note-preview span,
.timeline-row span {
  color: var(--muted-foreground);
  font-size: 12px;
}

.phone-top.compact span {
  font-size: 25px;
}

.moon-card,
.care-note-preview,
.quick-grid div,
.timeline-row,
.report-chip {
  border: 1px solid rgba(234, 214, 203, 0.9);
  border-radius: 18px;
  background: var(--card);
}

.moon-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  margin-bottom: 14px;
}

.moon-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--pom-blush);
  color: var(--pom-coral);
  font-family: var(--font-heading);
  font-size: 34px;
  transform: rotate(-26deg);
}

.moon-card strong,
.timeline-row strong {
  display: block;
  color: var(--pom-deep);
  font-size: 15px;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}

.quick-grid div {
  display: grid;
  gap: 6px;
  min-height: 88px;
  padding: 14px;
}

.quick-grid b {
  color: var(--pom-ruby);
  font-size: 14px;
}

.care-note-preview {
  padding: 16px;
  background: var(--pom-blush);
}

.care-note-preview p {
  margin-bottom: 0;
  color: var(--pom-deep);
  font-family: var(--font-heading);
  font-size: 24px;
  line-height: 1.06;
}

.timeline-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px;
  margin-top: 12px;
}

.timeline-row i {
  width: 12px;
  height: 12px;
  margin-top: 3px;
  border-radius: 50%;
  background: var(--pom-coral);
}

.report-chip {
  display: inline-flex;
  margin-top: 16px;
  padding: 10px 12px;
  color: var(--pom-ruby);
  font-size: 12px;
  font-weight: 800;
}

.botanical-line {
  position: absolute;
  border: 1.5px solid rgba(212, 104, 90, 0.22);
  border-right: 0;
  border-bottom: 0;
  border-radius: 999px 0 0 0;
}

.botanical-one {
  right: 6vw;
  top: 22vh;
  width: 310px;
  height: 190px;
  transform: rotate(16deg);
}

.botanical-two {
  right: 36vw;
  bottom: 10vh;
  width: 240px;
  height: 150px;
  transform: rotate(-18deg);
}

.seed {
  position: absolute;
  width: 12px;
  height: 16px;
  border-radius: 70% 55% 70% 50%;
  background: var(--pom-coral);
  opacity: 0.28;
}

.seed-one {
  right: 45vw;
  top: 24vh;
}

.seed-two {
  right: 17vw;
  bottom: 14vh;
  background: var(--pom-ruby);
}

.seed-three {
  right: 7vw;
  top: 65vh;
  background: var(--pom-rose);
}

.section {
  padding: clamp(72px, 10vw, 130px) clamp(20px, 6vw, 84px);
}

.intro-section {
  max-width: 1040px;
}

.intro-section p:not(.eyebrow),
.section-heading p,
.band-copy p,
.reports-copy p,
.privacy-copy p,
.founder-copy p,
.final-cta p {
  max-width: 780px;
  color: var(--muted-foreground);
  font-size: 18px;
  line-height: 1.65;
}

.section-heading {
  display: grid;
  gap: 4px;
  margin-bottom: 34px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

.section-heading.narrow {
  max-width: 860px;
}

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

.feature-card,
.relationship-grid article {
  min-height: 260px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--card);
  box-shadow: var(--soft-shadow);
}

.feature-card p,
.relationship-grid p,
.journal-list div,
.privacy-grid div,
.bento-card p,
.pricing-card p,
.comparison-card p {
  color: var(--muted-foreground);
  font-size: 15px;
  line-height: 1.55;
}

.bento-section {
  background:
    linear-gradient(180deg, rgba(255, 250, 246, 0), rgba(245, 221, 213, 0.42)),
    var(--background);
}

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

.bento-card {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--card);
  box-shadow: var(--soft-shadow);
}

.bento-large {
  grid-column: span 2;
  grid-row: span 2;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(170px, 0.72fr);
  gap: 20px;
  align-items: center;
}

.bento-large img {
  width: min(100%, 240px);
  justify-self: center;
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.bento-tall {
  grid-row: span 2;
}

.bento-number {
  display: block;
  margin-bottom: 24px;
  color: var(--pom-coral);
  font-family: var(--font-heading);
  font-size: 80px;
  line-height: 0.8;
  font-weight: 700;
}

.message-stack.compact p {
  font-size: 14px;
}

.feature-icon {
  position: relative;
  width: 48px;
  height: 48px;
  margin-bottom: 28px;
  border-radius: 18px;
  background: var(--pom-blush);
}

.droplet-icon::before {
  content: "";
  position: absolute;
  inset: 11px 15px 9px;
  border-radius: 55% 55% 65% 65%;
  background: var(--pom-coral);
  transform: rotate(45deg);
}

.heart-icon::before,
.heart-icon::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 24px;
  border-radius: 15px 15px 0 0;
  background: var(--pom-ruby);
  left: 16px;
  top: 13px;
  transform: rotate(-45deg);
  transform-origin: 0 100%;
}

.heart-icon::after {
  left: 10px;
  transform: rotate(45deg);
  transform-origin: 100% 100%;
}

.moon-shape::before {
  content: "";
  position: absolute;
  inset: 11px;
  border-radius: 50%;
  background: var(--pom-coral);
}

.moon-shape::after {
  content: "";
  position: absolute;
  inset: 9px 16px 9px 8px;
  border-radius: 50%;
  background: var(--pom-blush);
}

.journal-icon::before,
.report-icon::before,
.leaf-icon::before {
  content: "";
  position: absolute;
  inset: 11px 13px;
  border: 2px solid var(--pom-ruby);
  border-radius: 5px;
}

.report-icon::after {
  content: "";
  position: absolute;
  left: 17px;
  right: 17px;
  bottom: 14px;
  height: 14px;
  border-left: 4px solid var(--pom-coral);
  border-right: 4px solid var(--pom-rose);
}

.leaf-icon::before {
  inset: 12px;
  border: 0;
  border-radius: 80% 20% 80% 20%;
  background: var(--pom-coral);
  transform: rotate(-18deg);
}

.soft-band {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(320px, 0.86fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: start;
  background: var(--pom-blush);
  border-block: 1px solid rgba(222, 162, 149, 0.48);
}

.journal-list {
  display: grid;
  gap: 10px;
}

.journal-list div {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 66px;
  padding: 14px 16px;
  border: 1px solid rgba(212, 104, 90, 0.22);
  border-radius: 18px;
  background: rgba(255, 250, 246, 0.72);
  color: var(--pom-deep);
  font-weight: 600;
}

.journal-list span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--pom-coral);
  color: var(--background);
  font-size: 12px;
  font-weight: 800;
}

.care-circle-section {
  display: grid;
  gap: 28px;
}

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

.relationship-grid article {
  min-height: 190px;
}

.relationship-grid span {
  display: block;
  margin-bottom: 36px;
  color: var(--pom-ruby);
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 700;
}

.telegram-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 1fr);
  gap: 24px;
  align-items: start;
  padding: clamp(22px, 4vw, 40px);
  border: 1px solid var(--border);
  border-radius: 26px;
  background: var(--card);
  box-shadow: var(--soft-shadow);
}

.telegram-panel > div > p:not(.eyebrow) {
  max-width: 560px;
  color: var(--muted-foreground);
  font-size: 16px;
  line-height: 1.62;
}

.message-stack {
  display: grid;
  gap: 10px;
}

.message-stack p {
  width: fit-content;
  max-width: 100%;
  margin: 0;
  padding: 13px 15px;
  border-radius: 18px 18px 18px 5px;
  background: var(--pom-blush);
  color: var(--pom-deep);
  font-size: 15px;
  line-height: 1.35;
}

.message-stack p:nth-child(2) {
  justify-self: end;
  border-radius: 18px 18px 5px 18px;
  background: var(--pom-coral);
  color: var(--background);
}

.care-note-stack {
  display: grid;
  gap: 12px;
}

.care-note-stack article {
  padding: 16px;
  border: 1px solid rgba(234, 214, 203, 0.92);
  border-radius: 18px;
  background: rgba(245, 221, 213, 0.72);
  box-shadow: 0 12px 28px rgba(107, 35, 28, 0.06);
}

.care-note-stack article:nth-child(2) {
  background: var(--card);
}

.care-note-stack span {
  display: block;
  margin-bottom: 8px;
  color: var(--pom-ruby);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.care-note-stack p {
  margin: 0;
  color: var(--pom-deep);
  font-size: 15px;
  line-height: 1.52;
}

.reports-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: center;
}

.reports-preview {
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 26px;
  background: var(--card);
  box-shadow: var(--shadow);
}

.bar-chart {
  display: flex;
  align-items: end;
  gap: 12px;
  height: 210px;
  padding: 18px;
  border-radius: 20px;
  background: var(--pom-blush);
}

.bar-chart span {
  flex: 1;
  min-height: 18px;
  border-radius: 999px 999px 4px 4px;
  background: linear-gradient(180deg, var(--pom-coral), var(--pom-ruby));
}

.report-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 10px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 16px;
  color: var(--muted-foreground);
  font-size: 14px;
}

.report-row b {
  color: var(--pom-ruby);
}

.privacy-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(330px, 1fr);
  gap: clamp(28px, 6vw, 78px);
  background: var(--pom-deep);
  color: var(--background);
}

.privacy-section h2,
.privacy-section .eyebrow {
  color: var(--background);
}

.privacy-copy p {
  color: rgba(253, 246, 240, 0.78);
}

.privacy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.privacy-grid div {
  display: flex;
  align-items: end;
  min-height: 154px;
  padding: 18px;
  border: 1px solid rgba(253, 246, 240, 0.16);
  border-radius: 18px;
  background: rgba(253, 246, 240, 0.08);
  color: rgba(253, 246, 240, 0.88);
}

.pricing-section {
  background:
    linear-gradient(180deg, rgba(255, 250, 246, 0), rgba(245, 221, 213, 0.36)),
    var(--background);
}

.pricing-heading {
  margin-bottom: 42px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  max-width: 1080px;
}

.pricing-card {
  position: relative;
  min-height: 470px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--border);
  border-radius: 26px;
  background: var(--card);
  box-shadow: var(--soft-shadow);
}

.pricing-card.featured {
  background:
    linear-gradient(150deg, rgba(255, 250, 246, 0.52), rgba(245, 221, 213, 0.82)),
    var(--pom-blush);
  border-color: rgba(212, 104, 90, 0.48);
  box-shadow: var(--shadow);
}

.pricing-card h3 {
  margin: 10px 0 14px;
  font-size: clamp(44px, 5vw, 68px);
}

.pricing-card h3 span {
  color: var(--muted-foreground);
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 600;
}

.pricing-card .button {
  margin-top: auto;
}

.pricing-note {
  margin-top: -2px;
  color: var(--pom-ruby) !important;
  font-weight: 800;
}

.pricing-list {
  display: grid;
  gap: 10px;
  margin: 20px 0 26px;
  padding: 0;
  list-style: none;
}

.pricing-list li {
  position: relative;
  padding-left: 24px;
  color: var(--muted-foreground);
  font-size: 15px;
  line-height: 1.48;
}

.pricing-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--pom-coral);
  box-shadow: 0 0 0 5px rgba(212, 104, 90, 0.12);
}

.pricing-footnote {
  max-width: 780px;
  margin: 22px 0 0;
  color: var(--muted-foreground);
  font-size: 14px;
  line-height: 1.6;
  font-weight: 600;
}

.save-pill {
  position: absolute;
  right: 22px;
  top: 22px;
  padding: 8px 11px;
  border-radius: 999px;
  background: var(--pom-ruby);
  color: var(--background);
  font-size: 12px;
  font-weight: 800;
}

.comparison-section {
  background: var(--pom-blush);
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.comparison-card {
  display: grid;
  align-content: space-between;
  min-height: 210px;
  padding: 20px;
  border: 1px solid rgba(212, 104, 90, 0.22);
  border-radius: 22px;
  background: rgba(255, 250, 246, 0.76);
}

.comparison-card span {
  color: var(--pom-ruby);
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}

.comparison-card p {
  margin-bottom: 0;
}

.founder-section {
  display: grid;
  grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: center;
}

.founder-portrait {
  position: relative;
  width: min(100%, 360px);
  aspect-ratio: 4 / 5;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: var(--pom-blush);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.founder-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 28%;
}

.founder-copy blockquote {
  max-width: 760px;
  margin: 24px 0;
  padding-left: 18px;
  border-left: 3px solid var(--pom-coral);
  color: var(--pom-ruby);
  font-family: var(--font-heading);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.05;
}

.linkedin-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  margin-top: 8px;
  padding: 0 18px;
  border: 1px solid rgba(212, 104, 90, 0.42);
  border-radius: 999px;
  background: var(--card);
  color: var(--pom-ruby);
  font-size: 14px;
  font-weight: 800;
  box-shadow: var(--soft-shadow);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.linkedin-button:hover {
  transform: translateY(-2px);
  border-color: var(--pom-coral);
  box-shadow: var(--shadow);
}

.linkedin-button svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.final-cta {
  min-height: 560px;
  display: grid;
  place-content: center;
  text-align: center;
  background:
    radial-gradient(circle at 50% 22%, rgba(212, 104, 90, 0.16), transparent 28%),
    var(--background);
}

.final-cta h2,
.final-cta p {
  margin-inline: auto;
}

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

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 6vw, 84px);
  border-top: 1px solid var(--border);
  background: var(--card);
}

.site-footer p {
  margin: 0;
  color: var(--muted-foreground);
  font-size: 14px;
}

.compare-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 82% 12%, rgba(212, 104, 90, 0.16), transparent 24%),
    var(--background);
}

.comparison-detail {
  max-width: 1100px;
  min-height: 100vh;
  display: grid;
  align-content: center;
  gap: 18px;
}

.comparison-detail h1 {
  max-width: 920px;
  margin-bottom: 8px;
  font-size: clamp(58px, 8vw, 104px);
}

.comparison-detail > p:not(.eyebrow) {
  max-width: 820px;
  color: var(--muted-foreground);
  font-size: 20px;
  line-height: 1.6;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 20px 0 10px;
}

.detail-grid article {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--card);
  box-shadow: var(--soft-shadow);
}

.detail-grid p {
  color: var(--muted-foreground);
  line-height: 1.55;
}

@keyframes phoneFloat {
  0%,
  100% {
    transform: translateY(0) rotate(3deg);
  }
  50% {
    transform: translateY(-18px) rotate(2deg);
  }
}

@keyframes phoneFloatAlt {
  0%,
  100% {
    transform: translateY(0) rotate(-7deg);
  }
  50% {
    transform: translateY(14px) rotate(-6deg);
  }
}

@media (max-width: 1120px) {
  .hero {
    min-height: 920px;
    align-items: start;
  }

  .hero-content {
    max-width: 640px;
  }

  .primary-phone {
    right: 30px;
    top: 380px;
    opacity: 0.84;
  }

  .secondary-phone {
    right: auto;
    left: 28px;
    bottom: 42px;
    opacity: 0.72;
  }

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

  .bento-grid,
  .comparison-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bento-large,
  .bento-tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  .bento-large {
    grid-template-columns: 1fr;
  }

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

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

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 900px;
    padding-top: 104px;
  }

  .hero-copy {
    max-width: 540px;
  }

  .hero-phone {
    min-width: 245px;
  }

  .primary-phone {
    right: -26px;
    top: 440px;
    width: 310px;
    min-height: 540px;
    padding: 18px;
  }

  .secondary-phone {
    left: -44px;
    bottom: 54px;
    width: 260px;
    min-height: 330px;
  }

  .phone-top span {
    font-size: 22px;
  }

  .quick-grid div {
    min-height: 72px;
    padding: 11px;
  }

  .care-note-preview p {
    font-size: 20px;
  }

  .soft-band,
  .telegram-panel,
  .reports-section,
  .privacy-section,
  .founder-section,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .founder-portrait {
    width: min(100%, 240px);
  }
}

@media (max-width: 620px) {
  .site-header {
    display: flex;
    justify-content: space-between;
    min-height: 64px;
    padding: 12px 16px;
    gap: 10px;
  }

  .brand {
    font-size: 24px;
  }

  .brand-mark {
    width: 32px;
    height: 32px;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    min-height: 860px;
    padding: 94px 18px 60px;
  }

  .hero-content,
  .hero-copy {
    width: 100%;
    max-width: 354px;
  }

  h1 {
    max-width: 354px;
    font-size: clamp(48px, 13.8vw, 54px);
    line-height: 0.9;
  }

  h2 {
    font-size: clamp(38px, 12vw, 56px);
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 310px;
  }

  .trust-row {
    max-width: 340px;
  }

  .primary-phone {
    right: -112px;
    top: 570px;
    width: 292px;
    min-width: 292px;
    min-height: 482px;
    border-radius: 28px;
  }

  .secondary-phone {
    left: -76px;
    bottom: 10px;
    width: 232px;
    min-width: 232px;
    min-height: 296px;
    border-radius: 28px;
  }

  .moon-card,
  .care-note-preview,
  .quick-grid div,
  .timeline-row,
  .report-chip {
    border-radius: 15px;
  }

  .moon-icon {
    width: 40px;
    height: 40px;
    font-size: 28px;
  }

  .section {
    padding: 70px 18px;
  }

  .feature-grid,
  .relationship-grid,
  .privacy-grid,
  .bento-grid,
  .comparison-grid {
    grid-template-columns: 1fr;
  }

  .bento-card,
  .pricing-card,
  .comparison-card {
    min-height: auto;
  }

  .bento-large img {
    max-height: 420px;
    object-fit: cover;
    object-position: top;
  }

  .feature-card,
  .relationship-grid article {
    min-height: auto;
  }

  .journal-list div {
    align-items: flex-start;
  }

  .bar-chart {
    height: 170px;
  }

  .site-footer {
    display: grid;
  }

  .detail-grid {
    grid-template-columns: 1fr;
  }

  .comparison-detail h1 {
    font-size: clamp(48px, 14vw, 64px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}
