@font-face {
  font-family: "Comfortaa";
  src: url("assets/fonts/Comfortaa-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Comfortaa";
  src: url("assets/fonts/Comfortaa-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Roboto Local";
  src: url("assets/fonts/Roboto-Medium.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Nauryz";
  src: url("assets/fonts/NauryzRedKeds.woff2") format("woff2");
  font-display: swap;
}

:root {
  --accent: #ff4d6d;
  --accent-dark: #e73859;
  --ink: #281722;
  --muted: #71636b;
  --paper: #fffdfc;
  --warm: #fff7f3;
  --line: #eee5e7;
  --shadow: 0 20px 60px rgb(70 37 54 / 10%);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Comfortaa", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

button {
  color: inherit;
  font: inherit;
}

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

.section-shell {
  width: min(100% - 40px, 1240px);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgb(238 229 231 / 75%);
  background: rgb(255 253 252 / 84%);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: grid;
  width: min(100% - 40px, 1240px);
  min-height: 76px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  margin-inline: auto;
}

.wordmark {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  color: var(--accent);
  font-family: "Nauryz", "Segoe Script", cursive;
  font-size: 31px;
  font-weight: 400;
  letter-spacing: 0;
}

.wordmark > span:last-child > span {
  color: var(--accent);
}

.wordmark-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 11px;
  background: var(--accent);
  box-shadow: 0 8px 20px rgb(255 77 109 / 22%);
  color: white;
  font-family: Arial, sans-serif;
  font-size: 17px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.main-nav a {
  transition: color 180ms ease;
}

.main-nav a:hover {
  color: var(--accent);
}

.support-stub {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-self: end;
  gap: 8px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  cursor: default;
}

.support-stub span {
  padding: 3px 6px;
  border-radius: 999px;
  background: #f4eff1;
  color: #93868d;
  font-size: 9px;
  text-transform: uppercase;
}

.hero {
  display: grid;
  min-height: 720px;
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, 0.96fr);
  align-items: center;
  gap: 70px;
  padding-block: 74px 88px;
}

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

.eyebrow,
.section-kicker {
  color: var(--accent-dark);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 13px;
  border: 1px solid #ffd6dd;
  border-radius: 999px;
  background: #fff7f8;
}

.eyebrow i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgb(255 77 109 / 10%);
}

.hero h1 {
  max-width: 710px;
  margin: 24px 0 24px;
  font-family: "Roboto Local", system-ui, sans-serif;
  font-size: clamp(58px, 6.4vw, 88px);
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: -0.055em;
}

.hero h1 em {
  color: var(--accent);
  font-style: normal;
}

.hero-copy > p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

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

.primary-button,
.light-button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 25px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.primary-button {
  background: var(--ink);
  box-shadow: 0 15px 35px rgb(40 23 34 / 18%);
  color: white;
}

.primary-button span {
  color: #ff9bac;
  font-size: 19px;
}

.primary-button:hover {
  box-shadow: 0 20px 44px rgb(40 23 34 / 25%);
  transform: translateY(-2px);
}

.text-button {
  padding: 10px 0;
  border-bottom: 1px solid #cdbfc5;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.hero-trust {
  display: flex;
  gap: 22px;
  margin-top: 44px;
  color: #958991;
  font-size: 10px;
}

.hero-trust span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-trust b {
  color: var(--ink);
  font-family: "Roboto Local", sans-serif;
  font-size: 17px;
  font-weight: 500;
}

.hero-visual {
  position: relative;
  display: grid;
  min-height: 610px;
  place-items: center;
  isolation: isolate;
}

.hero-visual::before {
  position: absolute;
  z-index: -3;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 28%, #fff, transparent 20%),
    linear-gradient(145deg, #ffe0e1, #fff4e8);
  box-shadow: inset 0 0 0 1px rgb(255 255 255 / 70%);
  content: "";
}

.orbit {
  position: absolute;
  z-index: -2;
  border: 1px solid rgb(255 77 109 / 14%);
  border-radius: 50%;
}

.orbit::after {
  position: absolute;
  top: 13%;
  left: 11%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 7px rgb(255 255 255 / 65%);
  content: "";
}

.orbit-one {
  width: 580px;
  height: 400px;
  transform: rotate(-18deg);
}

.orbit-two {
  width: 430px;
  height: 570px;
  transform: rotate(32deg);
}

.phone {
  position: relative;
  width: 282px;
  height: 560px;
  padding: 9px;
  border-radius: 48px;
  background: #211a1e;
  box-shadow: 0 45px 90px rgb(58 31 45 / 28%);
  transform: rotate(3deg);
}

.phone-island {
  position: absolute;
  z-index: 3;
  top: 17px;
  left: 50%;
  width: 89px;
  height: 24px;
  border-radius: 999px;
  background: #211a1e;
  transform: translateX(-50%);
}

.phone-screen {
  display: flex;
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 45px 24px 28px;
  border-radius: 40px;
  background:
    radial-gradient(circle at 20% 16%, #fff 0 3%, transparent 3.5%),
    radial-gradient(circle at 83% 74%, rgb(255 255 255 / 70%) 0 5%, transparent 5.5%),
    linear-gradient(155deg, #fff5f5, #ffe7e1);
  text-align: center;
}

.phone-brand {
  position: absolute;
  top: 53px;
  color: var(--accent);
  font-size: 10px;
  font-weight: 600;
}

.phone-heart {
  color: var(--accent);
  font-family: Arial, sans-serif;
  font-size: 72px;
  line-height: 0.9;
  text-shadow: 0 12px 24px rgb(255 77 109 / 20%);
}

.phone-screen small {
  margin-top: 18px;
  color: var(--muted);
  font-size: 9px;
}

.phone-screen h2 {
  margin: 12px 0;
  font-family: "Roboto Local", sans-serif;
  font-size: 25px;
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.phone-screen p {
  max-width: 190px;
  margin: 0;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.55;
}

.phone-buttons {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr 0.7fr;
  gap: 8px;
  margin-top: 24px;
}

.phone-buttons span {
  padding: 11px 5px;
  border-radius: 999px;
  background: var(--accent);
  color: white;
  font-size: 9px;
  font-weight: 600;
}

.phone-buttons span:last-child {
  background: white;
  color: var(--muted);
}

.message-bubble {
  position: absolute;
  z-index: 4;
  display: grid;
  min-width: 145px;
  gap: 4px;
  padding: 13px 16px;
  border: 1px solid rgb(255 255 255 / 80%);
  border-radius: 17px;
  background: rgb(255 255 255 / 82%);
  box-shadow: 0 16px 40px rgb(77 38 55 / 12%);
  backdrop-filter: blur(12px);
}

.message-bubble span {
  color: var(--muted);
  font-size: 9px;
}

.message-bubble b {
  font-family: "Roboto Local", sans-serif;
  font-size: 14px;
  font-weight: 500;
}

.bubble-one {
  top: 18%;
  right: -2%;
  transform: rotate(-3deg);
}

.bubble-two {
  bottom: 18%;
  left: -4%;
  transform: rotate(2deg);
}

.formats-section {
  padding-block: 100px 110px;
  background: var(--warm);
}

.section-heading h2 {
  margin: 8px 0 0;
  font-family: "Roboto Local", sans-serif;
  font-size: clamp(42px, 5vw, 62px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.045em;
}

.heading-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 42px;
}

.heading-row > p {
  max-width: 480px;
  margin: 0 0 3px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

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

.format-card {
  position: relative;
  display: grid;
  min-height: 395px;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 82%);
  border-radius: 28px;
  background: white;
  box-shadow: 0 10px 38px rgb(70 37 54 / 6%);
  transition: box-shadow 220ms ease, transform 220ms ease;
}

.format-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.format-art {
  position: relative;
  display: grid;
  min-height: 208px;
  place-items: center;
  overflow: hidden;
}

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

.format-art::before {
  width: 170px;
  height: 170px;
  border: 1px solid rgb(255 255 255 / 80%);
  background: rgb(255 255 255 / 26%);
}

.format-art::after {
  width: 250px;
  height: 250px;
  border: 1px solid rgb(255 255 255 / 55%);
}

.format-emoji {
  position: relative;
  z-index: 2;
  font-size: 76px;
  filter: drop-shadow(0 14px 18px rgb(57 27 41 / 15%));
  transition: transform 240ms ease;
}

.format-card:hover .format-emoji {
  transform: rotate(-5deg) scale(1.06);
}

.spark {
  position: absolute;
  z-index: 1;
  color: rgb(255 255 255 / 70%);
}

.spark-a {
  top: 23%;
  left: 22%;
  font-size: 22px;
}

.spark-b {
  right: 23%;
  bottom: 22%;
  font-size: 9px;
}

.format-card--restaurant .format-art {
  background: #ffd4dc;
}

.format-card--cinema .format-art {
  background: #d9d7ff;
}

.format-card--walk .format-art {
  background: #d8efdf;
}

.format-card--coffee .format-art {
  background: #f4dfcb;
}

.format-card--home .format-art {
  background: #f7d6e6;
}

.format-card--picnic .format-art {
  background: #ffe4b8;
}

.format-card--surprise .format-art {
  background: #d9e8ff;
}

.format-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 24px 25px 25px;
}

.format-number {
  position: absolute;
  top: 26px;
  right: 24px;
  color: #c1b5bb;
  font-family: "Roboto Local", sans-serif;
  font-size: 11px;
}

.format-copy h3 {
  margin: 0 35px 9px 0;
  font-family: "Roboto Local", sans-serif;
  font-size: 23px;
  font-weight: 500;
  letter-spacing: -0.025em;
}

.format-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.65;
}

.format-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 20px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 600;
}

.format-link b {
  color: var(--accent);
  font-size: 18px;
}

.how-section {
  padding-block: 110px 120px;
}

.how-heading {
  max-width: 720px;
  margin: 0 auto 50px;
  text-align: center;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  position: relative;
  min-height: 285px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: white;
}

.steps li::after {
  position: absolute;
  right: -65px;
  bottom: -65px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: #fff2f4;
  content: "";
}

.step-index {
  position: absolute;
  top: 28px;
  right: 28px;
  color: #c7bbc1;
  font-family: "Roboto Local", sans-serif;
  font-size: 12px;
}

.step-icon {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 17px;
  background: #fff0f2;
  color: var(--accent);
  font-family: "Roboto Local", sans-serif;
  font-size: 27px;
}

.steps h3 {
  margin: 54px 0 10px;
  font-family: "Roboto Local", sans-serif;
  font-size: 22px;
  font-weight: 500;
}

.steps p {
  max-width: 290px;
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.7;
}

.final-cta {
  background: var(--ink);
  color: white;
}

.final-cta-inner {
  display: flex;
  min-height: 370px;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.final-cta .section-kicker {
  color: #ff91a4;
}

.final-cta h2 {
  margin: 12px 0 0;
  font-family: "Roboto Local", sans-serif;
  font-size: clamp(42px, 5vw, 62px);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.light-button {
  min-width: 230px;
  background: white;
  color: var(--ink);
}

.light-button span {
  color: var(--accent);
}

.light-button:hover {
  box-shadow: 0 18px 45px rgb(0 0 0 / 25%);
  transform: translateY(-2px);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: white;
}

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

.wordmark--footer {
  font-size: 26px;
}

.wordmark--footer .wordmark-icon {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  font-size: 15px;
}

.footer-inner p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
}

.footer-inner button {
  justify-self: end;
  padding: 0;
  border: 0;
  background: transparent;
  color: #b1a5ab;
  font-size: 10px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 520ms ease var(--reveal-delay, 0ms),
    transform 520ms ease var(--reveal-delay, 0ms),
    box-shadow 220ms ease,
    translate 220ms ease;
}

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

  .hero h1 {
    font-size: clamp(56px, 7vw, 75px);
  }

  .hero-visual {
    transform: scale(0.9);
  }

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

@media (max-width: 850px) {
  .header-inner {
    grid-template-columns: 1fr 1fr;
  }

  .main-nav {
    display: none;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 60px;
    text-align: center;
  }

  .hero-copy > p {
    margin-inline: auto;
  }

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

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

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

  .heading-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

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

  .steps li {
    min-height: 230px;
  }

  .steps h3 {
    margin-top: 35px;
  }

  .final-cta-inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .section-shell,
  .header-inner {
    width: calc(100% - 28px);
  }

  .header-inner {
    min-height: 68px;
  }

  .wordmark {
    font-size: 27px;
  }

  .wordmark-icon {
    width: 31px;
    height: 31px;
  }

  .support-stub {
    min-height: 38px;
    padding-inline: 12px;
    font-size: 10px;
  }

  .support-stub span {
    display: none;
  }

  .hero {
    gap: 20px;
    padding-block: 45px 55px;
  }

  .hero h1 {
    font-size: clamp(49px, 15vw, 68px);
  }

  .hero-copy > p {
    font-size: 14px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
  }

  .text-button {
    border: 0;
  }

  .hero-trust {
    flex-wrap: wrap;
    gap: 12px 18px;
    margin-top: 32px;
  }

  .hero-visual {
    min-height: 520px;
    transform: scale(0.82);
  }

  .bubble-one {
    right: -8%;
  }

  .bubble-two {
    left: -8%;
  }

  .formats-section,
  .how-section {
    padding-block: 70px;
  }

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

  .format-card {
    min-height: 385px;
  }

  .format-art {
    min-height: 205px;
  }

  .section-heading h2,
  .final-cta h2 {
    font-size: 42px;
  }

  .final-cta-inner {
    min-height: 410px;
  }

  .light-button {
    width: 100%;
  }

  .footer-inner {
    min-height: 145px;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 10px;
    padding-block: 24px;
    text-align: center;
  }

  .footer-inner button {
    justify-self: center;
  }
}

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

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