:root {
  --bg: #061219;
  --bg-deep: #030b10;
  --surface: rgba(13, 36, 45, 0.78);
  --surface-strong: #0d252e;
  --surface-soft: rgba(255, 255, 255, 0.045);
  --surface-light: #f1f8f6;
  --ink: #10242c;
  --text: #f3fbf8;
  --muted: #9bb1b8;
  --muted-dark: #647b82;
  --mint: #55e6bd;
  --mint-strong: #28cfa3;
  --blue: #78bfff;
  --coral: #ff9e70;
  --line: rgba(184, 225, 217, 0.14);
  --line-strong: rgba(85, 230, 189, 0.26);
  --shadow: 0 30px 90px rgba(0, 8, 13, 0.34);
  --shadow-soft: 0 18px 50px rgba(0, 8, 13, 0.18);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg-deep);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 8%, rgba(85, 230, 189, 0.10), transparent 27rem),
    radial-gradient(circle at 88% 22%, rgba(120, 191, 255, 0.08), transparent 30rem),
    linear-gradient(180deg, #071820 0%, var(--bg) 38%, var(--bg-deep) 100%);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  pointer-events: none;
  opacity: 0.24;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 74%);
}

::selection {
  color: #04110d;
  background: var(--mint);
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

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

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  color: var(--text);
  font-weight: 760;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h1 {
  margin: 22px 0 24px;
  max-width: 760px;
  font-size: clamp(3.8rem, 6.4vw, 6.7rem);
  line-height: 0.94;
}

h1 span {
  color: transparent;
  background: linear-gradient(110deg, var(--mint) 0%, #c7fff0 46%, var(--blue) 100%);
  background-clip: text;
  -webkit-background-clip: text;
}

h2 {
  margin: 16px 0 20px;
  font-size: clamp(2.3rem, 4.2vw, 4.15rem);
}

h3 {
  margin: 18px 0 10px;
  font-size: 1.25rem;
}

p {
  color: var(--muted);
}

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

.section-pad {
  position: relative;
  padding: clamp(92px, 10vw, 144px) 0;
  scroll-margin-top: 108px;
}

.alt-section {
  isolation: isolate;
}

.alt-section::before {
  position: absolute;
  inset: 18px max(18px, calc((100vw - 1320px) / 2));
  z-index: -1;
  content: "";
  border: 1px solid rgba(184, 225, 217, 0.07);
  border-radius: 44px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.043), rgba(255, 255, 255, 0.012)),
    radial-gradient(circle at 14% 0%, rgba(85, 230, 189, 0.08), transparent 35%);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.025);
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 200;
  padding: 10px 14px;
  border-radius: 12px;
  color: var(--ink);
  background: var(--mint);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 14px 0;
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease, padding 0.25s ease;
}

.site-header.scrolled {
  padding: 9px 0;
  border-color: var(--line);
  background: rgba(4, 15, 21, 0.82);
  box-shadow: 0 12px 40px rgba(0, 7, 12, 0.22);
  backdrop-filter: blur(20px) saturate(140%);
}

.nav-wrap {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 30px;
  align-items: center;
  min-height: 62px;
}

.brand {
  display: inline-flex;
  gap: 11px;
  align-items: center;
  min-width: max-content;
  font-size: 1.08rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.brand-mark {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  filter: drop-shadow(0 8px 18px rgba(21, 226, 199, 0.22));
}

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

.desktop-nav {
  display: flex;
  justify-content: center;
  min-width: 0;
  gap: 4px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.025);
}

.desktop-nav a {
  position: relative;
  padding: 9px 13px;
  border-radius: 999px;
  color: #b8cbd0;
  font-size: 0.78rem;
  font-weight: 750;
  white-space: nowrap;
  transition: color 0.2s ease, background 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.065);
  outline: none;
}

.nav-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: flex-end;
  min-width: max-content;
}

.text-link {
  color: #b8cbd0;
  font-size: 0.82rem;
  font-weight: 750;
}

.text-link:hover {
  color: #fff;
}

.button,
.button-link {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 15px;
  font-size: 0.86rem;
  font-weight: 850;
  line-height: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.button {
  padding: 0 20px;
  color: #04110d;
  background: linear-gradient(135deg, #8affdf, var(--mint));
  box-shadow: 0 14px 32px rgba(52, 215, 174, 0.18), inset 0 1px rgba(255, 255, 255, 0.6);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(52, 215, 174, 0.26), inset 0 1px rgba(255, 255, 255, 0.7);
  outline: none;
}

.button-secondary,
.button-ghost {
  color: var(--text);
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.04);
}

.button-secondary:hover,
.button-ghost:hover {
  border-color: rgba(85, 230, 189, 0.48);
  background: rgba(85, 230, 189, 0.08);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.18);
}

.button-small {
  min-height: 42px;
  padding-inline: 15px;
  border-radius: 13px;
  font-size: 0.74rem;
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.42;
  transform: none;
  box-shadow: none;
}

.button-link {
  min-height: 44px;
  padding-inline: 8px;
  color: #ccdadf;
}

.button-link span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--mint);
  background: rgba(255, 255, 255, 0.04);
}

.button-link:hover {
  color: #fff;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--mint);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 5px rgba(85, 230, 189, 0.10), 0 0 22px var(--mint);
}

.hero {
  min-height: 820px;
  padding-top: clamp(82px, 9vw, 132px);
  overflow: hidden;
}

.hero::after {
  position: absolute;
  right: -10vw;
  bottom: 0;
  left: -10vw;
  height: 160px;
  content: "";
  pointer-events: none;
  background: linear-gradient(to bottom, transparent, var(--bg));
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(360px, 0.84fr);
  gap: clamp(42px, 7vw, 108px);
  align-items: center;
}

.hero-copy,
.phone-stage,
.profile-showcase > *,
.two-col > *,
.rewards-panel > *,
.token-info > *,
.placeholder-panel > *,
.faq-wrap > * {
  min-width: 0;
}

.hero-lead {
  max-width: 680px;
  margin-bottom: 30px;
  color: #b5c8cd;
  font-size: clamp(1.05rem, 1.6vw, 1.24rem);
  line-height: 1.75;
}

