:root {
  --aqua: #eaf9fb;
  --aqua-strong: #ccebf1;
  --yellow: #fff0b8;
  --dotzilla-red: #cc0001;
  --petrol: #0e4d50;
  --petrol-dark: #08383a;
  --orange: #ff960d;
  --coral: #ef6b63;
  --mint: #50b8a8;
  --ink: #102426;
  --muted: #5a7376;
  --line: rgba(14, 77, 80, 0.16);
  --white: #ffffff;
  --shadow: 0 16px 42px rgba(14, 77, 80, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  max-width: 100%;
  overflow-x: clip;
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--aqua);
  line-height: 1.5;
}

@supports not (overflow-x: clip) {
  html,
  body {
    overflow-x: hidden;
  }
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  background: rgba(234, 249, 251, 0.86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 210px;
  font-weight: 800;
  color: var(--petrol);
  letter-spacing: 0;
}

.brand img {
  width: 148px;
  height: auto;
}

.brand span {
  padding: 7px 13px 8px;
  border-radius: 999px;
  background: var(--dotzilla-red);
  color: var(--white);
  font-size: 14px;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: nowrap;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
}

.main-nav a {
  padding: 9px 14px;
  border-radius: 999px;
  color: var(--petrol);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  background: var(--yellow);
}

.header-cta,
.button,
.price-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 800;
}

.header-cta,
.button.primary,
.price-card a,
.price-card.featured a {
  background: var(--dotzilla-red);
  color: var(--white);
  box-shadow: 0 10px 22px rgba(204, 0, 1, 0.18);
}

.button.secondary {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--petrol);
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(360px, 0.97fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: calc(100vh - 82px);
  padding: 74px 0 84px;
}

.hero::before,
.hero::after,
.final-cta::before {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 999px;
}

.hero::before {
  width: min(56vw, 760px);
  height: min(56vw, 760px);
  right: -28vw;
  top: -15vw;
  background: var(--yellow);
}

.hero::after {
  width: min(48vw, 620px);
  height: min(48vw, 620px);
  right: 12vw;
  bottom: -20vw;
  background: rgba(204, 235, 241, 0.82);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--petrol);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  color: var(--petrol);
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  color: var(--petrol);
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  color: var(--petrol-dark);
  font-size: 23px;
  line-height: 1.1;
}

.lead {
  max-width: 680px;
  color: var(--petrol-dark);
  font-size: clamp(18px, 1.65vw, 22px);
  font-weight: 650;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.dashboard {
  position: relative;
  padding: 24px;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
}

.dashboard::before {
  content: "";
  position: absolute;
  inset: -26px -18px auto auto;
  width: 160px;
  height: 160px;
  border-radius: 60px;
  background: linear-gradient(140deg, var(--mint), var(--dotzilla-red));
  opacity: 0.72;
  z-index: -1;
}

.dashboard-tabs {
  display: flex;
  gap: 6px;
  padding: 6px;
  border-radius: 999px;
  background: var(--petrol);
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
}

.dashboard-tabs button {
  flex: 1;
  padding: 10px 8px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  text-align: center;
}

.dashboard-tabs button:focus-visible {
  outline: 3px solid rgba(204, 0, 1, 0.35);
  outline-offset: 2px;
}

.dashboard-tabs .active {
  background: var(--white);
  color: var(--petrol);
}

.dashboard-card {
  margin-top: 22px;
  padding: 26px;
  border-radius: 26px;
  background: linear-gradient(135deg, var(--aqua), var(--yellow));
}

.dashboard-note {
  min-height: 48px;
  margin: 14px 0 0;
  color: var(--muted);
  font-weight: 750;
}

.dashboard-card.large {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.dashboard-card small,
.metric-card span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.dashboard-card strong {
  display: block;
  color: var(--petrol);
  font-size: 32px;
}

.status {
  padding: 10px 18px;
  border-radius: 999px;
  color: var(--white);
  font-weight: 900;
}

.status.online {
  background: var(--orange);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 12px;
}

.metric-card {
  min-height: 130px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--white);
}

.metric-card strong {
  display: block;
  color: var(--petrol);
  font-size: 30px;
}

.intro,
.benefits,
.final-cta {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
  padding: 78px 0;
}

.growth-path p,
.section-heading p,
.benefit-copy p,
.final-cta p {
  color: var(--muted);
  font-size: 18px;
}

.growth-path {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.growth-path article {
  position: relative;
  min-height: 230px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.72);
}

.growth-path article::after {
  content: "";
  position: absolute;
  right: -36px;
  bottom: -42px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--aqua-strong);
}

.growth-path article:nth-child(2)::after {
  background: var(--yellow);
}

.growth-path article:nth-child(3)::after {
  background: rgba(204, 0, 1, 0.14);
}

.growth-path span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 26px;
  border-radius: 50%;
  background: var(--petrol);
  color: var(--white);
  font-weight: 900;
}

