@font-face {
  font-family: "Clash Display";
  src: url("assets/fonts/ClashDisplay-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Clash Display";
  src: url("assets/fonts/ClashDisplay-Semibold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("assets/fonts/Montserrat-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("assets/fonts/Montserrat-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("assets/fonts/Montserrat-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #0c0b0a;
  --ink: #f4efe6;
  --muted: rgba(244, 239, 230, 0.72);
  --amber: #d4a15c;
  --amber-soft: rgba(212, 161, 92, 0.18);
  --line: rgba(244, 239, 230, 0.14);
  --pad: clamp(1.25rem, 4vw, 3rem);
  --max: 38rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--ink);
  font-family: "Montserrat", "Segoe UI", sans-serif;
  font-weight: 400;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

/* —— Hero —— */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% 40%;
  transform: scale(1.04);
  animation: hero-drift 18s ease-in-out infinite alternate;
}

.hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(12, 11, 10, 0.35) 0%,
      rgba(12, 11, 10, 0.55) 42%,
      rgba(12, 11, 10, 0.92) 78%,
      #0c0b0a 100%
    ),
    radial-gradient(
      80% 55% at 70% 20%,
      rgba(212, 161, 92, 0.16),
      transparent 60%
    );
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(100%, 63rem);
  padding: var(--pad);
  padding-bottom: clamp(2.5rem, 8vh, 4.5rem);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0 0 1.35rem;
}

.brand__mark {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.55rem;
}

.brand__name {
  font-family: "Clash Display", Georgia, serif;
  font-weight: 600;
  font-size: clamp(1.85rem, 5vw, 2.45rem);
  letter-spacing: -0.02em;
  line-height: 1;
}

.headline {
  margin: 0 0 1rem;
  font-family: "Clash Display", Georgia, serif;
  font-weight: 600;
  font-size: clamp(2.35rem, 8vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.lede {
  margin: 0 0 1.75rem;
  max-width: var(--max);
  color: var(--muted);
  font-size: clamp(1rem, 2.4vw, 1.125rem);
}

.downloads {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 13.5rem;
  padding: 0.85rem 1.15rem;
  border: 1px solid var(--line);
  border-radius: 0.65rem;
  background: rgba(12, 11, 10, 0.45);
  backdrop-filter: blur(8px);
  text-decoration: none;
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease,
    transform 0.2s ease;
}

.store-btn:hover,
.store-btn:focus-visible {
  border-color: rgba(212, 161, 92, 0.65);
  background: var(--amber-soft);
  outline: none;
  transform: translateY(-2px);
}

.store-btn__icon {
  flex-shrink: 0;
  width: 1.7rem;
  height: 1.7rem;
  color: var(--ink);
}

.store-btn__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.store-btn__platform {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--amber);
}

.store-btn__label {
  margin-top: 0.15rem;
  font-size: 0.95rem;
  font-weight: 600;
}

/* —— About —— */

.about {
  padding: clamp(3rem, 10vh, 5.5rem) var(--pad);
  border-top: 1px solid var(--line);
  background:
    linear-gradient(180deg, #12100e 0%, var(--bg) 100%);
}

.about__inner {
  width: min(100%, 42rem);
  margin: 0 auto;
}

.about__title {
  margin: 0 0 0.75rem;
  font-family: "Clash Display", Georgia, serif;
  font-weight: 600;
  font-size: clamp(1.65rem, 4vw, 2.15rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.about__intro {
  margin: 0 0 2rem;
  color: var(--muted);
  max-width: 34rem;
}

.points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.35rem;
}

.points li {
  display: grid;
  gap: 0.35rem;
  padding-top: 1.15rem;
  border-top: 1px solid var(--line);
}

.points strong {
  font-family: "Clash Display", Georgia, serif;
  font-weight: 500;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
}

.points span {
  color: var(--muted);
  font-size: 0.98rem;
}

/* —— Legal / account deletion —— */

.legal {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 3.5rem) var(--pad) 3rem;
}

.legal__header {
  margin-bottom: 2.25rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--line);
}

.legal__header .brand {
  margin: 0 0 1.25rem;
}

.legal__header .brand__name {
  text-decoration: none;
  color: inherit;
}

.legal__eyebrow {
  margin: 0 0 0.5rem;
  color: var(--muted);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.legal__title {
  margin: 0 0 0.85rem;
  font-family: "Clash Display", Georgia, serif;
  font-weight: 600;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.legal__lede {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.legal__lede strong {
  color: var(--ink);
  font-weight: 600;
}

.legal__section {
  margin-bottom: 2rem;
}

.legal__section h2 {
  margin: 0 0 0.75rem;
  font-family: "Clash Display", Georgia, serif;
  font-weight: 500;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
}

.legal__section h3 {
  margin: 1.35rem 0 0.5rem;
  font-family: "Clash Display", Georgia, serif;
  font-weight: 500;
  font-size: 1.05rem;
}

.legal__section p,
.legal__section li {
  color: var(--muted);
  font-size: 0.98rem;
}

.legal__section p {
  margin: 0 0 0.85rem;
}

.legal__section ul,
.legal__steps {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
  display: grid;
  gap: 0.45rem;
}

.legal__section a {
  color: var(--amber);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.legal__section a:hover,
.legal__section a:focus-visible {
  border-bottom-color: var(--amber);
  outline: none;
}

.legal__back {
  font-weight: 500;
}

/* —— Footer —— */

.site-footer {
  padding: 1.5rem var(--pad) 2.25rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  justify-content: space-between;
  align-items: baseline;
}

.site-footer__brand {
  margin: 0;
  font-family: "Clash Display", Georgia, serif;
  font-weight: 500;
  font-size: 1rem;
}

.site-footer__note {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer__note a {
  color: var(--amber);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.site-footer__note a:hover,
.site-footer__note a:focus-visible {
  border-bottom-color: var(--amber);
  outline: none;
}

/* —— Motion —— */

.reveal {
  opacity: 0;
  transform: translateY(1.1rem);
  animation: rise 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.reveal--1 {
  animation-delay: 0.12s;
}

.reveal--2 {
  animation-delay: 0.28s;
}

.reveal--3 {
  animation-delay: 0.44s;
}

.reveal--4 {
  animation-delay: 0.6s;
}

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

@keyframes hero-drift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.08) translate3d(-1.2%, -0.8%, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .hero__photo {
    animation: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero__photo {
    transform: none;
  }

  .store-btn {
    transition: none;
  }

  html {
    scroll-behavior: auto;
  }
}

@media (min-width: 900px) {
  .hero__photo {
    object-position: 60% 35%;
  }

  .hero__content {
    padding-left: clamp(3rem, 8vw, 6rem);
  }
}