.hero-note {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin-top: 25px;
  color: #819aa1;
  font-size: 0.78rem;
  font-weight: 650;
}

.shield-icon {
  display: inline-grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border: 1px solid rgba(85, 230, 189, 0.25);
  border-radius: 9px;
  color: var(--mint);
  background: rgba(85, 230, 189, 0.07);
}

.hero-orb {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(2px);
}

.orb-one {
  top: 5%;
  right: 3%;
  width: 540px;
  height: 540px;
  border: 1px solid rgba(85, 230, 189, 0.14);
  background: radial-gradient(circle at 38% 38%, rgba(85, 230, 189, 0.18), rgba(8, 35, 44, 0.03) 54%, transparent 70%);
  box-shadow: inset 0 0 90px rgba(85, 230, 189, 0.04);
}

.orb-one::before,
.orb-one::after {
  position: absolute;
  inset: 12%;
  content: "";
  border: 1px solid rgba(120, 191, 255, 0.12);
  border-radius: inherit;
}

.orb-one::after {
  inset: 28%;
}

.orb-two {
  bottom: 8%;
  left: -180px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(120, 191, 255, 0.12), transparent 68%);
  filter: blur(20px);
}

.phone-stage {
  position: relative;
  display: grid;
  min-height: 630px;
  place-items: center;
}

.phone-stage::before {
  position: absolute;
  width: min(98%, 470px);
  aspect-ratio: 1;
  content: "";
  border: 1px solid rgba(85, 230, 189, 0.16);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(85, 230, 189, 0.11), transparent 66%);
  box-shadow: 0 0 100px rgba(85, 230, 189, 0.08);
}

.phone {
  position: relative;
  z-index: 2;
  width: min(100%, 342px);
  padding: 10px;
  border: 1px solid rgba(190, 230, 221, 0.22);
  border-radius: 46px;
  background: linear-gradient(145deg, #18333d, #061219 58%, #15303a);
  box-shadow: 0 46px 110px rgba(0, 5, 9, 0.65), inset 0 1px 1px rgba(255, 255, 255, 0.14);
  transform: rotate(2deg);
}

.phone-notch {
  position: absolute;
  top: 17px;
  left: 50%;
  z-index: 4;
  width: 94px;
  height: 25px;
  border-radius: 999px;
  background: #071319;
  transform: translateX(-50%);
}

.phone-screen {
  min-height: 590px;
  padding: 32px 18px 18px;
  overflow: hidden;
  border-radius: 36px;
  color: var(--ink);
  background:
    radial-gradient(circle at 50% -5%, rgba(85, 230, 189, 0.24), transparent 31%),
    linear-gradient(180deg, #f5fbf9, #e9f3f1);
}

.app-top,
.dash-header,
.calendar-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.mini-brand {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #17353d;
  font-size: 0.75rem;
  font-weight: 950;
  letter-spacing: 0.12em;
}

.mini-brand img {
  display: block;
  width: 18px;
  height: 18px;
  object-fit: contain;
  filter: drop-shadow(0 3px 7px rgba(21, 226, 199, 0.18));
}

.avatar-mini {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border-radius: 11px;
  color: #fff;
  background: #153a45;
  font-size: 0.64rem;
  font-weight: 850;
}

.pet-photo-wrap {
  position: relative;
  width: max-content;
  margin: 25px auto 13px;
}

.pet-photo {
  display: grid;
  width: 94px;
  height: 94px;
  place-items: center;
  border: 5px solid rgba(255, 255, 255, 0.94);
  border-radius: 33px;
  background: linear-gradient(145deg, #d5ebe5, #c2ddd7);
  box-shadow: 0 15px 28px rgba(28, 66, 70, 0.16);
  font-size: 55px;
}

.verified {
  position: absolute;
  right: -4px;
  bottom: 1px;
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border: 3px solid #eff8f5;
  border-radius: 50%;
  color: #fff;
  background: #22b98d;
  font-size: 0.7rem;
  font-weight: 900;
}

.pet-title {
  text-align: center;
}

.pet-title h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.45rem;
}

.pet-title span {
  color: #6d8389;
  font-size: 0.7rem;
}

.pet-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 18px 0 11px;
}

.pet-stats div {
  padding: 10px 5px;
  border: 1px solid rgba(25, 68, 73, 0.08);
  border-radius: 14px;
  text-align: center;
  background: rgba(255, 255, 255, 0.72);
}

.pet-stats b,
.pet-stats small {
  display: block;
}

.pet-stats b {
  color: #17323a;
  font-size: 0.7rem;
}

.pet-stats small {
  color: #819297;
  font-size: 0.55rem;
}

.health-card {
  padding: 13px;
  border: 1px solid rgba(34, 185, 141, 0.15);
  border-radius: 15px;
  background: linear-gradient(135deg, rgba(34, 185, 141, 0.11), rgba(255, 255, 255, 0.72));
}

.health-card div {
  display: flex;
  gap: 7px;
  align-items: center;
  color: #40585e;
  font-size: 0.63rem;
}

.health-card strong {
  display: block;
  margin-top: 3px;
  color: #0f7d62;
  font-size: 0.73rem;
}

.health-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22b98d;
  box-shadow: 0 0 0 4px rgba(34, 185, 141, 0.12);
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 10px 0;
}

.mini-grid div {
  min-width: 0;
  padding: 10px;
  border: 1px solid rgba(25, 68, 73, 0.07);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.74);
}

.mini-grid span,
.mini-grid b {
  display: block;
  overflow-wrap: anywhere;
}

.mini-grid span {
  color: #7e9196;
  font-size: 0.54rem;
}

.mini-grid b {
  color: #263f45;
  font-size: 0.62rem;
}

.success {
  color: #0a9472 !important;
}

