/* SEEKABOO static landing site
   No JavaScript, cookies, external fonts, analytics, or third-party embeds.
   Built to be safe for static hosting such as Cloudflare Pages. */

:root {
  --brown: #351306;
  --brown-soft: #5a2a13;
  --orange: #ff8300;
  --blue: #0b75d1;
  --sky-top: #b9f2ff;
  --sky-bottom: #fff4bd;
  --cream: #fffaf0;
  --cream-2: #fff7e6;
  --grass: #8fd24e;
  --footer-bg: #f3f9dc;
  --ink: #17110d;
  --muted: #5f5149;
  --line: #eadfcb;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(65, 38, 6, 0.14);
  --max: 1220px;
  --radius: 22px;
  --font-heading: "Arial Rounded MT Bold", "Avenir Next Rounded", "Trebuchet MS", system-ui, sans-serif;
  --font-body: "Avenir Next", "Nunito", "Segoe UI", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 16px;
  z-index: 20;
  padding: 10px 14px;
  border-radius: 12px;
  background: var(--brown);
  color: white;
  text-decoration: none;
}

.skip-link:focus {
  left: 16px;
}

.site-header {
  background: rgba(255,255,255,0.97);
  min-height: 98px;
  display: flex;
  align-items: center;
  box-shadow: 0 1px 0 rgba(53, 19, 6, 0.05);
}

.header-inner {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.logo-link {
  width: 196px;
  flex: 0 0 auto;
  text-decoration: none;
}

.logo-link img {
  width: 196px;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 58px;
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 800;
  color: #111;
}

.nav a {
  text-decoration: none;
  position: relative;
  padding: 12px 0 15px;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--orange);
}

.nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 8px;
  height: 3px;
  border-radius: 999px;
  background: var(--orange);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 565px;
  background:
    radial-gradient(circle at 79% 18%, rgba(255,255,255,0.75) 0 10%, transparent 24%),
    linear-gradient(180deg, var(--sky-top) 0%, #d8f8ff 48%, var(--sky-bottom) 100%);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.hero::before {
  left: -10%;
  right: -10%;
  bottom: -92px;
  height: 250px;
  background:
    radial-gradient(65% 70% at 30% 24%, rgba(125, 205, 64, .95), transparent 68%),
    radial-gradient(60% 70% at 78% 12%, rgba(148, 218, 86, .9), transparent 69%),
    linear-gradient(180deg, rgba(164,220,85,0.82), rgba(123,198,67,0.95));
  border-radius: 52% 48% 0 0 / 60% 60% 0 0;
}

