:root {
  --bg: #f4ede2;
  --bg-soft: #fbf6ef;
  --ink: #191511;
  --muted: #62584d;
  --line: rgba(25, 21, 17, 0.08);
  --orange: #ff8717;
  --orange-deep: #ef6c00;
  --sand: #eadcc8;
  --card: rgba(255, 255, 255, 0.82);
  --shadow: 0 28px 70px rgba(54, 37, 13, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Noto Sans SC", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top right, rgba(255, 135, 23, 0.16), transparent 26%),
    radial-gradient(circle at left 20%, rgba(235, 220, 200, 0.55), transparent 24%),
    linear-gradient(180deg, #fcf8f2 0%, var(--bg) 48%, #efe5d5 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  width: 22rem;
  height: 22rem;
  border: 1px solid rgba(255, 135, 23, 0.18);
  border-radius: 50%;
  filter: blur(1px);
  pointer-events: none;
}

body::before {
  top: 5rem;
  right: -9rem;
}

body::after {
  bottom: 8rem;
  left: -12rem;
}

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

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

.page-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 48px;
}

.hero,
.feature-overview,
.gallery-section,
.closing-callout,
.footer {
  position: relative;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 8px 0 28px;
}

.brand,
.topbar a,
.button,
.feature-tag {
  font-family: "Manrope", sans-serif;
}

.brand {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 40px;
  align-items: center;
  padding: 34px 0 42px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--orange-deep);
  font-family: "Manrope", sans-serif;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-copy h1,
.section-heading h2,
.callout-panel h2,
.footer h2 {
  margin: 0;
  line-height: 1.08;
  font-weight: 900;
}

.hero-copy h1 {
  max-width: 10ch;
  font-size: clamp(3rem, 7vw, 5.7rem);
}

.lead {
  max-width: 39rem;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 800;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--orange) 0%, #ffb03a 100%);
  box-shadow: 0 18px 30px rgba(255, 135, 23, 0.28);
}