.growth-path h3 {
  margin-bottom: 12px;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.packages,
.feature-band,
.addons,
.google-feed {
  padding: 82px 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.price-card,
.feature-grid article,
.addon-grid article {
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 30px rgba(14, 77, 80, 0.07);
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 430px;
  padding: 26px;
}

.price-card.featured {
  border: 2px solid var(--dotzilla-red);
  background: var(--white);
  transform: translateY(-12px);
}

.badge {
  align-self: flex-start;
  margin-bottom: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--petrol);
  font-size: 13px;
  font-weight: 900;
}

.card-top {
  min-height: 124px;
}

.price-card p {
  color: var(--muted);
}

.price-card ul {
  display: grid;
  gap: 13px;
  margin: 18px 0 26px;
  padding: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 24px;
  color: var(--ink);
}

.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--mint);
}

.price-card a {
  margin-top: auto;
}

.feature-band {
  position: relative;
}

.feature-grid,
.addon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.feature-grid article,
.addon-grid article {
  padding: 26px;
}

.feature-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 34px;
  border-radius: 50%;
  background: var(--petrol);
  color: var(--white);
  font-weight: 900;
}

.feature-grid p,
.addon-grid p {
  color: var(--muted);
}

.benefits {
  width: 100%;
  max-width: none;
  padding-inline: max(20px, calc((100vw - 1180px) / 2));
  background: var(--yellow);
}

.benefit-list {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 12px;
}

.benefit-list div {
  flex: 0 1 auto;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--petrol);
  font-weight: 850;
}

.addon-grid {
  grid-template-columns: repeat(3, 1fr);
}

.google-feed {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
}

.feed-copy p {
  color: var(--muted);
  font-size: 18px;
}

