:root {
  --red: #e11d26;
  --red-deep: #9f1218;
  --red-ink: #6e0c11;
  --ink: #161012;
  --muted: #6b5a5c;
  --paper: #fffafa;
  --white: #ffffff;
  --line: rgba(225, 29, 38, 0.18);
  --display: "Syne", "Arial Black", sans-serif;
  --body: "Outfit", "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  overflow-x: hidden;
}

a {
  color: var(--red-deep);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--red);
}

/* Atmosphere */
.atmosphere {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0.55;
  animation: drift 14s ease-in-out infinite alternate;
}

.orb-a {
  width: 42vw;
  height: 42vw;
  min-width: 280px;
  min-height: 280px;
  top: -12%;
  right: -8%;
  background: radial-gradient(circle at 30% 30%, #ff6b72 0%, #e11d26 45%, transparent 70%);
}

.orb-b {
  width: 36vw;
  height: 36vw;
  min-width: 240px;
  min-height: 240px;
  bottom: 8%;
  left: -10%;
  background: radial-gradient(circle at 60% 40%, #ffb3b7 0%, #f03a42 50%, transparent 72%);
  animation-delay: -4s;
  opacity: 0.35;
}

.grid-fade {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(225, 29, 38, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(225, 29, 38, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, black 20%, transparent 75%);
}

.ring {
  position: absolute;
  left: 50%;
  top: 18%;
  border: 1px solid rgba(225, 29, 38, 0.14);
  border-radius: 50%;
  transform: translate(-50%, -20%);
  animation: spin 40s linear infinite;
}

.ring-1 {
  width: min(620px, 88vw);
  height: min(620px, 88vw);
}

.ring-2 {
  width: min(420px, 62vw);
  height: min(420px, 62vw);
  animation-direction: reverse;
  animation-duration: 28s;
  border-color: rgba(225, 29, 38, 0.1);
}

@keyframes drift {
  from {
    transform: translate(0, 0) scale(1);
  }
  to {
    transform: translate(-3%, 4%) scale(1.06);
  }
}

@keyframes spin {
  to {
    transform: translate(-50%, -20%) rotate(360deg);
  }
}

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

/* Layout */
.page {
  position: relative;
  z-index: 1;
  width: min(880px, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 0 0 3.5rem;
}

.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 0 3rem;
}

.logo {
  width: min(240px, 58vw);
  height: auto;
  display: block;
  mix-blend-mode: multiply;
  animation: rise 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.tagline {
  margin: 1.35rem 0 0;
  max-width: 22ch;
  font-family: var(--display);
  font-size: clamp(1.55rem, 4.2vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--ink);
  animation: rise 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.12s both;
}

.cta-row {
  margin-top: 1.75rem;
  animation: rise 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.22s both;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-width: 200px;
  padding: 1rem 2.1rem;
  border-radius: 4px;
  background: var(--red);
  color: var(--white) !important;
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(225, 29, 38, 0.28);
  transition: background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.cta::after {
  content: "→";
  font-weight: 800;
  transition: transform 0.18s ease;
}

.cta:hover {
  background: var(--red-deep);
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(225, 29, 38, 0.34);
}

.cta:hover::after {
  transform: translateX(3px);
}

.handle {
  margin: 0.9rem 0 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.04em;
  animation: rise 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
}

/* Offer */
.offer {
  margin-top: 0.5rem;
  padding: 2.75rem 0 2rem;
  border-top: 1px solid var(--line);
  animation: rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
}

.offer h2,
.trust h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.6rem, 3.5vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--red);
}

.offer-lead {
  margin: 0.55rem 0 0;
  max-width: 36ch;
  color: var(--muted);
  font-size: 1.05rem;
}

.offer-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem 2rem;
  margin-top: 1.75rem;
}

.offer-item {
  padding-top: 1rem;
  border-top: 2px solid var(--red);
}

.offer-num {
  display: block;
  font-family: var(--display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--red);
  margin-bottom: 0.45rem;
}

.offer-item strong {
  display: block;
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.offer-item p {
  margin: 0.4rem 0 0;
  color: var(--muted);
  font-size: 0.98rem;
  max-width: 28ch;
}

/* Trust */
.trust {
  margin-top: 1.25rem;
  padding: 2.25rem 0 0.5rem;
  border-top: 1px solid var(--line);
}

.trust ul {
  margin: 1.1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.trust li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--ink);
  font-size: 1.02rem;
}

.trust li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.55rem;
  height: 0.55rem;
  background: var(--red);
  border-radius: 1px;
  transform: rotate(45deg);
}

/* Footer */
footer {
  margin-top: 3rem;
  padding-top: 1.35rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  font-size: 0.9rem;
  color: var(--muted);
}

footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.35rem;
}