.app-button {
  width: 100%;
  padding: 12px;
  border: 0;
  border-radius: 13px;
  color: #fff;
  background: linear-gradient(135deg, #173f49, #0e2b34);
  font-size: 0.67rem;
  font-weight: 800;
}

.floating-card {
  position: absolute;
  z-index: 4;
  display: flex;
  gap: 11px;
  align-items: center;
  min-width: 170px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 17px;
  color: var(--ink);
  background: rgba(247, 252, 250, 0.93);
  box-shadow: 0 22px 55px rgba(0, 8, 12, 0.26);
  backdrop-filter: blur(12px);
}

.floating-card b,
.floating-card small {
  display: block;
}

.floating-card b {
  font-size: 0.68rem;
}

.floating-card small {
  color: #74868b;
  font-size: 0.6rem;
}

.float-b {
  top: 145px;
  right: -38px;
}

.calendar-icon {
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, var(--coral), #ff7f6a);
  font-size: 0.75rem;
  font-weight: 900;
}

.trust-strip {
  position: relative;
  z-index: 5;
  border-block: 1px solid var(--line);
  background: rgba(3, 13, 18, 0.68);
  backdrop-filter: blur(12px);
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
}

.trust-list span {
  position: relative;
  padding: 20px 16px;
  color: #b5c7cc;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.trust-list span + span::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 1px;
  height: 22px;
  content: "";
  background: var(--line);
  transform: translateY(-50%);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 52px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading p,
.showcase-copy > p,
.two-col > div > p {
  max-width: 680px;
  font-size: 1.05rem;
  line-height: 1.8;
}

.problem-grid,
.feature-grid,
.utility-grid {
  display: grid;
  gap: 16px;
}

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

.problem-card,
.feature-card,
.utility-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(8, 29, 37, 0.50);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.035);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.problem-card::after,
.feature-card::after,
.utility-card::after {
  position: absolute;
  top: -100px;
  right: -80px;
  width: 190px;
  height: 190px;
  content: "";
  border-radius: 50%;
  background: radial-gradient(circle, rgba(85, 230, 189, 0.11), transparent 68%);
  pointer-events: none;
}

.problem-card:hover,
.feature-card:hover,
.utility-card:hover {
  border-color: rgba(85, 230, 189, 0.34);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.072), rgba(255, 255, 255, 0.025)),
    rgba(8, 29, 37, 0.72);
  transform: translateY(-5px);
}

.problem-card {
  min-height: 246px;
  padding: 28px;
}

.problem-card h3,
.feature-card h3,
.utility-card h3 {
  overflow-wrap: anywhere;
}

.problem-card p,
.feature-card p,
.utility-card p {
  margin-bottom: 0;
  font-size: 0.9rem;
  line-height: 1.72;
}

.icon-box,
.feature-icon {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 1px solid rgba(85, 230, 189, 0.18);
  border-radius: 16px;
  color: var(--mint);
  background: linear-gradient(145deg, rgba(85, 230, 189, 0.15), rgba(120, 191, 255, 0.06));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.05);
  font-size: 1.2rem;
}

.solution-banner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  align-items: center;
  margin-top: 18px;
  padding: clamp(32px, 5vw, 52px);
  overflow: hidden;
  border: 1px solid rgba(85, 230, 189, 0.24);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 85% 0%, rgba(85, 230, 189, 0.18), transparent 28%),
    linear-gradient(125deg, #0c3440, #0a242e 65%, #0c2b35);
  box-shadow: var(--shadow-soft);
}

.solution-banner h3 {
  max-width: 750px;
  margin: 12px 0 0;
  font-size: clamp(1.8rem, 3.2vw, 3.1rem);
}

.solution-art {
  display: flex;
  align-items: center;
}

.solution-art span {
  display: grid;
  width: 74px;
  height: 74px;
  margin-left: -10px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);
  font-size: 1.8rem;
  transform: rotate(-7deg);
}

.solution-art span:nth-child(2) {
  z-index: 2;
  color: var(--mint);
  transform: rotate(5deg) translateY(-10px);
}

.solution-art span:nth-child(3) {
  transform: rotate(10deg);
}

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

.feature-card {
  min-height: 276px;
  padding: 25px;
}

.feature-card:nth-child(1),
.feature-card:nth-child(6) {
  grid-column: span 2;
}

.feature-card:nth-child(1) {
  background:
    radial-gradient(circle at 85% 12%, rgba(85, 230, 189, 0.13), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.018)),
    rgba(8, 29, 37, 0.64);
}

.feature-card:nth-child(6) {
  background:
    radial-gradient(circle at 85% 12%, rgba(120, 191, 255, 0.12), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.018)),
    rgba(8, 29, 37, 0.64);
}

.feature-card h3 {
  margin-top: 28px;
}

.profile-showcase,
.two-col,
.rewards-panel,
.token-info,
.placeholder-panel,
.faq-wrap {
  display: grid;
  align-items: center;
}

.profile-showcase {
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(50px, 7vw, 96px);
}

.showcase-copy small,
.rewards-copy small {
  display: block;
  color: #718990;
  font-size: 0.72rem;
  line-height: 1.7;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 12px;
  align-items: center;
  color: #d6e3e6;
  font-weight: 700;
}

.check-list li::before {
  display: grid;
  width: 25px;
  height: 25px;
  flex: 0 0 auto;
  place-items: center;
  content: "✓";
  border: 1px solid rgba(85, 230, 189, 0.22);
  border-radius: 9px;
  color: var(--mint);
  background: rgba(85, 230, 189, 0.08);
  font-size: 0.7rem;
}

.dashboard-card,
.calendar-card,
.qr-card {
  border: 1px solid rgba(190, 230, 221, 0.18);
  box-shadow: var(--shadow);
}

