:root {
  --bg: #f6efe5;
  --bg-deep: #16322f;
  --ink: #152220;
  --muted: #5c6d68;
  --card: rgba(255, 252, 248, 0.7);
  --line: rgba(21, 34, 32, 0.08);
  --accent: #ff7a59;
  --accent-2: #ffbf69;
  --accent-3: #78c6a3;
  --shadow: 0 30px 80px rgba(18, 31, 29, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: min(1180px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Anuphan", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(255, 191, 105, 0.5), transparent 32%),
    radial-gradient(circle at 80% 10%, rgba(120, 198, 163, 0.24), transparent 26%),
    linear-gradient(180deg, #fff8f0 0%, var(--bg) 45%, #f2ece4 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.14) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.4), transparent 90%);
  opacity: 0.35;
}

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

.page-shell {
  position: relative;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: var(--container);
  margin: 0 auto;
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Sora", sans-serif;
  font-weight: 700;
}

.brand-text {
  background: linear-gradient(90deg, #2f80d0 0%, #4d8fd7 32%, #f08a24 68%, #e6761c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 30px rgba(21, 34, 32, 0.12);
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-nav {
  display: inline-flex;
  gap: 22px;
  font-size: 0.95rem;
  color: var(--muted);
}

.section {
  width: var(--container);
  margin: 0 auto;
}

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 32px;
  padding: 56px 0 40px;
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero-title,
.section-heading h2,
.cta-panel h2 {
  margin: 0;
  font-family: "Anuphan", sans-serif;
  line-height: 1.12;
  letter-spacing: 0;
  font-weight: 800;
}

.hero-title {
  font-size: clamp(3rem, 7vw, 5.8rem);
  max-width: 9ch;
}

.hero-title span {
  color: #2e6f67;
}

.hero-text,
.feature-copy p,
.story-card p,
.journey-step p,
.cta-panel p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 1.02rem;
}

.hero-text {
  max-width: 560px;
  margin: 24px 0 0;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

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

.button-primary {
  background: var(--ink);
  color: white;
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.5);
}

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

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(10px);
}

.orb-gold {
  width: 270px;
  height: 270px;
  top: 14%;
  left: 12%;
  background: radial-gradient(circle, rgba(255, 191, 105, 0.86), rgba(255, 191, 105, 0));
}

.orb-coral {
  width: 320px;
  height: 320px;
  right: 6%;
  bottom: 12%;
  background: radial-gradient(circle, rgba(255, 122, 89, 0.42), rgba(255, 122, 89, 0));
}

.glass {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.pet-card {
  position: relative;
  z-index: 3;
  width: min(420px, 90%);
  padding: 24px;
  border-radius: var(--radius-xl);
  text-align: center;
}

.pet-card-top {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  font-size: 0.88rem;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-3);
  box-shadow: 0 0 0 8px rgba(120, 198, 163, 0.16);
}

.pet-avatar {
  width: 138px;
  height: 138px;
  margin: 22px auto 18px;
  display: grid;
  place-items: center;
  border-radius: 32px;
  font-size: 4rem;
  background: linear-gradient(180deg, #fff0d6, #f4e2cb);
}

.pet-card h2,
.feature-copy h3,
.story-card h3,
.journey-step h3 {
  margin: 0;
  font-family: "Anuphan", sans-serif;
}

.pet-card p {
  margin: 10px auto 0;
  max-width: 28ch;
  color: var(--muted);
}

.mini-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 22px;
}

.mini-metrics div {
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.56);
}

.mini-metrics strong,
.stat-block strong {
  display: block;
  font-size: 1.6rem;
  font-family: "Anuphan", sans-serif;
}

.mini-metrics span,
.stat-block span,
.journey-step span,
.panel-label {
  color: var(--muted);
}

.floating-tag {
  position: absolute;
  z-index: 4;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 600;
  background: white;
  box-shadow: 0 18px 40px rgba(21, 34, 32, 0.08);
}

.floating-tag-a {
  top: 14%;
  right: 8%;
}

.floating-tag-b {
  left: 8%;
  bottom: 17%;
}

.floating-tag-c {
  right: 16%;
  bottom: 9%;
}

.section-heading {
  max-width: 700px;
}

.section-heading h2,
.cta-panel h2 {
  font-size: clamp(2.2rem, 5vw, 4.4rem);
}

.story,
.feature-showcase,
.ecosystem,
.loyalty,
.journey,
.stats,
.cta {
  padding: 80px 0;
}

.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 42px;
}

.ecosystem-card {
  padding: 30px;
  border-radius: var(--radius-xl);
  min-height: 560px;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 28px;
}

.ecosystem-copy h3 {
  margin: 0;
  font-family: "Anuphan", sans-serif;
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.18;
  letter-spacing: 0;
  max-width: 12ch;
}

.ecosystem-copy p:last-child {
  color: var(--muted);
  line-height: 1.75;
}

.ecosystem-art {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  min-height: 300px;
}

.maps-art {
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 191, 105, 0.35), transparent 30%),
    linear-gradient(180deg, #e5f3ea, #d6eadf);
}