.feed-points {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.feed-points div {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
}

.feed-points strong,
.feed-points span {
  display: block;
}

.feed-points strong {
  color: var(--petrol);
  font-size: 18px;
}

.feed-points span {
  margin-top: 4px;
  color: var(--muted);
}

.google-feed {
  display: block;
}

.feed-heading {
  max-width: 980px;
}

.hamster-scene {
  position: relative;
  min-height: 850px;
  margin-top: 30px;
  padding: 34px;
  overflow: hidden;
  border-radius: 42px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(234, 249, 251, 0.82));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hamster-scene::before,
.hamster-scene::after {
  content: "";
  position: absolute;
  z-index: 0;
  border-radius: 999px;
  pointer-events: none;
}

.hamster-scene::before {
  right: -230px;
  top: -230px;
  width: 660px;
  height: 660px;
  background: rgba(204, 235, 241, 0.76);
}

.hamster-scene::after {
  right: 92px;
  bottom: 82px;
  width: 170px;
  height: 170px;
  background: rgba(204, 235, 241, 0.62);
}

.thought-card {
  position: absolute;
  z-index: 6;
  width: 292px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  border: 3px solid var(--petrol);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  font-size: 17px;
  font-weight: 900;
  line-height: 1.14;
  text-align: center;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.thought-top {
  left: 50%;
  top: 28px;
  transform: translateX(-50%);
}

.thought-left-top {
  left: 64px;
  top: 118px;
}

.thought-left-mid {
  left: 26px;
  top: 292px;
}

.thought-left-low {
  left: 26px;
  top: 466px;
}

.thought-left-bottom {
  left: 64px;
  bottom: 116px;
}

.thought-right-top {
  right: 64px;
  top: 118px;
}

.thought-right-mid {
  right: 26px;
  top: 262px;
}

.thought-right-low {
  right: 26px;
  top: 436px;
}

.thought-right-bottom {
  right: 64px;
  bottom: 126px;
}

.thought-bottom {
  left: 50%;
  bottom: 42px;
  transform: translateX(-50%);
}

.wheel-stage {
  position: absolute;
  left: 50%;
  top: 49%;
  z-index: 2;
  width: 420px;
  height: 420px;
  transform: translate(-50%, -50%);
}

.wheel-base {
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: -34px;
  z-index: 1;
  height: 18px;
  border-radius: 999px;
  background: rgba(14, 77, 80, 0.22);
}

.wheel-leg {
  position: absolute;
  bottom: -36px;
  z-index: 1;
  width: 10px;
  height: 58px;
  border-radius: 999px;
  background: rgba(14, 77, 80, 0.22);
  transform-origin: top center;
}

.wheel-leg-left {
  left: 22%;
  transform: rotate(20deg);
}

.wheel-leg-right {
  right: 22%;
  transform: rotate(-20deg);
}

.wheel-motion {
  position: absolute;
  inset: 0;
  z-index: 2;
  border: 20px solid var(--petrol);
  border-radius: 50%;
  animation: wheel-spin 9s linear infinite;
}

.wheel-ring {
  position: absolute;
  inset: 22px;
  border: 4px solid rgba(14, 77, 80, 0.22);
  border-radius: 50%;
}

.wheel-hub {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--petrol);
  box-shadow: 0 0 0 10px rgba(14, 77, 80, 0.16);
  transform: translate(-50%, -50%);
}

.spoke {
  position: absolute;
  left: 50%;
  top: 50%;
  width: calc(100% - 42px);
  height: 10px;
  border-radius: 999px;
  background: rgba(14, 77, 80, 0.35);
  transform-origin: center;
}

.spoke-one {
  transform: translate(-50%, -50%) rotate(0deg);
}

.spoke-two {
  transform: translate(-50%, -50%) rotate(60deg);
}

.spoke-three {
  transform: translate(-50%, -50%) rotate(120deg);
}

.google-feed .feed-points {
  grid-template-columns: repeat(3, 1fr);
}

.feed-solution {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 22px 0 0;
  padding: 0 4px 0 0;
}

.feed-solution::before {
  content: "";
  width: 48px;
  height: 6px;
  border-radius: 999px;
  background: var(--dotzilla-red);
  flex: 0 0 auto;
}

.feed-solution span {
  color: var(--dotzilla-red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.feed-solution strong {
  color: var(--petrol);
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.08;
}

.feed-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.feed-actions .button {
  min-height: 48px;
}

@keyframes wheel-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.final-cta {
  position: relative;
  overflow: hidden;
  margin-bottom: 54px;
  padding: clamp(34px, 6vw, 72px);
  border-radius: 42px;
  background: var(--petrol);
  color: var(--white);
}

.final-cta::before {
  width: 420px;
  height: 420px;
  right: -120px;
  bottom: -210px;
  background: linear-gradient(140deg, var(--orange), var(--dotzilla-red));
  opacity: 0.86;
}

.final-cta h2,
.final-cta .eyebrow {
  color: var(--white);
}

.final-cta p {
  color: rgba(255, 255, 255, 0.78);
}

address {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  padding: 28px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.12);
  font-style: normal;
}

address strong {
  margin-bottom: 8px;
  font-size: 20px;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 26px 0 42px;
  color: var(--muted);
  font-weight: 800;
}

footer a {
  color: var(--petrol);
}

@media (max-width: 980px) {
  .site-header {
    flex-wrap: wrap;
  }

  .main-nav {
    order: 3;
    width: 100%;
    overflow-x: auto;
    justify-content: flex-start;
  }

  .hero,
  .intro,
  .benefits,
  .google-feed,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
    padding-top: 46px;
  }

  .pricing-grid,
  .feature-grid,
  .growth-path {
    grid-template-columns: repeat(2, 1fr);
  }

  .addon-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .price-card.featured {
    transform: none;
  }

  .hamster-scene {
    min-height: 720px;
    padding: 24px;
  }

  .thought-card {
    width: 220px;
    height: 82px;
    font-size: 14px;
  }

  .thought-left-top,
  .thought-left-mid,
  .thought-left-low {
    left: 24px;
  }

  .thought-left-bottom {
    left: 42px;
  }

  .thought-right-top,
  .thought-right-mid,
  .thought-right-low {
    right: 24px;
  }

  .thought-right-bottom {
    right: 42px;
  }

  .thought-bottom {
    width: 220px;
  }

  .wheel-stage {
    width: 340px;
    height: 340px;
  }

  .google-feed .feed-points {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 14px 20px;
  }

  .brand {
    min-width: 0;
    gap: 10px;
  }

  .brand img {
    width: 118px;
  }

  .header-cta {
    min-height: 40px;
    padding-inline: 14px;
  }

  .main-nav {
    gap: 0;
    justify-content: stretch;
    overflow-x: visible;
  }

  .main-nav a {
    flex: 1;
    padding-inline: 8px;
    font-size: 13px;
    text-align: center;
  }

  h1 {
    font-size: 40px;
  }

  .dashboard,
  .price-card,
  .feature-grid article,
  .addon-grid article {
    border-radius: 24px;
  }

  .metric-grid,
  .pricing-grid,
  .feature-grid,
  .addon-grid,
  .growth-path,
  .benefit-list {
    grid-template-columns: 1fr;
  }

  .dashboard-card.large {
    align-items: flex-start;
    flex-direction: column;
  }

  .hamster-scene {
    display: grid;
    min-height: 0;
    padding: 18px;
    border-radius: 28px;
  }

  .thought-card {
    position: static;
    width: 100%;
    height: auto;
    min-height: 64px;
    padding: 13px 14px;
    border-width: 2px;
    font-size: 15px;
    transform: none;
  }

  .wheel-stage {
    position: relative;
    left: auto;
    top: auto;
    order: -1;
    width: min(270px, 100%);
    height: auto;
    aspect-ratio: 1;
    margin: 20px auto 74px;
    transform: none;
  }

  .wheel-motion {
    border-width: 14px;
  }

  .feed-solution {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    margin-top: 18px;
  }

  .card-top {
    min-height: auto;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
}
