:root {
  --purple: #4725ff;
  --aqua: #00d7c7;
  --yellow: #ffe86b;
  --coral: #ff6b58;
  --ink: #121229;
  --soft: #696987;
  --cream: #fff9e9;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Trebuchet MS", Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
}

a {
  color: inherit;
}

.header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px clamp(18px, 5vw, 70px);
  background: rgba(255, 249, 233, 0.82);
  backdrop-filter: blur(16px);
}

.logo {
  display: inline-grid;
  place-items: center;
  width: 78px;
  height: 78px;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: var(--yellow);
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  transform: rotate(-8deg);
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

nav a {
  font-weight: 800;
  text-decoration: none;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 36px;
  align-items: center;
  min-height: 84vh;
  overflow: hidden;
  padding: clamp(58px, 8vw, 110px) clamp(18px, 5vw, 70px);
}

.blob {
  position: absolute;
  z-index: -1;
  border-radius: 44% 56% 62% 38% / 42% 34% 66% 58%;
  filter: blur(1px);
  opacity: 0.85;
}

.blob.one {
  width: 360px;
  height: 360px;
  top: 8%;
  right: 8%;
  background: var(--aqua);
  animation: morph 9s ease-in-out infinite;
}

.blob.two {
  width: 460px;
  height: 460px;
  bottom: -140px;
  left: -90px;
  background: var(--coral);
  animation: morph 11s ease-in-out infinite reverse;
}

.pill {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  margin: 0 0 18px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 8px 14px;
  background: #fff;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 920px;
  margin-bottom: 24px;
  font-size: clamp(56px, 10vw, 128px);
  line-height: 0.82;
  letter-spacing: -0.09em;
}

h2 {
  font-size: clamp(36px, 6vw, 78px);
  line-height: 0.9;
  letter-spacing: -0.07em;
}

h3 {
  font-size: 30px;
}

.hero-copy p:not(.pill),
.subscription p,
.menu-grid p,
.package-grid p,
.package-grid li,
.story p,
.faq-grid p,
.contact p,
.contact-card span {
  color: var(--soft);
  line-height: 1.75;
}

.hero-copy p:not(.pill) {
  max-width: 700px;
  font-size: 21px;
}

.button {
  display: inline-flex;
  align-items: center;
  min-height: 58px;
  margin-top: 18px;
  border: 3px solid var(--ink);
  border-radius: 18px;
  padding: 0 24px;
  background: var(--purple);
  color: white;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 8px 8px 0 var(--ink);
}

.tap-card {
  padding: 34px;
  border: 3px solid var(--ink);
  border-radius: 36px;
  background: #fff;
  box-shadow: 12px 12px 0 var(--ink);
}

.tap-icon {
  display: grid;
  place-items: center;
  width: 120px;
  height: 120px;
  margin-bottom: 40px;
  border-radius: 50%;
  background: var(--aqua);
  font-size: 72px;
}

.service-menu,
.subscription,
.packages,
.stories,
.faq,
.contact {
  padding: clamp(58px, 8vw, 108px) clamp(18px, 5vw, 70px);
}

.section-heading {
  max-width: 880px;
  margin-bottom: 32px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.menu-grid article {
  min-height: 360px;
  padding: 28px;
  border: 3px solid var(--ink);
  border-radius: 32px;
  background: #fff;
  box-shadow: 8px 8px 0 var(--ink);
}

.menu-grid article:nth-child(2) {
  background: var(--yellow);
}

.menu-grid article:nth-child(3) {
  background: #e7ddff;
}

.menu-grid span {
  display: inline-block;
  margin-bottom: 78px;
  font-weight: 900;
}

.subscription {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 42px;
  align-items: center;
  background: var(--ink);
  color: white;
}

.roundel {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ink);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  line-height: 1.05;
  text-align: center;
  transform: rotate(-5deg);
}

.features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.features span {
  border: 2px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  padding: 10px 14px;
}

.packages {
  background: #fff;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.package-grid article {
  display: grid;
  align-content: start;
  min-height: 380px;
  padding: 26px;
  border: 3px solid var(--ink);
  border-radius: 30px;
  background: var(--cream);
  box-shadow: 8px 8px 0 var(--ink);
}

.package-grid article:nth-child(even) {
  background: #e7ddff;
}

.package-grid ul {
  display: grid;
  gap: 10px;
  padding-left: 18px;
  margin: 22px 0 0;
}

.stories {
  background: linear-gradient(135deg, #f5edff, #dffbf7);
}

.story-slider {
  position: relative;
  min-height: 280px;
  margin-top: 28px;
}

.story {
  position: absolute;
  inset: 0;
  display: none;
  padding: 34px;
  border: 3px solid var(--ink);
  border-radius: 34px;
  background: white;
  box-shadow: 10px 10px 0 var(--ink);
}

.story.active {
  display: block;
}

.slider-controls {
  display: flex;
  gap: 12px;
}

.slider-controls button {
  border: 3px solid var(--ink);
  border-radius: 999px;
  background: var(--yellow);
  padding: 12px 18px;
  font-weight: 900;
}

.faq {
  background: var(--yellow);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.faq-grid article {
  padding: 26px;
  border: 3px solid var(--ink);
  border-radius: 30px;
  background: white;
}

.contact {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 32px;
  align-items: end;
}

.contact-card {
  display: grid;
  gap: 14px;
  padding: 30px;
  border: 3px solid var(--ink);
  border-radius: 30px;
  background: white;
  box-shadow: 10px 10px 0 var(--purple);
}

.contact-card a {
  color: var(--purple);
  font-size: 24px;
  font-weight: 900;
}

footer {
  display: flex;
  justify-content: space-between;
  padding: 24px clamp(18px, 5vw, 70px);
  background: var(--ink);
  color: white;
}

@keyframes morph {
  50% {
    border-radius: 65% 35% 42% 58% / 58% 54% 46% 42%;
    transform: translateY(20px) rotate(10deg);
  }
}

@media (max-width: 900px) {
  .hero,
  .menu-grid,
  .package-grid,
  .subscription,
  .faq-grid,
  .contact {
    grid-template-columns: 1fr;
  }

  .roundel {
    max-width: 320px;
  }

  .header,
  footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}