.dashboard-card {
  position: relative;
  min-width: 0;
  padding: 24px;
  overflow: hidden;
  border-radius: 31px;
  color: var(--ink);
  background:
    radial-gradient(circle at 100% 0%, rgba(85, 230, 189, 0.17), transparent 28%),
    linear-gradient(180deg, #f5fbf9, #e9f3f0);
  transform: perspective(1100px) rotateY(-3deg) rotateX(1deg);
}

.dashboard-card::after {
  position: absolute;
  right: 22px;
  bottom: 17px;
  color: rgba(16, 36, 44, 0.045);
  content: "PETMED";
  font-size: 4.6rem;
  font-weight: 950;
  letter-spacing: -0.07em;
  pointer-events: none;
}

.dash-pet {
  display: flex;
  min-width: 0;
  gap: 13px;
  align-items: center;
}

.dash-photo {
  display: grid;
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 17px;
  background: #d0e7e1;
  font-size: 2rem;
}

.dash-pet h3 {
  margin: 0 0 4px;
  color: var(--ink);
  font-size: 1rem;
}

.dash-pet h3 span {
  color: #16aa82;
}

.dash-pet p {
  margin: 0;
  color: #72868c;
  font-size: 0.68rem;
  overflow-wrap: anywhere;
}

.dash-header button {
  flex: 0 0 auto;
  padding: 9px 12px;
  border: 1px solid #cfdfdb;
  border-radius: 11px;
  color: #365158;
  background: rgba(255, 255, 255, 0.58);
  font-size: 0.65rem;
  font-weight: 800;
}

.tabs {
  display: flex;
  gap: 5px;
  margin: 24px -4px 18px;
  padding: 4px;
  overflow-x: auto;
  border: 1px solid rgba(25, 68, 73, 0.09);
  border-radius: 13px;
  background: rgba(19, 55, 62, 0.055);
  scrollbar-width: none;
}

.tabs::-webkit-scrollbar {
  display: none;
}

.tabs button {
  min-width: max-content;
  padding: 8px 10px;
  border: 0;
  border-radius: 9px;
  color: #6f858a;
  background: transparent;
  font-size: 0.6rem;
  font-weight: 800;
}

.tabs button.active {
  color: #13313a;
  background: #fff;
  box-shadow: 0 6px 15px rgba(16, 42, 47, 0.08);
}

.tab-panel {
  position: relative;
  z-index: 2;
  display: none;
  min-height: 305px;
}

.tab-panel.active {
  display: block;
}

.tab-panel > p {
  padding: 24px;
  border-radius: 15px;
  color: #50666c;
  background: rgba(255, 255, 255, 0.58);
}

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

.dash-stat {
  min-width: 0;
  padding: 13px;
  border: 1px solid rgba(25, 68, 73, 0.07);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
}

.dash-stat span,
.dash-stat b,
.dash-stat small {
  display: block;
  overflow-wrap: anywhere;
}

.dash-stat span {
  color: #7d9196;
  font-size: 0.57rem;
}

.dash-stat b {
  margin: 4px 0;
  color: #1a353d;
  font-size: 0.72rem;
}

.dash-stat small {
  color: #8c9da1;
  font-size: 0.52rem;
}

.timeline {
  margin-top: 12px;
  padding: 16px;
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.67);
}

.timeline h4 {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 0.72rem;
}

.timeline-item {
  display: grid;
  grid-template-columns: 8px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 8px 0;
  border-top: 1px solid rgba(18, 62, 68, 0.07);
}

.timeline-item > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #24b68d;
}

.timeline-item b,
.timeline-item small {
  display: block;
  overflow-wrap: anywhere;
}

.timeline-item b {
  color: #29444b;
  font-size: 0.62rem;
}

.timeline-item small {
  color: #84969b;
  font-size: 0.52rem;
}

.timeline-item em {
  color: #0e9674;
  font-size: 0.52rem;
  font-style: normal;
  font-weight: 750;
}

.qr-section {
  background:
    radial-gradient(circle at 25% 45%, rgba(85, 230, 189, 0.08), transparent 24%),
    linear-gradient(180deg, transparent, rgba(13, 41, 53, 0.23), transparent);
}

.two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(52px, 8vw, 112px);
}

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

.qr-visual::before {
  position: absolute;
  width: 420px;
  max-width: 100%;
  aspect-ratio: 1;
  content: "";
  border: 1px solid rgba(85, 230, 189, 0.13);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(85, 230, 189, 0.11), transparent 66%);
}