.map-frame {
  position: absolute;
  inset: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.5);
  overflow: hidden;
}

.map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(46, 111, 103, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46, 111, 103, 0.12) 1px, transparent 1px);
  background-size: 48px 48px;
}

.map-route {
  position: absolute;
  left: 14%;
  top: 55%;
  width: 62%;
  height: 20%;
  border: 5px solid transparent;
  border-top-color: rgba(255, 122, 89, 0.75);
  border-right-color: rgba(255, 122, 89, 0.75);
  border-radius: 999px;
  transform: rotate(-8deg);
}

.map-pin {
  position: absolute;
  width: 26px;
  height: 26px;
  border-radius: 50% 50% 50% 0;
  background: var(--accent);
  transform: rotate(-45deg);
  box-shadow: 0 10px 25px rgba(255, 122, 89, 0.25);
}

.map-pin::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  background: white;
}

.map-pin-a {
  left: 22%;
  top: 34%;
}

.map-pin-b {
  right: 18%;
  bottom: 24%;
}

.snap-art {
  background:
    radial-gradient(circle at top right, rgba(255, 122, 89, 0.28), transparent 28%),
    linear-gradient(180deg, #fff1e4, #ffe0c5);
  display: grid;
  place-items: center;
}

.snap-stack {
  position: relative;
  width: min(320px, 75%);
  aspect-ratio: 1 / 1.1;
}

.snap-card-back,
.snap-card-front {
  position: absolute;
  inset: 0;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.snap-card-back {
  background: linear-gradient(180deg, #ffd29d, #ffb56f);
  transform: rotate(-8deg) translate(-14px, 14px);
}

.snap-card-front {
  display: grid;
  place-items: center;
  gap: 12px;
  text-align: center;
  background: linear-gradient(180deg, #fffefb, #fff2e4);
}

.snap-badge {
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 700;
  color: white;
  background: var(--ink);
}

.snap-emoji {
  font-size: 4rem;
}

.snap-card-front span {
  font-family: "Anuphan", sans-serif;
  font-size: 1.5rem;
}

.mu-art {
  background:
    radial-gradient(circle at center, rgba(255, 191, 105, 0.28), transparent 24%),
    radial-gradient(circle at 20% 20%, rgba(255, 122, 89, 0.18), transparent 28%),
    linear-gradient(180deg, #fff5ea, #f5ead8);
  display: grid;
  place-items: center;
}

.mu-stage {
  position: relative;
  width: min(320px, 78%);
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
}

.mu-halo {
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  border: 1px solid rgba(255, 122, 89, 0.24);
  box-shadow: inset 0 0 40px rgba(255, 191, 105, 0.15);
}

.mu-core {
  position: relative;
  z-index: 2;
  width: 120px;
  height: 120px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-family: "Anuphan", sans-serif;
  font-size: 2rem;
  color: white;
  background: linear-gradient(180deg, #ff9f68, #ff7a59);
  box-shadow: 0 18px 40px rgba(255, 122, 89, 0.25);
}

.mu-chip {
  position: absolute;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  font-weight: 600;
  box-shadow: 0 18px 34px rgba(21, 34, 32, 0.08);
}

.mu-chip-a {
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
}

.mu-chip-b {
  left: 0;
  bottom: 58px;
}

.mu-chip-c {
  right: 0;
  bottom: 40px;
}

.shop-art {
  background:
    radial-gradient(circle at 75% 20%, rgba(120, 198, 163, 0.32), transparent 28%),
    linear-gradient(180deg, #eef6ee, #dcebdd);
  display: grid;
  place-items: center;
}

.shop-stage {
  position: relative;
  width: min(360px, 82%);
  min-height: 260px;
  display: grid;
  place-items: center;
}

.shop-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: white;
  background: #2e6f67;
}

.shop-box {
  position: relative;
  width: 220px;
  height: 170px;
}

.shop-lid {
  position: absolute;
  top: 10px;
  left: 24px;
  width: 172px;
  height: 34px;
  border-radius: 14px;
  background: linear-gradient(180deg, #ffcf8f, #ffb96c);
  transform-origin: left bottom;
}

.shop-body {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 220px;
  height: 132px;
  border-radius: 22px;
  background: linear-gradient(180deg, #fff8ef, #f6e4c8);
  box-shadow: var(--shadow);
}

.shop-tag {
  position: absolute;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  font-weight: 600;
  box-shadow: 0 18px 34px rgba(21, 34, 32, 0.08);
}

.shop-tag-a {
  left: -4px;
  bottom: 36px;
}

.shop-tag-b {
  right: -10px;
  top: 86px;
}

.loyalty-shell {
  display: grid;
  grid-template-columns: 0.96fr 1.04fr;
  gap: 30px;
  padding: clamp(28px, 5vw, 56px);
  border-radius: 36px;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 191, 105, 0.18), transparent 24%),
    radial-gradient(circle at 80% 30%, rgba(120, 198, 163, 0.16), transparent 28%),
    rgba(255, 252, 248, 0.72);
}

.loyalty-copy h2 {
  margin: 0;
  font-family: "Anuphan", sans-serif;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 1.12;
  letter-spacing: 0;
  max-width: 10ch;
}

.loyalty-copy > p:last-of-type {
  max-width: 58ch;
  color: var(--muted);
  line-height: 1.8;
}

.loyalty-points {
  margin-top: 28px;
  padding: 24px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
}

.loyalty-score span,
.loyalty-tier span {
  display: inline-block;
  color: var(--muted);
  font-size: 0.9rem;
}

.loyalty-score strong {
  display: block;
  margin-top: 8px;
  font-family: "Anuphan", sans-serif;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 1;
}

.loyalty-perks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 22px;
}

.loyalty-perks div {
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.68);
}

.loyalty-perks strong,
.loyalty-tier strong {
  display: block;
  font-family: "Anuphan", sans-serif;
}

.loyalty-perks span,
.loyalty-tier p {
  color: var(--muted);
}

.loyalty-visual {
  position: relative;
  min-height: 640px;
  display: grid;
  place-items: center;
}

.loyalty-ring-wrap {
  position: relative;
  width: min(430px, 92%);
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
}

.loyalty-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    conic-gradient(from 180deg, #ff7a59 0 34%, #ffbf69 34% 61%, #78c6a3 61% 82%, rgba(21, 34, 32, 0.08) 82% 100%);
  box-shadow: 0 34px 80px rgba(21, 34, 32, 0.14);
}

.loyalty-ring::after {
  content: "";
  position: absolute;
  inset: 28px;
  border-radius: 50%;
  background: rgba(255, 249, 242, 0.95);
}

.loyalty-core {
  position: relative;
  z-index: 2;
  width: 58%;
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 50%;
  background: linear-gradient(180deg, #16322f, #234944);
  color: white;
  box-shadow: 0 24px 60px rgba(22, 50, 47, 0.26);
}

.loyalty-core span {
  font-size: 0.9rem;
  opacity: 0.74;
}

.loyalty-core strong {
  font-family: "Anuphan", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.05;
}

.loyalty-tier {
  position: absolute;
  width: min(220px, 46%);
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.7);
}

.loyalty-tier p {
  margin: 8px 0 0;
  line-height: 1.6;
}

.tier-one {
  top: 10%;
  right: 2%;
}

.tier-two {
  bottom: 24%;
  left: 0;
}

.tier-three {
  bottom: 4%;
  right: 8%;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 38px;
}

.story-card,
.journey-step,
.stat-block {
  padding: 28px;
  border-radius: var(--radius-lg);
}

.story-number {
  display: inline-block;
  margin-bottom: 18px;
  font-family: "Anuphan", sans-serif;
  font-size: 2rem;
  color: rgba(21, 34, 32, 0.24);
}

.feature-panels {
  margin-top: 46px;
}

.feature-panel {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 30px;
  padding: 60px 0;
}

.feature-copy h3 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.15;
  letter-spacing: 0;
  max-width: 11ch;
}

.feature-art {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.18));
  border: 1px solid rgba(255, 255, 255, 0.55);
  overflow: hidden;
}

.stat-chip {
  position: absolute;
  top: 28px;
  left: 28px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  font-weight: 600;
}

.feature-device {
  width: 320px;
  height: 420px;
  padding: 18px;
  border-radius: 36px;
  background: linear-gradient(180deg, #173532, #214540);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.16);
}

.device-header {
  width: 36%;
  height: 14px;
  margin: 0 auto 28px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.device-body.lines {
  height: calc(100% - 42px);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.08)),
    repeating-linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.12) 0,
      rgba(255, 255, 255, 0.12) 14px,
      transparent 14px,
      transparent 34px
    );
}