.button-secondary {
  border-color: rgba(25, 21, 17, 0.12);
  background: rgba(255, 255, 255, 0.6);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.hero-points li {
  padding: 10px 14px;
  border: 1px solid rgba(25, 21, 17, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.54);
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-visual {
  position: relative;
  min-height: 710px;
}

.device-card {
  overflow: hidden;
  border-radius: 36px;
  box-shadow: var(--shadow);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(252, 247, 238, 0.92));
}

.device-main {
  position: absolute;
  right: 16px;
  top: 10px;
  width: min(88%, 420px);
  padding: 12px;
  transform: rotate(4deg);
}

.device-main img {
  width: 100%;
  border-radius: 28px;
}

.floating-note {
  position: absolute;
  max-width: 230px;
  padding: 18px 20px;
  border: 1px solid rgba(25, 21, 17, 0.08);
  border-radius: 24px;
  backdrop-filter: blur(14px);
  background: rgba(255, 251, 246, 0.7);
  box-shadow: 0 18px 45px rgba(63, 46, 17, 0.08);
  animation: floatCard 7s ease-in-out infinite;
}

.floating-note span {
  display: block;
  color: var(--muted);
  font-size: 0.84rem;
  margin-bottom: 10px;
}

.floating-note strong {
  font-size: 1.05rem;
  line-height: 1.5;
}

.note-top {
  left: 0;
  top: 82px;
}

.note-bottom {
  left: 36px;
  bottom: 82px;
  animation-delay: -2.6s;
}

.story-strip {
  margin: 34px 0 22px;
  padding: 22px 28px;
  border-top: 1px solid rgba(25, 21, 17, 0.08);
  border-bottom: 1px solid rgba(25, 21, 17, 0.08);
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-heading h2,
.callout-panel h2,
.footer h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.section-heading.narrow {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.feature-overview {
  padding: 70px 0 24px;
}

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

.feature-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(170px, 240px);
  gap: 18px;
  align-items: end;
  min-height: 320px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 32px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.feature-card::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  right: -60px;
  top: -80px;
  background: rgba(255, 255, 255, 0.32);
}

.feature-card img {
  justify-self: end;
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 18px 50px rgba(24, 18, 10, 0.12);
}

.feature-copy {
  position: relative;
  z-index: 1;
}

.feature-copy h3 {
  margin: 4px 0 10px;
  font-size: 1.85rem;
  line-height: 1.15;
}

.feature-copy p:last-child {
  margin: 0;
  color: rgba(25, 21, 17, 0.72);
  line-height: 1.8;
}

.feature-tag {
  margin: 0;
  color: rgba(25, 21, 17, 0.42);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
}

.accent-orange {
  background: linear-gradient(180deg, rgba(255, 176, 58, 0.26), rgba(255, 245, 231, 0.74));
}

.accent-sand {
  background: linear-gradient(180deg, rgba(234, 220, 200, 0.74), rgba(255, 255, 255, 0.78));
}

.accent-ink {
  color: #fff;
  background: linear-gradient(145deg, #1d1914 0%, #3d2e19 100%);
}

.accent-ink .feature-tag,
.accent-ink .feature-copy p:last-child {
  color: rgba(255, 255, 255, 0.74);
}

.accent-cream {
  background: linear-gradient(180deg, rgba(255, 250, 243, 0.92), rgba(237, 227, 211, 0.82));
}

.gallery-section {
  padding: 94px 0 20px;
}

.gallery-marquee {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: center;
}

.gallery-card {
  padding: 14px;
  border-radius: 34px;
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: var(--shadow);
}

.gallery-card img {
  width: 100%;
  border-radius: 26px;
}

.gallery-card.featured {
  transform: translateY(-26px);
}

.tilt-left {
  transform: rotate(-5deg);
}

.tilt-right {
  transform: rotate(5deg);
}

.closing-callout {
  padding: 96px 0 80px;
}

.callout-panel,
.footer {
  border: 1px solid var(--line);
  border-radius: 36px;
  background: rgba(255, 251, 246, 0.66);
  box-shadow: var(--shadow);
}

.callout-panel {
  padding: clamp(28px, 5vw, 56px);
}

.callout-panel p:last-child {
  max-width: 46rem;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.9;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px;
}

.contact-panel {
  display: grid;
  gap: 12px;
  min-width: min(100%, 360px);
}

.contact-panel a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(25, 21, 17, 0.08);
  font-family: "Manrope", sans-serif;
  font-weight: 800;
}

.privacy-body {
  min-height: 100vh;
}

.privacy-shell {
  padding-bottom: 72px;
}

.policy-hero {
  position: relative;
  padding-bottom: 24px;
}

.policy-topbar {
  margin-bottom: 26px;
}

.policy-intro,
.policy-card {
  border: 1px solid var(--line);
  border-radius: 36px;
  background: rgba(255, 251, 246, 0.72);
  box-shadow: var(--shadow);
}

.policy-intro {
  padding: clamp(30px, 6vw, 64px);
}

.policy-intro h1 {
  margin: 0;
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  line-height: 1.03;
  font-weight: 900;
}

.policy-updated {
  margin: 18px 0 0;
  color: var(--orange-deep);
  font-family: "Manrope", sans-serif;
  font-size: 0.96rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.policy-lead {
  max-width: 54rem;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.95;
}

.policy-layout {
  display: grid;
  gap: 20px;
  margin-top: 28px;
}

.policy-card {
  padding: 28px;
}

.policy-card h2 {
  margin: 0 0 14px;
  font-size: clamp(1.35rem, 2.8vw, 2rem);
  line-height: 1.2;
}

.policy-card p,
.policy-list {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.9;
}

.policy-card p {
  margin: 0 0 14px;
}

.policy-card p:last-child {
  margin-bottom: 0;
}

.policy-list {
  margin: 0 0 14px;
  padding-left: 22px;
}

.policy-list li + li {
  margin-top: 8px;
}

.policy-card a {
  color: var(--orange-deep);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.policy-contact-card {
  background: linear-gradient(180deg, rgba(255, 247, 233, 0.86), rgba(255, 251, 246, 0.78));
}

.policy-contact-grid {
  display: grid;
  gap: 14px;
}

.policy-contact-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  width: fit-content;
  max-width: 100%;
  padding: 0 20px;
  border: 1px solid rgba(25, 21, 17, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  color: var(--ink) !important;
  text-decoration: none !important;
}

.policy-meta {
  margin: 0;
}

.hero-copy,
.hero-visual,
.story-strip,
.section-heading,
.feature-card,
.gallery-card,
.callout-panel,
.footer,
.policy-intro,
.policy-card {
  animation: fadeUp 820ms ease both;
}

.feature-card:nth-child(2),
.gallery-card:nth-child(2) {
  animation-delay: 120ms;
}

.feature-card:nth-child(3),
.gallery-card:nth-child(3) {
  animation-delay: 240ms;
}

.feature-card:nth-child(4) {
  animation-delay: 360ms;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

@media (max-width: 980px) {
  .hero-grid,
  .feature-grid,
  .gallery-marquee,
  .footer {
    grid-template-columns: 1fr;
  }

  .hero-grid,
  .footer {
    display: grid;
  }

  .hero-copy h1 {
    max-width: none;
  }

  .hero-visual {
    min-height: 620px;
  }

  .device-main {
    right: 50%;
    width: min(92%, 420px);
    transform: translateX(50%) rotate(3deg);
  }

  .note-top {
    left: 4%;
    top: 54px;
  }

  .note-bottom {
    left: auto;
    right: 6%;
    bottom: 34px;
  }

  .feature-card {
    grid-template-columns: 1fr;
  }

  .feature-card img {
    width: min(260px, 100%);
  }

  .gallery-card.featured,
  .tilt-left,
  .tilt-right {
    transform: none;
  }

  .policy-contact-link {
    width: 100%;
  }
}

@media (max-width: 680px) {
  .page-shell {
    width: min(100% - 20px, 100%);
  }

  .topbar {
    padding-bottom: 20px;
  }

  .nav-links {
    display: none;
  }

  .hero-grid {
    gap: 18px;
    padding-top: 18px;
  }

  .lead {
    font-size: 0.98rem;
  }

  .hero-visual {
    min-height: 540px;
  }

  .device-main {
    top: 32px;
    width: min(95%, 360px);
  }

  .floating-note {
    position: relative;
    max-width: none;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    margin-bottom: 14px;
  }

  .story-strip,
  .feature-card,
  .callout-panel,
  .footer {
    border-radius: 24px;
  }

  .story-strip {
    padding: 18px 0;
  }

  .feature-overview,
  .gallery-section,
  .closing-callout {
    padding-top: 64px;
  }

  .policy-intro,
  .policy-card {
    border-radius: 24px;
  }

  .policy-card {
    padding: 22px;
  }

  .footer {
    padding: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}