.qr-card {
  position: relative;
  z-index: 2;
  width: min(100%, 340px);
  padding: 26px;
  border-radius: 28px;
  color: var(--ink);
  text-align: center;
  background: linear-gradient(180deg, #f7fcfa, #e7f2ef);
  transform: rotate(-2deg);
}

.qr-code {
  display: grid;
  width: 210px;
  max-width: 100%;
  aspect-ratio: 1;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
  margin: 0 auto 20px;
  padding: 17px;
  border-radius: 21px;
  background: #fff;
  box-shadow: inset 0 0 0 1px #dce9e6;
}

.qr-code span {
  border-radius: 3px;
  background: #14343d;
}

.qr-code span:nth-child(2n),
.qr-code span:nth-child(7),
.qr-code span:nth-child(13) {
  background: transparent;
}

.qr-card h3 {
  margin: 0 0 5px;
  color: var(--ink);
}

.qr-card p {
  margin-bottom: 14px;
  color: #72868c;
  font-size: 0.78rem;
}

.active-pill {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  color: #0b8c6d;
  background: rgba(34, 185, 141, 0.11);
  font-size: 0.64rem;
  font-weight: 850;
}

.tag-list,
.reminder-types,
.reward-items,
.allocation-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.tag-list {
  margin: 25px 0;
}

.tag-list span,
.reminder-types span,
.reward-items span,
.allocation-list span {
  min-width: 0;
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: #c5d6da;
  background: rgba(255, 255, 255, 0.035);
  font-size: 0.72rem;
  font-weight: 720;
  overflow-wrap: anywhere;
}

.use-cases {
  margin-bottom: 26px;
  padding: 18px 20px;
  border-left: 2px solid var(--mint);
  border-radius: 0 15px 15px 0;
  background: linear-gradient(90deg, rgba(85, 230, 189, 0.075), transparent);
}

.use-cases b {
  font-size: 0.8rem;
}

.use-cases p {
  margin: 5px 0 0;
  font-size: 0.77rem;
}

.reminders-layout {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.reminder-types {
  margin-top: 27px;
}

.calendar-card {
  min-width: 0;
  padding: clamp(22px, 4vw, 34px);
  border-radius: 30px;
  color: var(--ink);
  background:
    radial-gradient(circle at 100% 0%, rgba(120, 191, 255, 0.16), transparent 30%),
    linear-gradient(180deg, #f7fbfa, #eaf2f0);
}

.calendar-top small {
  color: #7d9197;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.calendar-top h3 {
  margin: 3px 0 0;
  color: var(--ink);
}

.calendar-top > span {
  color: #6f858b;
  font-weight: 850;
}

.week,
.dates {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  text-align: center;
}

.week {
  margin-top: 24px;
  color: #84979c;
  font-size: 0.58rem;
  font-weight: 800;
}

.dates {
  gap: 4px;
  margin-top: 9px;
}

.dates span {
  display: grid;
  min-width: 0;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 10px;
  color: #365158;
  font-size: 0.68rem;
  font-weight: 700;
}

.dates .selected {
  color: #fff;
  background: linear-gradient(135deg, #1eaf89, #138268);
  box-shadow: 0 8px 18px rgba(20, 146, 111, 0.22);
}

.event-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 11px;
  align-items: center;
  margin-top: 22px;
  padding: 13px;
  border: 1px solid #d6e4e0;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.72);
}

.event-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 11px;
  color: #fff;
  background: #1aa681;
}

.event-row b,
.event-row small {
  display: block;
  overflow-wrap: anywhere;
}

.event-row b {
  font-size: 0.68rem;
}

.event-row small {
  color: #81959b;
  font-size: 0.57rem;
}

.event-row em {
  color: #0b9279;
  font-size: 0.56rem;
  font-style: normal;
  font-weight: 800;
}

.rewards-panel {
  position: relative;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 42px;
  padding: clamp(34px, 6vw, 65px);
  overflow: hidden;
  border: 1px solid rgba(85, 230, 189, 0.22);
  border-radius: 38px;
  background:
    radial-gradient(circle at 84% 22%, rgba(85, 230, 189, 0.16), transparent 28%),
    linear-gradient(125deg, #103b48, #09232c 62%, #0c313b);
  box-shadow: var(--shadow-soft);
}

.rewards-panel::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 18px 18px;
  mask-image: linear-gradient(90deg, transparent 30%, black);
  opacity: 0.28;
}

.reward-items {
  margin: 25px 0 22px;
}

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

.reward-ring {
  position: relative;
  display: grid;
  width: 245px;
  height: 245px;
  place-content: center;
  border: 1px solid rgba(85, 230, 189, 0.38);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(85, 230, 189, 0.24), rgba(85, 230, 189, 0.035) 62%),
    rgba(5, 25, 32, 0.50);
  box-shadow: 0 0 0 22px rgba(85, 230, 189, 0.025), 0 0 75px rgba(85, 230, 189, 0.13), inset 0 0 50px rgba(85, 230, 189, 0.07);
  text-align: center;
}

.reward-ring::before {
  position: absolute;
  inset: 14px;
  content: "";
  border: 1px dashed rgba(85, 230, 189, 0.26);
  border-radius: 50%;
}

.reward-ring span {
  font-size: 3.2rem;
}

.reward-ring b {
  font-size: 2.35rem;
}

.reward-ring small {
  color: var(--muted);
}

.reward-chip {
  position: absolute;
  padding: 11px 14px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 14px;
  color: var(--ink);
  background: rgba(247, 252, 250, 0.92);
  box-shadow: var(--shadow-soft);
  font-size: 0.66rem;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.chip-one {
  top: 36px;
  left: 0;
}

.chip-two {
  right: 0;
  bottom: 48px;
}

.token-section {
  background: radial-gradient(circle at 50% 24%, rgba(120, 191, 255, 0.09), transparent 34%);
}

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

.utility-card {
  min-height: 245px;
  padding: 27px;
}

.utility-card > span {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(120, 191, 255, 0.18);
  border-radius: 14px;
  color: var(--blue);
  background: rgba(120, 191, 255, 0.08);
  font-size: 1.2rem;
}

.token-info {
  grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.7fr);
  gap: 45px;
  margin-top: 26px;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(8, 29, 37, 0.62);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.035);
}

.token-info h3 {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
}

.contract-label {
  margin: 24px 0 8px;
  color: var(--muted);
  font-size: 0.72rem;
}

.contract-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #061820;
}

.contract-row code {
  min-width: 0;
  padding: 14px;
  overflow: hidden;
  color: #b7cbd2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.contract-row button {
  padding: 0 16px;
  border: 0;
  border-left: 1px solid var(--line);
  color: var(--mint);
  background: rgba(85, 230, 189, 0.08);
  font-size: 0.7rem;
  font-weight: 800;
}

.token-links {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 15px;
}

.token-facts {
  margin: 0;
}

.token-facts div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 18px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.token-facts dt,
.token-facts dd {
  min-width: 0;
  overflow-wrap: anywhere;
}

.token-facts dt {
  color: var(--muted);
  font-size: 0.72rem;
}

.token-facts dd {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 800;
  text-align: right;
}

.token-disclaimer {
  margin-top: 17px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 158, 112, 0.14);
  border-left: 3px solid var(--coral);
  border-radius: 0 13px 13px 0;
  color: #d9e4e7;
  background: rgba(255, 158, 112, 0.055);
  font-size: 0.8rem;
}

.placeholder-panel {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 55px;
  padding: clamp(30px, 5vw, 54px);
  border: 1px dashed rgba(120, 191, 255, 0.32);
  border-radius: 34px;
  background: radial-gradient(circle at 85% 50%, rgba(120, 191, 255, 0.08), transparent 34%);
}

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

.allocation-list span {
  position: relative;
  padding-left: 35px;
}

.allocation-list span::before {
  position: absolute;
  top: 50%;
  left: 14px;
  width: 7px;
  height: 7px;
  content: "";
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 4px rgba(120, 191, 255, 0.08);
  transform: translateY(-50%);
}

.charity-layout {
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
}

.charity-art {
  display: grid;
  min-height: 420px;
  place-items: center;
}