.hero::after {
  left: 0;
  bottom: 0;
  width: 260px;
  height: 240px;
  background:
    radial-gradient(circle at 28% 60%, #ff8c19 0 18px, transparent 19px),
    radial-gradient(circle at 52% 50%, #ffcb31 0 16px, transparent 17px),
    radial-gradient(circle at 42% 78%, #ffffff 0 12px, transparent 13px),
    radial-gradient(ellipse at 13% 65%, #76bf3d 0 16px, transparent 17px),
    radial-gradient(ellipse at 18% 46%, #8fce59 0 18px, transparent 19px),
    radial-gradient(ellipse at 3% 78%, #6db33a 0 22px, transparent 23px);
  opacity: 0.93;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 44px));
  min-height: 565px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(390px, 520px) minmax(420px, 1fr);
  align-items: center;
  gap: 32px;
}

.hero-copy {
  padding: 34px 0 54px;
  position: relative;
  z-index: 3;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px 10px 14px;
  border-radius: 13px;
  background: rgba(255, 255, 255, .78);
  color: var(--blue);
  font-family: var(--font-heading);
  font-size: 16px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: .01em;
  text-transform: uppercase;
  box-shadow: 0 5px 14px rgba(23, 131, 195, .08);
}

.eyebrow .star {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  color: #ffc526;
  filter: drop-shadow(0 2px 2px rgba(160, 111, 0, .24));
  font-size: 23px;
  line-height: 1;
}

.hero h1 {
  margin: 22px 0 18px;
  max-width: 530px;
  color: var(--brown);
  font-family: var(--font-heading);
  font-size: clamp(46px, 4.25vw, 63px);
  line-height: 1.09;
  letter-spacing: -0.035em;
  font-weight: 900;
}

.hero h1 .orange {
  color: var(--orange);
}

.hero p {
  margin: 0 0 30px;
  max-width: 490px;
  font-size: 22px;
  line-height: 1.36;
  font-weight: 500;
  color: #1c1510;
}

.app-store-link {
  display: inline-block;
  width: 265px;
  border-radius: 14px;
  box-shadow: 0 8px 18px rgba(30, 22, 12, .16);
  transition: transform .18s ease, box-shadow .18s ease;
}

.app-store-link:hover,
.app-store-link:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 13px 25px rgba(30, 22, 12, .20);
  outline: none;
}

.hero-art-wrap {
  position: relative;
  align-self: end;
  min-height: 555px;
}

.hero-art {
  position: absolute;
  width: min(825px, 68vw);
  right: -78px;
  bottom: 0;
  border: 0;
  mix-blend-mode: normal;
}

.benefits {
  position: relative;
  z-index: 2;
  background: linear-gradient(180deg, #fff9ed 0%, #fffdf7 100%);
  padding: 25px 0 55px;
}

.benefits-inner {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
}

.section-title {
  margin: 0 0 25px;
  text-align: center;
  color: var(--brown);
  font-family: var(--font-heading);
  font-size: clamp(28px, 2.3vw, 36px);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: stretch;
  background: rgba(255,255,255,0.3);
}

.benefit-card {
  min-height: 126px;
  display: grid;
  grid-template-columns: 66px 1fr;
  gap: 18px;
  padding: 16px 22px 10px 0;
  position: relative;
}

.benefit-card + .benefit-card {
  padding-left: 24px;
  border-left: 1px solid var(--line);
}

.icon-bubble {
  width: 58px;
  height: 58px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: white;
  box-shadow: inset 0 -4px 0 rgba(0,0,0,.07), 0 7px 13px rgba(46, 30, 10, .11);
}

.icon-bubble svg {
  width: 34px;
  height: 34px;
}

.green { background: #8ed342; }
.blue { background: #1f98e9; }
.purple { background: #a65eea; }
.orange-bg { background: #ffa126; }
.pink { background: #ff86ad; }

.benefit-card h3 {
  margin: 6px 0 8px;
  color: #2d1308;
  font-family: var(--font-heading);
  font-size: 16.5px;
  line-height: 1.08;
  letter-spacing: -0.01em;
}

.benefit-card p {
  margin: 0;
  color: #2f2824;
  font-size: 15px;
  line-height: 1.48;
  font-weight: 500;
}

.privacy-strip {
  background: #fff6d9;
  border-top: 1px solid rgba(255, 174, 0, .22);
  border-bottom: 1px solid rgba(255, 174, 0, .22);
  padding: 22px 0;
}

.privacy-strip-inner {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--brown);
  font-size: 18px;
  line-height: 1.45;
}

.privacy-strip strong {
  font-family: var(--font-heading);
}

.story {
  background: #fffdf7;
  padding: 62px 0 72px;
}

.story-card {
  width: min(980px, calc(100% - 44px));
  margin: 0 auto;
  padding: clamp(28px, 4vw, 48px);
  border-radius: 30px;
  background:
    radial-gradient(circle at 95% 12%, rgba(255, 196, 42, .19), transparent 25%),
    linear-gradient(180deg, #ffffff, #fff7e5);
  box-shadow: var(--shadow);
  border: 1px solid rgba(234, 204, 143, .55);
}

.story-card h2 {
  margin: 0 0 15px;
  color: var(--brown);
  font-family: var(--font-heading);
  font-size: clamp(30px, 3vw, 42px);
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.story-card p {
  margin: 0 0 16px;
  color: #30231b;
  font-size: 19px;
  line-height: 1.58;
}

.story-card p:last-child {
  margin-bottom: 0;
}

.page-main {
  background: #fffdf7;
}

.page-hero {
  padding: 64px 0 52px;
  background:
    radial-gradient(circle at 84% 14%, rgba(255, 218, 95, .32), transparent 18%),
    linear-gradient(180deg, #c6f4ff 0%, #fff6d5 100%);
}

.page-hero-inner,
.content-wrap {
  width: min(920px, calc(100% - 44px));
  margin: 0 auto;
}

.page-hero .eyebrow {
  margin-bottom: 22px;
}

.page-hero h1 {
  margin: 0 0 15px;
  color: var(--brown);
  font-family: var(--font-heading);
  font-size: clamp(42px, 5vw, 62px);
  line-height: 1.06;
  letter-spacing: -0.035em;
}

.page-hero p {
  margin: 0;
  max-width: 780px;
  font-size: 21px;
  line-height: 1.48;
  color: #2d2119;
}

.content-section {
  padding: 48px 0 72px;
}

.policy-card,
.support-card {
  background: white;
  border-radius: 24px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(234, 204, 143, .5);
  padding: clamp(28px, 5vw, 52px);
}

.policy-card h2,
.support-card h2 {
  margin: 30px 0 11px;
  color: var(--brown);
  font-family: var(--font-heading);
  font-size: 27px;
  line-height: 1.15;
  letter-spacing: -.02em;
}

.policy-card h2:first-child,
.support-card h2:first-child {
  margin-top: 0;
}

.policy-card p,
.support-card p,
.policy-card li,
.support-card li {
  color: #30231b;
  font-size: 17.5px;
  line-height: 1.63;
}

.policy-card p,
.support-card p {
  margin: 0 0 15px;
}

.policy-card ul,
.support-card ul {
  margin: 0 0 18px 22px;
  padding: 0;
}

.policy-card li,
.support-card li {
  margin: 6px 0;
}

.notice {
  padding: 20px 22px;
  border-radius: 18px;
  background: #fff6d9;
  border: 1px solid rgba(255, 174, 0, .26);
  color: var(--brown);
  font-size: 18px;
  line-height: 1.55;
}

.contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 8px;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--orange);
  color: white;
  font-family: var(--font-heading);
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 11px 22px rgba(255, 131, 0, .25);
}

.contact-button:hover,
.contact-button:focus-visible {
  background: #ef7400;
}

.site-footer {
  background: var(--footer-bg);
  border-top: 1px solid rgba(101, 143, 41, .12);
  min-height: 93px;
  display: flex;
  align-items: center;
}

.footer-inner {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 28px;
  min-width: 0;
}

.footer-logo {
  width: 140px;
  flex: 0 0 auto;
}

.copyright {
  color: #5a5a4e;
  font-size: 14px;
  line-height: 1.4;
}

.footer-links {
  display: flex;
  gap: 54px;
  font-size: 15px;
  font-weight: 650;
}

.footer-links a {
  color: #201a16;
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--orange);
}

@media (max-width: 1040px) {
  .hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 52px;
  }

  .hero-copy {
    max-width: 620px;
    padding: 0 0 20px;
  }

  .hero-art-wrap {
    min-height: 430px;
  }

  .hero-art {
    width: min(825px, 100vw);
    right: 50%;
    transform: translateX(50%);
  }

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

  .benefit-card,
  .benefit-card + .benefit-card {
    border-left: 0;
    padding: 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, .72);
  }
}

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

  .header-inner {
    width: min(100% - 28px, var(--max));
    align-items: center;
    flex-direction: column;
    gap: 8px;
  }

  .logo-link,
  .logo-link img {
    width: 176px;
  }

  .nav {
    gap: 26px;
    font-size: 15px;
  }

  .hero-inner,
  .benefits-inner,
  .privacy-strip-inner,
  .footer-inner {
    width: min(100% - 30px, var(--max));
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    padding-top: 36px;
  }

  .eyebrow {
    font-size: 13px;
    padding: 9px 13px 9px 11px;
  }

  .hero h1 {
    font-size: clamp(39px, 11vw, 50px);
  }

  .hero p {
    font-size: 19px;
  }

  .app-store-link {
    width: 235px;
  }

  .hero-art-wrap {
    min-height: 315px;
  }

  .hero-art {
    width: 560px;
    right: -104px;
    transform: none;
  }

  .benefits {
    padding-top: 34px;
  }

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

  .benefit-card {
    grid-template-columns: 62px 1fr;
  }

  .story {
    padding: 42px 0 52px;
  }

  .story-card {
    width: min(100% - 30px, 980px);
  }

  .page-hero-inner,
  .content-wrap {
    width: min(100% - 30px, 920px);
  }

  .footer-inner,
  .footer-brand {
    flex-direction: column;
    text-align: center;
  }

  .footer-inner {
    padding: 26px 0;
  }

  .footer-brand {
    gap: 12px;
  }

  .footer-links {
    gap: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

/* V2 homepage fidelity pass
   The original homepage mockup uses one continuous illustrated hero image. This version
   keeps that hero as a single asset so the left copy area and Spotto scene no longer
   look like two separate art styles stitched together. */

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.hero-image-version {
  min-height: 0;
  padding: 0;
  overflow: hidden;
  background: #c7f6ff;
}

.hero-image-version::before,
.hero-image-version::after {
  display: none;
}

.hero-banner {
  position: relative;
  width: 100%;
  margin: 0 auto;
  background: #c7f6ff;
}

.hero-banner-image {
  display: block;
  width: 100%;
  height: auto;
}

.hero-app-hotspot {
  position: absolute;
  left: 10.6%;
  top: 68.7%;
  width: 17.1%;
  height: 14.9%;
  min-width: 160px;
  min-height: 50px;
  border-radius: 12px;
  text-decoration: none;
}

.hero-app-hotspot:focus-visible {
  outline: 4px solid rgba(255, 131, 0, 0.78);
  outline-offset: 4px;
}

@media (min-width: 761px) {
  .benefit-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
    gap: 0 !important;
    background: rgba(255,255,255,0.3) !important;
  }

  .benefit-card,
  .benefit-card + .benefit-card {
    min-height: 126px !important;
    display: grid !important;
    grid-template-columns: 66px 1fr !important;
    gap: 18px !important;
    padding: 16px 22px 10px 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    border-left: 0 !important;
  }

  .benefit-card + .benefit-card {
    padding-left: 24px !important;
    border-left: 1px solid var(--line) !important;
  }
}

@media (max-width: 980px) and (min-width: 761px) {
  .benefits-inner {
    width: min(100% - 32px, var(--max));
  }

  .benefit-card,
  .benefit-card + .benefit-card {
    grid-template-columns: 48px 1fr !important;
    gap: 12px !important;
    padding-right: 14px !important;
  }

  .benefit-card + .benefit-card {
    padding-left: 14px !important;
  }

  .icon-bubble {
    width: 46px;
    height: 46px;
  }

  .icon-bubble svg {
    width: 28px;
    height: 28px;
  }

  .benefit-card h3 {
    font-size: 13.2px;
    line-height: 1.08;
    margin-top: 3px;
  }

  .benefit-card p {
    font-size: 12.8px;
    line-height: 1.42;
  }
}

@media (max-width: 720px) {
  .hero-banner-image {
    height: 520px;
    object-fit: cover;
    object-position: 31% center;
  }

  .hero-app-hotspot {
    left: 10.6%;
    top: 68.5%;
    width: 235px;
    height: 74px;
    min-width: 0;
    min-height: 0;
  }
}

@media (max-width: 430px) {
  .hero-banner-image {
    height: 480px;
    object-position: 28% center;
  }

  .hero-app-hotspot {
    width: 205px;
    height: 64px;
  }
}


/* V3 privacy policy formatting from uploaded policy document. */
.policy-wide {
  width: min(1040px, calc(100% - 44px));
}

.policy-document {
  overflow-wrap: anywhere;
}

.policy-document .policy-updated {
  color: var(--muted);
  font-size: 16.5px;
  margin-bottom: 24px;
}

.policy-card h3,
.support-card h3 {
  margin: 24px 0 9px;
  color: var(--brown);
  font-family: var(--font-heading);
  font-size: 22px;
  line-height: 1.18;
  letter-spacing: -.015em;
}

.policy-card h4,
.support-card h4 {
  margin: 20px 0 8px;
  color: var(--brown-soft);
  font-family: var(--font-heading);
  font-size: 18.5px;
  line-height: 1.2;
  letter-spacing: -.01em;
}

.policy-document ul {
  margin-bottom: 20px;
}

.policy-document a {
  color: var(--blue);
  font-weight: 700;
}

.policy-document a:hover,
.policy-document a:focus-visible {
  color: var(--orange);
}

@media (max-width: 720px) {
  .policy-wide {
    width: min(100% - 30px, 1040px);
  }

  .policy-card p,
  .support-card p,
  .policy-card li,
  .support-card li {
    font-size: 16.5px;
    line-height: 1.62;
  }
}

/* V5 mobile hero update
   Narrow screens use a dedicated vertical hero image made from the same SEEKABOO artwork.
   Wider screens continue to use the original wide hero image. */
.hero-banner-picture {
  display: block;
}

@media (max-width: 720px) {
  .hero-banner-image {
    width: 100%;
    height: auto !important;
    object-fit: contain !important;
    object-position: center center !important;
  }

  .hero-app-hotspot {
    left: 10.6%;
    top: 68.7%;
    width: 17.1%;
    height: 14.9%;
    min-width: 0;
    min-height: 0;
  }
}

@media (max-width: 640px) {
  .hero-app-hotspot {
    left: 11%;
    top: 40.2%;
    width: 41%;
    height: 10.1%;
  }
}


/* V8 terms page update: allow the four-link nav to wrap cleanly on narrow screens. */
@media (max-width: 720px) {
  .nav,
  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 2px;
  }
}