footer a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
}

footer a:hover {
  color: var(--red);
}

footer p {
  margin: 0;
}

/* Legal pages */
.shell {
  position: relative;
  z-index: 1;
  width: min(720px, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 2.5rem 0 3.5rem;
}

.legal-page .brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  margin-bottom: 1.75rem;
}

.legal-page .brand img {
  width: 96px;
  height: auto;
  margin-bottom: 0.5rem;
  mix-blend-mode: multiply;
}

.legal-page h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.8rem, 4vw, 2.3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--red);
}

.legal-page .updated {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.legal-page .card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.5rem 1.6rem;
  backdrop-filter: blur(8px);
}

.legal-page section + section {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.legal-page h2 {
  margin: 0 0 0.5rem;
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--red-ink);
}

.legal-page p,
.legal-page li {
  margin: 0 0 0.75rem;
  color: var(--ink);
}

.legal-page ul {
  margin: 0.35rem 0 0;
  padding-left: 1.2rem;
}

.legal-page li + li {
  margin-top: 0.35rem;
}

.back-link {
  display: inline-block;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
}

.legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  margin-top: 2rem;
  font-size: 0.95rem;
}

@media (max-width: 560px) {
  .offer-row {
    grid-template-columns: 1fr;
  }

  footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .ring {
    top: 12%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .orb,
  .ring,
  .logo,
  .tagline,
  .cta-row,
  .handle,
  .offer {
    animation: none !important;
  }
}

/* Clean landing page */
.site-header,
.site-footer,
main {
  position: relative;
  z-index: 2;
}

.container {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  height: 76px;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid #ece8e8;
}

.nav {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #151313;
  text-decoration: none;
  font: 700 1rem/1 "Inter", sans-serif;
  letter-spacing: -0.02em;
}

.brand-lockup img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 8px;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 17px;
  color: #fff;
  background: #dc2029;
  border-radius: 8px;
  text-decoration: none;
  font: 600 0.88rem/1 "Inter", sans-serif;
  transition: background 160ms ease, transform 160ms ease;
}

.nav-cta:hover {
  color: #fff;
  background: #ba171f;
  transform: translateY(-1px);
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #fff;
  color: #171414;
}