.heart-paw {
  position: relative;
  display: grid;
  width: min(100%, 320px);
  aspect-ratio: 1.1;
  place-items: center;
  color: var(--coral);
  font-size: clamp(9rem, 18vw, 13rem);
  filter: drop-shadow(0 28px 50px rgba(255, 158, 112, 0.16));
}

.heart-paw::before,
.heart-paw::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(255, 158, 112, 0.15);
  border-radius: 50%;
}

.heart-paw::before {
  inset: 0;
}

.heart-paw::after {
  inset: 18%;
}

.heart-paw span {
  position: absolute;
  font-size: 3.7rem;
}

.muted {
  color: var(--muted);
}

.partners-section {
  background: linear-gradient(180deg, rgba(13, 41, 53, 0.2), transparent);
}

.partner-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.partner-cloud span {
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: #dce8eb;
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.78rem;
  font-weight: 720;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.partner-cloud span:hover {
  border-color: rgba(85, 230, 189, 0.3);
  transform: translateY(-2px);
}

.center-actions {
  margin-top: 30px;
  text-align: center;
}

.roadmap {
  position: relative;
  display: grid;
  gap: 12px;
}

.roadmap::before {
  position: absolute;
  top: 38px;
  bottom: 38px;
  left: 29px;
  width: 1px;
  content: "";
  background: linear-gradient(var(--mint), rgba(255, 255, 255, 0.06));
}

.roadmap-item {
  position: relative;
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  padding: 24px 28px 24px 0;
  border-bottom: 1px solid rgba(184, 225, 217, 0.075);
}

.roadmap-marker {
  position: relative;
  z-index: 2;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(85, 230, 189, 0.3);
  border-radius: 18px;
  color: var(--mint);
  background: linear-gradient(145deg, #10414d, #0a2932);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18), inset 0 1px rgba(255, 255, 255, 0.06);
  font-weight: 900;
}

.roadmap-item h3 {
  margin: 11px 0 9px;
  font-size: clamp(1.45rem, 2.5vw, 2rem);
}

.roadmap-item p {
  max-width: 870px;
  margin: 0;
}

.status {
  display: inline-flex;
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.in-progress {
  color: var(--mint);
  background: rgba(85, 230, 189, 0.12);
}

.planned {
  color: var(--blue);
  background: rgba(120, 191, 255, 0.10);
}

.live {
  color: var(--mint);
  background: rgba(85, 230, 189, 0.12);
}

.faq-wrap {
  grid-template-columns: minmax(230px, 0.48fr) minmax(0, 1.52fr);
  gap: clamp(42px, 7vw, 86px);
  align-items: start;
}

.faq-wrap .section-heading {
  position: sticky;
  top: 120px;
  margin-bottom: 0;
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  color: #eef7f5;
  cursor: pointer;
  list-style: none;
  font-weight: 780;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  display: grid;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 11px;
  color: var(--mint);
  background: rgba(255, 255, 255, 0.03);
  font-size: 1.25rem;
  transition: transform 0.2s ease, background 0.2s ease;
}

.faq-list details[open] summary span {
  background: rgba(85, 230, 189, 0.08);
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 800px;
  padding: 0 52px 20px 0;
}


/* Official PETMED destinations */
.official-links-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 12%, rgba(85, 230, 189, 0.10), transparent 28%),
    radial-gradient(circle at 84% 78%, rgba(120, 191, 255, 0.10), transparent 31%);
}

.official-links-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 15px;
  margin-top: 36px;
}

.official-link-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  min-width: 0;
  min-height: 108px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 22px;
  color: #f2f8fa;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.018)),
    rgba(5, 24, 32, 0.84);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.035);
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.official-link-card:hover {
  transform: translateY(-4px);
  border-color: rgba(85, 230, 189, 0.38);
  background:
    linear-gradient(145deg, rgba(85, 230, 189, 0.11), rgba(120, 191, 255, 0.045)),
    rgba(5, 24, 32, 0.92);
}

.official-link-card > span:nth-child(2) {
  min-width: 0;
}

.official-link-card b,
.official-link-card small {
  display: block;
  overflow-wrap: anywhere;
}

.official-link-card b {
  font-size: 0.92rem;
}

.official-link-card small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.45;
}

.official-link-icon {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(85, 230, 189, 0.24);
  border-radius: 15px;
  color: var(--mint);
  background: rgba(85, 230, 189, 0.075);
  font-size: 0.67rem;
  font-weight: 950;
  letter-spacing: 0.03em;
}

.official-link-card em {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--mint);
  font-style: normal;
  background: rgba(255, 255, 255, 0.035);
}

.final-cta {
  padding: 42px 0 110px;
}

.cta-card {
  display: flex;
  gap: 42px;
  align-items: center;
  justify-content: space-between;
  padding: clamp(34px, 6vw, 62px);
  overflow: hidden;
  border: 1px solid rgba(85, 230, 189, 0.24);
  border-radius: 38px;
  background:
    radial-gradient(circle at 84% 0%, rgba(120, 191, 255, 0.16), transparent 30%),
    linear-gradient(120deg, rgba(85, 230, 189, 0.15), rgba(120, 191, 255, 0.07));
  box-shadow: var(--shadow-soft), inset 0 1px rgba(255, 255, 255, 0.04);
}

.cta-card > div {
  min-width: 0;
}

.cta-card h2 {
  max-width: 680px;
  font-size: clamp(2.2rem, 4.4vw, 4rem);
}

.cta-card p {
  max-width: 650px;
}

.cta-card .button-row {
  max-width: 350px;
  justify-content: flex-end;
}

footer {
  padding: 68px 0 31px;
  border-top: 1px solid var(--line);
  background: #041116;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(250px, 1.45fr) repeat(3, minmax(130px, 1fr));
  gap: 48px;
}

.footer-grid > div {
  min-width: 0;
}

.footer-grid p {
  max-width: 330px;
}

.footer-grid h4 {
  margin: 7px 0 16px;
  font-size: 0.83rem;
  letter-spacing: 0.01em;
}

