:root {
  color-scheme: light;
  --orange: #f47b0b;
  --orange-deep: #c94d00;
  --orange-soft: #fff0dc;
  --green: #0a7542;
  --green-deep: #073e29;
  --green-ink: #102c21;
  --green-soft: #dff5e9;
  --cream: #f8f3e8;
  --paper: #fffdf7;
  --ink: #17251e;
  --muted: #58675f;
  --line: #d8ddd6;
  --shadow: 10px 10px 0 rgba(7, 62, 41, 0.1);
  --font-code: "Cascadia Code", "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  color: var(--ink);
  background-color: var(--cream);
  background-image:
    linear-gradient(rgba(7, 62, 41, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 62, 41, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 8% 0%, rgba(244, 123, 11, 0.18), transparent 28rem),
    radial-gradient(circle at 100% 100%, rgba(10, 117, 66, 0.13), transparent 30rem);
  background-size: 24px 24px, 24px 24px, auto, auto;
  font-family: var(--font-code);
  -webkit-font-smoothing: antialiased;
}

button,
a {
  font: inherit;
}

a {
  color: inherit;
}

.page-shell {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 36px 20px;
}

.ambient {
  position: fixed;
  z-index: -1;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  filter: blur(4px);
  opacity: 0.14;
  pointer-events: none;
}

.ambient-orange {
  top: -190px;
  left: -170px;
  background: var(--orange);
}

.ambient-green {
  right: -200px;
  bottom: -210px;
  background: var(--green);
}

.page-card {
  width: min(100%, 780px);
  margin: 0 auto;
  padding: 34px;
  border: 2px solid var(--green-deep);
  border-radius: 18px;
  background: rgba(255, 253, 247, 0.96);
  box-shadow: var(--shadow);
}

.brand-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 22px;
  border-bottom: 1px dashed #aeb9b2;
}

.brand-mark {
  display: block;
  flex: 0 0 auto;
  width: 82px;
  height: 82px;
  overflow: hidden;
  border: 3px solid var(--orange);
  border-radius: 50%;
  background: var(--paper);
  box-shadow: 4px 4px 0 var(--green-deep);
}

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

.brand-kicker,
.brand-name,
.eyebrow,
.section-label,
.hero-copy,
.panel-copy p,
.section-heading p,
footer p {
  margin: 0;
}

.brand-kicker,
.eyebrow,
.section-label {
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-name {
  margin-top: 6px;
  color: var(--green-ink);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.035em;
}

.hero {
  padding: 48px 0 30px;
}

.hero h1 {
  max-width: 680px;
  margin: 12px 0 18px;
  color: var(--green-ink);
  font-size: clamp(2.35rem, 8vw, 4.9rem);
  line-height: 1;
  letter-spacing: -0.075em;
}

.hero h1 span {
  color: var(--orange);
  animation: cursor-blink 1.1s steps(2, start) infinite;
}

.hero-copy {
  max-width: 610px;
  color: var(--muted);
  font-size: clamp(0.94rem, 2vw, 1.05rem);
  line-height: 1.75;
}

.review-panel {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 26px;
  border: 2px solid var(--green-deep);
  border-radius: 14px;
  color: #fffdf7;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent 46%),
    var(--green-deep);
  box-shadow: 6px 6px 0 var(--orange);
}

.panel-icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border: 2px solid #fff;
  border-radius: 10px;
  background: #fff;
  font-size: 1.5rem;
  font-weight: 900;
}

.google-mark {
  color: #4285f4;
}

.review-panel .section-label {
  color: #9fe0bd;
}

.review-panel h2,
.section-heading h2 {
  margin: 6px 0 9px;
  font-size: clamp(1.3rem, 4vw, 1.75rem);
  line-height: 1.2;
  letter-spacing: -0.045em;
}

.panel-copy > p:last-child {
  color: rgba(255, 253, 247, 0.76);
  line-height: 1.6;
}

.primary-button {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  min-height: 58px;
  padding: 15px 18px;
  border: 2px solid #fff;
  border-radius: 10px;
  color: var(--green-deep);
  background: #fffdf7;
  font-weight: 800;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.primary-button:hover {
  transform: translate(-2px, -2px);
  background: var(--orange-soft);
  box-shadow: 4px 4px 0 var(--orange);
}

.setup-message {
  grid-column: 1 / -1;
  margin: 0;
  padding: 13px 15px;
  border: 1px dashed rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.07);
  line-height: 1.55;
}

.social-section {
  padding-top: 44px;
}

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

.section-heading p:last-child {
  color: var(--muted);
  line-height: 1.6;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px;
}

.social-link {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 13px;
  min-width: 0;
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.social-link:hover {
  transform: translate(-2px, -2px);
  border-color: var(--green-deep);
  box-shadow: 4px 4px 0 var(--green-soft);
}

.social-monogram {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  color: #fff;
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.instagram .social-monogram {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
}

.facebook .social-monogram {
  background: #1877f2;
  font-family: Arial, sans-serif;
  font-size: 1.45rem;
}

.tiktok .social-monogram,
.x-social .social-monogram {
  background: #111;
}

.social-link strong,
.social-link small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.social-link strong {
  color: var(--green-ink);
  font-size: 0.94rem;
}

.social-link small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.72rem;
}

.link-arrow {
  color: var(--orange-deep);
}

footer {
  padding: 30px 4px 2px;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.55;
  text-align: center;
}

[hidden] {
  display: none !important;
}

a:focus-visible,
button:focus-visible {
  outline: 4px solid rgba(244, 123, 11, 0.42);
  outline-offset: 4px;
}

@keyframes cursor-blink {
  50% {
    opacity: 0;
  }
}

@media (max-width: 640px) {
  .page-shell {
    padding: 14px;
  }

  .page-card {
    padding: 22px 18px;
    border-radius: 14px;
    box-shadow: 6px 6px 0 rgba(7, 62, 41, 0.1);
  }

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

  .brand-copy {
    min-width: 0;
  }

  .brand-kicker {
    font-size: 0.62rem;
  }

  .hero {
    padding: 38px 0 26px;
  }

  .review-panel {
    padding: 20px;
    box-shadow: 4px 4px 0 var(--orange);
  }

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

}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