main .hero {
  min-height: auto;
  display: block;
  padding: 112px 0 104px;
  text-align: left;
  background:
    radial-gradient(circle at 84% 35%, rgba(220, 32, 41, 0.07), transparent 28%),
    linear-gradient(180deg, #fff 0%, #fdfbfb 100%);
  border-bottom: 1px solid #eeeaea;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.72fr);
  align-items: center;
  gap: clamp(60px, 9vw, 120px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #695e5f;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #dc2029;
  box-shadow: 0 0 0 4px rgba(220, 32, 41, 0.1);
}

.hero-copy h1 {
  max-width: 720px;
  margin: 21px 0 0;
  color: #171414;
  font-size: clamp(2.75rem, 5.4vw, 4.7rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.065em;
}

.hero-text {
  max-width: 590px;
  margin: 25px 0 0;
  color: #675e5f;
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 34px;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 23px;
  color: #fff;
  background: #dc2029;
  border-radius: 9px;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  box-shadow: 0 8px 22px rgba(220, 32, 41, 0.16);
  transition: background 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.primary-button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.primary-button:hover {
  color: #fff;
  background: #ba171f;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(220, 32, 41, 0.22);
}

.hero-actions > span {
  color: #8a8081;
  font-size: 0.84rem;
}

.product-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid #e8e3e3;
  border-radius: 16px;
  box-shadow: 0 24px 64px rgba(53, 29, 31, 0.09);
}

.product-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid #eeeaea;
  color: #211d1e;
  font-size: 0.85rem;
  font-weight: 600;
}

.live-dot {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #367b4f;
  font-size: 0.72rem;
  font-weight: 600;
}

.live-dot::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #45a468;
}

.free-item {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 13px;
  margin: 0 20px;
  padding: 20px 0;
  border-bottom: 1px solid #f0eded;
}

.icon-box {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #dc2029;
  background: #fff1f2;
  border-radius: 10px;
}

.icon-box svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.free-item strong {
  display: block;
  color: #201c1d;
  font-size: 0.9rem;
  font-weight: 600;
}

.free-item p {
  margin: 3px 0 0;
  color: #8c8283;
  font-size: 0.76rem;
}

.included {
  padding: 5px 8px;
  color: #7b2429;
  background: #fff1f2;
  border-radius: 6px;
  font-size: 0.68rem;
  font-weight: 600;
}

.product-card > a {
  display: block;
  margin: 18px 20px 20px;
  padding: 12px;
  color: #fff;
  background: #1d191a;
  border-radius: 8px;
  text-align: center;
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 600;
  transition: background 160ms ease;
}

.product-card > a:hover {
  color: #fff;
  background: #dc2029;
}

.benefits {
  padding: 96px 0;
  background: #fff;
}

.section-heading span,
.section-label {
  color: #dc2029;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-heading h2,
.privacy h2 {
  max-width: 610px;
  margin: 13px 0 0;
  color: #171414;
  font-size: clamp(2rem, 3.3vw, 3rem);
  font-weight: 650;
  line-height: 1.12;
  letter-spacing: -0.045em;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 56px;
  border-top: 1px solid #e8e3e3;
}

.benefit-grid article {
  padding: 28px 34px 8px 0;
}

.benefit-grid article + article {
  padding-left: 34px;
  border-left: 1px solid #e8e3e3;
}

.step {
  color: #b3aaab;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.benefit-grid h3 {
  margin: 34px 0 0;
  color: #201c1d;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.benefit-grid p {
  max-width: 29ch;
  margin: 9px 0 0;
  color: #756b6c;
  font-size: 0.9rem;
  line-height: 1.65;
}

.privacy {
  padding: 80px 0;
  color: #fff;
  background: #1b1718;
}

.privacy-inner {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  align-items: end;
  gap: 80px;
}

.privacy h2 {
  color: #fff;
}

.privacy-copy p {
  margin: 0;
  color: #bfb7b8;
  font-size: 0.95rem;
  line-height: 1.7;
}

.privacy-copy a {
  display: inline-block;
  margin-top: 20px;
  color: #fff;
  font-size: 0.86rem;
  font-weight: 600;
  text-decoration: none;
}

.privacy-copy a:hover {
  color: #ff767d;
}

.site-footer {
  padding: 26px 0;
  background: #fff;
  border-top: 1px solid #ece8e8;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.footer-brand img {
  width: 34px;
  height: 34px;
}

.site-footer nav {
  display: flex;
  gap: 24px;
}

.site-footer nav a {
  color: #716768;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
}

.site-footer nav a:hover {
  color: #dc2029;
}

.site-footer p {
  margin: 0;
  color: #9c9394;
  text-align: right;
  font-size: 0.76rem;
}

@media (max-width: 820px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  main .hero {
    padding: 80px 0;
  }

  .product-card {
    width: 100%;
    max-width: 520px;
  }

  .privacy-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 32px, 1120px);
  }

  .site-header {
    height: 66px;
  }

  .brand-lockup img {
    width: 36px;
    height: 36px;
  }

  .nav-cta {
    min-height: 38px;
    padding: 0 13px;
    font-size: 0.78rem;
  }

  main .hero {
    padding: 64px 0 68px;
  }

  .hero-copy h1 {
    font-size: clamp(2.4rem, 12vw, 3.35rem);
  }

  .hero-text {
    margin-top: 20px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    margin-top: 28px;
  }

  .primary-button {
    width: 100%;
  }

  .benefits {
    padding: 68px 0;
  }

  .benefit-grid {
    grid-template-columns: 1fr;
    margin-top: 38px;
  }

  .benefit-grid article,
  .benefit-grid article + article {
    padding: 24px 0;
    border-left: 0;
    border-bottom: 1px solid #e8e3e3;
  }

  .benefit-grid h3 {
    margin-top: 20px;
  }

  .privacy {
    padding: 64px 0;
  }

  .footer-inner {
    grid-template-columns: 1fr auto;
  }

  .site-footer nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
  }

  .site-footer p {
    text-align: right;
  }
}