.care-ring {
  width: 250px;
  height: 250px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 24px solid rgba(22, 50, 47, 0.14);
  font-family: "Anuphan", sans-serif;
  font-size: 2rem;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.38));
}

.pulse {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(22, 50, 47, 0.12);
}

.pulse-one {
  width: 340px;
  height: 340px;
}

.pulse-two {
  width: 440px;
  height: 440px;
}

.feature-art-stack {
  perspective: 1200px;
}

.memory-card {
  position: absolute;
  width: min(360px, 72%);
  aspect-ratio: 1 / 1.12;
  border-radius: 28px;
  background: linear-gradient(180deg, #fff2d8, #ffe1bf);
  box-shadow: var(--shadow);
}

.memory-back {
  transform: translateY(40px) rotate(-10deg);
  opacity: 0.55;
}

.memory-mid {
  transform: translateY(12px) rotate(-4deg);
  opacity: 0.8;
}

.memory-front {
  display: grid;
  place-items: end start;
  padding: 28px;
  font-family: "Sora", sans-serif;
  font-size: 1.7rem;
  background: linear-gradient(180deg, #1f433e, #2f665d);
  color: white;
}

.journey-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 42px;
}

.journey-step span {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 0.9rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.stat-block {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.42));
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.cta-panel {
  padding: clamp(32px, 6vw, 70px);
  border-radius: var(--radius-xl);
  text-align: center;
  background:
    radial-gradient(circle at top, rgba(255, 191, 105, 0.3), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.58));
}