.footer-grid > div > a:not(.brand) {
  display: block;
  width: max-content;
  max-width: 100%;
  margin: 10px 0;
  color: var(--muted);
  font-size: 0.77rem;
  overflow-wrap: anywhere;
}

.footer-grid > div > a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  margin-top: 46px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: #7f969e;
  font-size: 0.7rem;
}

.footer-bottom > div {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-link {
  padding: 0;
  border: 0;
  color: #7f969e;
  background: none;
  font-size: 0.7rem;
}

.footer-link:hover {
  color: #fff;
}

.legal-note {
  margin-top: 19px;
  color: #698087;
  font-size: 0.65rem;
  line-height: 1.7;
}

dialog {
  width: min(560px, calc(100% - 30px));
  max-height: calc(100dvh - 30px);
  padding: 30px;
  overflow: auto;
  border: 0;
  border-radius: 25px;
  color: var(--ink);
  background: #f7fcfa;
  box-shadow: 0 35px 110px #000;
}

dialog::backdrop {
  background: rgba(0, 12, 18, 0.76);
  backdrop-filter: blur(8px);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  padding: 0;
  border: 0;
  color: #647b82;
  background: none;
  font-size: 1.8rem;
}

.modal-pet {
  display: flex;
  gap: 14px;
  align-items: center;
  padding-right: 32px;
}

.modal-pet > span {
  display: grid;
  width: 72px;
  height: 72px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 20px;
  background: #dbeee8;
  font-size: 2.6rem;
}

.modal-pet h2 {
  margin: 0;
  color: var(--ink);
  font-size: 2rem;
}

.modal-pet p {
  margin: 2px 0;
  color: #6e858c;
}

.emergency-badge {
  display: inline-flex;
  margin: 20px 0 10px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #9b4a20;
  background: #ffeadf;
  font-size: 0.66rem;
  font-weight: 850;
}

.emergency-data div {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #e1ece9;
}

.emergency-data dt {
  color: #72878e;
}

.emergency-data dd {
  margin: 0;
  font-weight: 750;
  text-align: right;
  overflow-wrap: anywhere;
}

.modal-note {
  margin: 20px 0 0;
  color: #7b9096;
  font-size: 0.68rem;
}

.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  z-index: 120;
  padding: 11px 17px;
  border-radius: 999px;
  color: var(--ink);
  background: #fff;
  box-shadow: var(--shadow-soft);
  font-size: 0.72rem;
  font-weight: 800;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 30px);
  transition: 0.25s;
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.menu-toggle,
.mobile-menu {
  display: none !important;
}