.cta-panel h2 {
  max-width: 11ch;
  margin: 0 auto;
}

.cta-panel p {
  max-width: 700px;
  margin: 22px auto 0;
}

.cta-panel .button {
  margin-top: 28px;
}

.reveal,
.reveal-card,
.feature-copy,
.feature-art {
  opacity: 0;
}

@media (max-width: 1024px) {
  .site-header {
    width: min(100vw - 24px, 1180px);
  }

  .hero,
  .feature-panel,
  .loyalty-shell {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 28px;
  }

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

  .story-grid,
  .ecosystem-grid,
  .journey-track,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .loyalty-visual {
    min-height: 560px;
  }

  .loyalty-copy h2 {
    max-width: none;
  }

  .feature-panel {
    min-height: auto;
    padding: 40px 0;
  }

  .feature-copy h3,
  .hero-title {
    max-width: none;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 14px 0;
  }

  .site-nav {
    display: none;
  }

  .section {
    width: min(100vw - 24px, 1180px);
  }

  .hero {
    min-height: auto;
    gap: 18px;
    padding-bottom: 20px;
  }

  .hero-title {
    font-size: clamp(2.8rem, 16vw, 4.2rem);
  }

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

  .pet-card {
    width: 100%;
  }

  .feature-art {
    min-height: 380px;
  }

  .loyalty-shell {
    padding: 24px;
  }

  .loyalty-visual {
    min-height: 520px;
  }

  .loyalty-perks {
    grid-template-columns: 1fr;
  }

  .loyalty-tier {
    width: min(200px, 56%);
  }

  .feature-device {
    width: 250px;
    height: 340px;
  }

  .care-ring {
    width: 190px;
    height: 190px;
    font-size: 1.5rem;
  }

  .pulse-one {
    width: 250px;
    height: 250px;
  }

  .pulse-two {
    width: 320px;
    height: 320px;
  }

  .floating-tag {
    font-size: 0.85rem;
  }
}