@media (max-width: 1140px) {
  .nav-wrap {
    gap: 16px;
  }

  .desktop-nav {
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .desktop-nav::-webkit-scrollbar {
    display: none;
  }

  .desktop-nav a {
    padding-inline: 11px;
  }

  .nav-actions .text-link {
    display: none;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.78fr);
    gap: 44px;
  }

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

  .feature-card:nth-child(1),
  .feature-card:nth-child(6) {
    grid-column: span 1;
  }

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

@media (max-width: 920px) {
  .official-links-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .container {
    width: min(calc(100% - 36px), var(--container));
  }

  .site-header {
    padding: 10px 0 8px;
    background: rgba(4, 15, 21, 0.80);
    border-color: var(--line);
    backdrop-filter: blur(18px) saturate(135%);
  }

  .nav-wrap {
    grid-template-columns: 1fr auto;
    gap: 9px 14px;
    min-height: auto;
  }

  .brand {
    grid-column: 1;
  }

  .nav-actions {
    grid-column: 2;
    grid-row: 1;
  }

  .nav-actions .button {
    display: inline-flex;
  }

  .desktop-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    width: 100%;
    padding: 4px 0 2px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .desktop-nav a {
    padding: 7px 11px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.035);
  }

  .hero {
    min-height: auto;
    padding-top: 78px;
  }

  .hero-grid,
  .profile-showcase,
  .two-col,
  .rewards-panel,
  .token-info,
  .placeholder-panel,
  .faq-wrap {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-copy {
    max-width: 760px;
    text-align: center;
    margin-inline: auto;
  }

  .hero-copy h1,
  .hero-lead {
    margin-inline: auto;
  }

  .hero .button-row {
    justify-content: center;
  }

  .hero-note {
    justify-content: center;
  }

  .phone-stage {
    min-height: 650px;
    margin-top: 6px;
  }

  .float-b {
    right: calc(50% - 250px);
  }

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

  .profile-showcase,
  .two-col {
    gap: 54px;
  }

  .showcase-copy {
    max-width: 720px;
  }

  .dashboard-card {
    transform: none;
  }

  .qr-visual {
    order: 2;
    min-height: 440px;
  }

  .reminders-layout > :first-child {
    max-width: 720px;
  }

  .rewards-panel {
    gap: 20px;
  }

  .rewards-copy {
    max-width: 760px;
    text-align: center;
    margin-inline: auto;
  }

  .reward-items {
    justify-content: center;
  }

  .token-info,
  .placeholder-panel {
    gap: 30px;
  }

  .faq-wrap .section-heading {
    position: static;
  }

  .cta-card {
    display: grid;
    text-align: center;
  }

  .cta-card .button-row {
    max-width: none;
    justify-content: center;
  }

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

@media (max-width: 620px) {
  .official-links-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 11px;
    margin-top: 28px;
  }

  .official-link-card {
    min-height: 94px;
    padding: 17px;
    border-radius: 19px;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(calc(100% - 26px), var(--container));
  }

  .section-pad {
    padding: 78px 0;
    scroll-margin-top: 120px;
  }

  .alt-section::before {
    inset: 8px 7px;
    border-radius: 30px;
  }

  .brand {
    font-size: 0.95rem;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .nav-actions {
    min-width: 0;
  }

  .nav-actions .button {
    min-height: 38px;
    padding-inline: 12px;
    font-size: 0.68rem;
  }

  .desktop-nav {
    gap: 6px;
  }

  .desktop-nav a {
    padding: 7px 10px;
    font-size: 0.68rem;
  }

  h1 {
    margin-top: 18px;
    font-size: clamp(3.2rem, 15vw, 4.6rem);
  }

  h2 {
    font-size: clamp(2.15rem, 10vw, 3.1rem);
  }

  .hero {
    padding-top: 55px;
  }

  .hero-lead,
  .section-heading p,
  .showcase-copy > p,
  .two-col > div > p {
    font-size: 0.98rem;
  }

  .hero .button-row,
  .cta-card .button-row {
    display: grid;
    width: 100%;
  }

  .hero .button-row > *,
  .cta-card .button-row > * {
    width: 100%;
  }

  .hero-note {
    align-items: flex-start;
    line-height: 1.45;
  }

  .phone-stage {
    min-height: 590px;
    margin-top: 0;
  }

  .phone-stage::before {
    width: 112%;
  }

  .phone {
    width: min(100%, 318px);
    border-radius: 40px;
    transform: none;
  }

  .phone-screen {
    min-height: 550px;
    border-radius: 31px;
  }

  .float-b {
    top: 126px;
    right: -2px;
    min-width: 152px;
  }

  .trust-list {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .trust-list::-webkit-scrollbar {
    display: none;
  }

  .trust-list span {
    min-width: max-content;
    padding: 16px 22px;
    scroll-snap-align: start;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .problem-grid,
  .feature-grid,
  .utility-grid,
  .allocation-list {
    grid-template-columns: minmax(0, 1fr);
  }

  .problem-card,
  .feature-card,
  .utility-card {
    min-height: auto;
  }

  .solution-banner {
    grid-template-columns: 1fr;
    padding: 30px;
  }

  .solution-art {
    justify-content: center;
  }

  .solution-art span {
    width: 64px;
    height: 64px;
    border-radius: 20px;
  }

  .dashboard-card,
  .calendar-card,
  .qr-card {
    border-radius: 24px;
  }

  .dashboard-card {
    padding: 17px;
  }

  .dashboard-card::after {
    display: none;
  }

  .dash-header {
    align-items: flex-start;
  }

  .dash-header button {
    display: none;
  }

  .tabs {
    margin-top: 17px;
  }

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

  .timeline-item {
    grid-template-columns: 8px minmax(0, 1fr);
  }

  .timeline-item em {
    display: none;
  }

  .qr-visual {
    min-height: 390px;
  }

  .qr-code {
    width: 190px;
  }

  .tag-list span,
  .reminder-types span,
  .reward-items span,
  .allocation-list span {
    flex: 1 1 140px;
  }

  .event-row {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .event-row em {
    display: none;
  }

  .rewards-panel,
  .token-info,
  .placeholder-panel,
  .cta-card {
    padding: 28px;
    border-radius: 28px;
  }

  .reward-visual {
    min-height: 310px;
  }

  .reward-ring {
    width: 210px;
    height: 210px;
  }

  .reward-chip {
    font-size: 0.6rem;
  }

  .chip-one {
    left: -5px;
  }

  .chip-two {
    right: -5px;
  }

  .contract-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .contract-row code {
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .contract-row button {
    min-height: 42px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .token-links {
    display: grid;
  }

  .token-links > * {
    width: 100%;
  }

  .token-facts div {
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  }

  .charity-art {
    min-height: 300px;
  }

  .heart-paw {
    width: 250px;
  }

  .roadmap::before {
    left: 21px;
  }

  .roadmap-item {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 17px;
    padding-right: 0;
  }

  .roadmap-marker {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  .faq-list summary {
    align-items: flex-start;
    font-size: 0.92rem;
  }

  .faq-list details p {
    padding-right: 0;
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
  }

  .footer-bottom {
    display: block;
  }

  .footer-bottom > div {
    margin-top: 13px;
  }

  dialog {
    padding: 25px 20px;
  }

  .modal-pet > span {
    width: 60px;
    height: 60px;
    font-size: 2.1rem;
  }

  .modal-pet h2 {
    font-size: 1.65rem;
  }

  .emergency-data div {
    display: grid;
    gap: 2px;
  }

  .emergency-data dd {
    text-align: left;
  }
}

@media (max-width: 380px) {
  .container {
    width: min(calc(100% - 20px), var(--container));
  }

  .nav-actions .button {
    display: none;
  }

  .nav-wrap {
    grid-template-columns: 1fr;
  }

  .desktop-nav {
    grid-column: 1;
  }

  .phone-stage {
    min-height: 560px;
  }

  .phone {
    width: 296px;
  }

  .float-b {
    right: -5px;
    min-width: 145px;
    padding: 10px;
  }

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

  .reward-chip {
    position: static;
    width: max-content;
    max-width: 100%;
    margin-top: 10px;
  }

  .reward-visual {
    align-content: center;
  }
}

@media (hover: none) {
  .problem-card:hover,
  .feature-card:hover,
  .utility-card:hover,
  .button:hover,
  .partner-cloud span:hover {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::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;
  }
}

.sync-icon {
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 12px;
  color: #06261d;
  background: linear-gradient(135deg, #9dffe4, var(--mint));
  font-size: 0.8rem;
  font-weight: 950;
}

.float-a {
  left: -30px;
  bottom: 122px;
}

@media (max-width: 920px) {
  .float-a {
    left: calc(50% - 250px);
  }
}

@media (max-width: 620px) {
  .float-a {
    bottom: 100px;
    left: -2px;
    min-width: 150px;
  }
}

@media (max-width: 380px) {
  .float-a {
    left: -5px;
    min-width: 145px;
    padding: 10px;
  }
}

/* Configurable links stay out of the layout until a real URL is available. */
[hidden],
.config-link:not([href]) {
  display: none !important;
}

.nav-wrap:not(:has(.nav-actions > :not([hidden]))) {
  grid-template-columns: auto minmax(0, 1fr);
}

.nav-actions:not(:has(> :not([hidden]))) {
  display: none;
}

@media (max-width: 920px) {
  .nav-wrap:not(:has(.nav-actions > :not([hidden]))) {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (min-width: 1141px) {
  .feature-card:nth-child(7),
  .feature-card:nth-child(8) {
    grid-column: span 2;
  }
}
