:root {
  --ink: #24313d;
  --muted: #64707a;
  --paper: #fffdf8;
  --line: #e7e1d8;
  --teal: #0f9a9a;
  --teal-dark: #087071;
  --coral: #ff6d5f;
  --sun: #ffd45a;
  --mint: #bcebdc;
  --sky: #bce2ff;
  --leaf: #66b875;
  --rose: #ffb8cf;
  --violet: #a894f5;
  --shadow: 0 18px 45px rgba(47, 59, 68, .14);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 54px);
  background: rgba(255, 253, 248, .92);
  border-bottom: 1px solid rgba(231, 225, 216, .8);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  min-width: 42px;
  height: 42px;
  place-items: center;
  padding: 0 12px;
  border-radius: 8px;
  background: var(--teal);
  color: white;
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  font-size: 1.35rem;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(15, 154, 154, .25);
}

.globion-logo {
  min-width: 96px;
  background: #d7282f;
  font-size: 1.05rem;
  letter-spacing: .03em;
}

.brand strong,
h1,
h2,
h3 {
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  line-height: 1;
}

.brand strong {
  display: block;
  font-size: 1rem;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: .72rem;
}

.main-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(14px, 2.5vw, 34px);
  color: #45525d;
  font-weight: 700;
  font-size: .95rem;
}

.main-nav a:hover {
  color: var(--teal-dark);
}

.nav-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.nav-action,
.button.primary {
  background: var(--teal);
  color: white;
  box-shadow: 0 12px 24px rgba(15, 154, 154, .24);
}

.button.secondary {
  background: white;
  border: 1px solid var(--line);
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  min-height: calc(100vh - 72px);
  padding: clamp(42px, 6vw, 78px) clamp(18px, 5vw, 72px) 52px;
  background:
    radial-gradient(circle at 90% 12%, rgba(255, 212, 90, .38), transparent 24%),
    linear-gradient(135deg, #fffdf8 0%, #ecfbf4 58%, #fff4eb 100%);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal-dark);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

h1 {
  max-width: 690px;
  margin: 0;
  font-size: clamp(3rem, 7vw, 6.9rem);
  letter-spacing: 0;
}

.hero-text {
  max-width: 560px;
  margin: 24px 0 0;
  color: #46545e;
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 32px 0 0;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.trust-row span {
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .68);
  border: 1px solid rgba(231, 225, 216, .8);
  color: #4e5c66;
  font-weight: 800;
  font-size: .9rem;
}

.hero-stage {
  position: relative;
  min-height: 590px;
}

.hero-stage::before {
  content: "";
  position: absolute;
  inset: 8% 6% 10% 3%;
  border-radius: 42px;
  background: white;
  box-shadow: var(--shadow);
}

.hero-main {
  position: absolute;
  inset: 2% 8% auto 0;
  width: min(720px, 92%);
  margin: auto;
  filter: drop-shadow(0 24px 26px rgba(55, 76, 90, .18));
}

.hero-float {
  position: absolute;
  width: clamp(130px, 18vw, 220px);
  border: 10px solid white;
  border-radius: 26px;
  background: white;
  box-shadow: var(--shadow);
}

.float-one {
  right: 1%;
  bottom: 8%;
}

.float-two {
  left: 0;
  bottom: 3%;
}

.quick-paths {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding: 18px clamp(18px, 5vw, 72px);
  background: #f8fbf4;
  border-block: 1px solid var(--line);
}

.quick-paths a {
  display: grid;
  gap: 6px;
  min-height: 132px;
  padding: 22px;
  border-radius: 8px;
  background: white;
  border: 1px solid var(--line);
}

.quick-paths strong {
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  font-size: 1.35rem;
}

.quick-paths span {
  color: var(--muted);
}

.section {
  padding: clamp(54px, 7vw, 96px) clamp(18px, 5vw, 72px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 30px;
}

h2 {
  margin: 0;
  font-size: clamp(2.1rem, 4vw, 4.2rem);
}

.section-heading p:not(.eyebrow),
.section-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, .7fr);
  align-items: center;
  gap: 34px;
  background: white;
}

.partner-panel {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  padding: 18px;
  border-radius: 8px;
  background: #fff8e1;
  border: 1px solid #f0d98b;
}

.partner-panel img {
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: 8px;
  background: white;
}

.partner-panel strong,
.partner-panel span {
  display: block;
}

.partner-panel strong {
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  font-size: 1.45rem;
}

.partner-panel span {
  color: #6a5a28;
}

.partner-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: 14px;
  padding: 0 16px;
  border-radius: 999px;
  background: #25313a;
  color: white;
  font-size: .9rem;
  font-weight: 800;
}

.partner-link:hover {
  background: var(--teal-dark);
}

.inline-link {
  margin-top: 14px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.product-card {
  display: grid;
  grid-template-rows: 260px minmax(190px, 1fr);
  overflow: hidden;
  border-radius: 8px;
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 10px 24px rgba(48, 59, 68, .08);
  min-height: 470px;
}

.product-card.feature {
  grid-column: span 2;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  grid-template-rows: auto;
}

.model-grid .product-card.feature {
  grid-column: auto;
  grid-template-columns: none;
  grid-template-rows: 260px minmax(190px, 1fr);
}

.product-image {
  display: grid;
  place-items: center;
  height: 260px;
  min-height: 260px;
  padding: 18px;
  background: linear-gradient(135deg, #e9fbf7, #fff5df);
}

.product-image img {
  width: auto;
  height: auto;
  max-width: 86%;
  max-height: 86%;
  object-fit: contain;
}

.model-grid .product-image,
.camera-grid .product-image,
.joycat-grid .product-image {
  height: 260px;
  min-height: 260px;
  padding: 16px;
}

.model-grid .product-image img,
.camera-grid .product-image img,
.joycat-grid .product-image img {
  width: auto;
  height: auto;
  max-width: 86%;
  max-height: 86%;
  object-fit: contain;
}

.product-info {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 20px;
  background: white;
}

.badge {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--mint);
  color: #116b5f;
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.badge.green { background: #dff1c4; color: #336a24; }
.badge.pink { background: #ffe1ea; color: #96324f; }
.badge.yellow { background: #fff0af; color: #756000; }
.badge.blue { background: #d9efff; color: #275c83; }
.badge.purple { background: #ebe4ff; color: #5a4698; }

h3 {
  margin: 0;
  font-size: 1.55rem;
}

.product-info p {
  margin: 0;
  font-size: .95rem;
  line-height: 1.45;
}

.product-info p,
.product-info li,
.guide-grid p,
.faq p,
.site-footer span {
  color: var(--muted);
}

.product-info ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.product-info li {
  padding: 8px 10px;
  border-radius: 999px;
  background: #f7f7f2;
  font-size: .86rem;
  font-weight: 800;
}

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

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.parent-guide {
  background: #ecfbf4;
}

.about-section {
  background: white;
}

.joycat-products {
  background: white;
}

.where-to-buy {
  background: #f8fbf4;
}

.map-shell {
  margin-bottom: 22px;
}

.us-map {
  position: relative;
  min-height: clamp(320px, 48vw, 560px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(188, 226, 255, .34), rgba(236, 251, 244, .72)),
    #f7fbff;
  box-shadow: 0 14px 30px rgba(48, 59, 68, .08);
}

.map-controls {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, 34px);
  gap: 8px;
  padding: 6px;
  border: 1px solid rgba(121, 139, 147, .28);
  border-radius: 8px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 10px 22px rgba(48, 59, 68, .12);
}

.map-controls button {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 6px;
  background: #f6fbfb;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 900;
  cursor: pointer;
}

#map-reset {
  grid-column: span 2;
  width: auto;
}

.map-controls button:hover,
.map-controls button:focus {
  outline: 3px solid rgba(15, 154, 154, .18);
  background: white;
}

.us-map-svg {
  position: absolute;
  inset: 4%;
  width: 92%;
  height: 92%;
  overflow: visible;
  cursor: grab;
  touch-action: none;
  user-select: none;
}

.us-map-svg.is-panning {
  cursor: grabbing;
}

.state-shape {
  fill: #fffdf8;
  stroke: #cfd8d5;
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.map-dot {
  fill: var(--coral);
  stroke: white;
  stroke-width: 2.4;
  paint-order: stroke;
  vector-effect: non-scaling-stroke;
  filter: drop-shadow(0 4px 7px rgba(114, 48, 40, .28));
  cursor: pointer;
  transform-box: fill-box;
  transform-origin: center;
}

.map-dot:focus,
.map-dot:hover {
  outline: 3px solid rgba(255, 109, 95, .24);
  transform: scale(1.45);
}

.map-card {
  position: absolute;
  z-index: 5;
  display: grid;
  gap: 5px;
  width: min(260px, 72vw);
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
  pointer-events: none;
  transform: translate(0, -100%);
}

.map-card[data-side="left"] {
  transform: translate(-100%, -100%);
}

.map-card[data-vertical="below"] {
  transform: translate(0, 0);
}

.map-card[data-side="left"][data-vertical="below"] {
  transform: translate(-100%, 0);
}

.map-card strong,
.map-card span {
  display: block;
}

.map-card strong {
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  font-size: 1rem;
}

.map-card span {
  color: var(--muted);
  font-size: .88rem;
}

.store-search {
  max-width: 920px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 10px 24px rgba(48, 59, 68, .07);
}

.store-search label {
  display: block;
  margin-bottom: 10px;
  font-weight: 900;
}

.store-search-row {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto auto;
  gap: 10px;
}

.store-search input {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
}

.store-search input:focus {
  outline: 3px solid rgba(15, 154, 154, .18);
  border-color: var(--teal);
}

.store-summary {
  margin: 12px 0 0;
  color: var(--muted);
}

.store-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.store-card {
  display: grid;
  gap: 10px;
  min-height: 190px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 10px 24px rgba(48, 59, 68, .07);
}

.store-card strong,
.store-account,
.store-meta span {
  display: block;
}

.store-card strong {
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  font-size: 1.22rem;
  line-height: 1.1;
}

.store-card p {
  margin: 0;
  color: var(--muted);
}

.store-account {
  margin-top: 4px;
  color: var(--teal-dark);
  font-size: .82rem;
  font-weight: 900;
}

.store-meta {
  display: grid;
  gap: 4px;
  color: #52616c;
  font-size: .88rem;
}

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

.guide-grid article {
  min-height: 190px;
  padding: 26px;
  border-radius: 8px;
  background: white;
  border: 1px solid rgba(15, 154, 154, .18);
}

.contact-section {
  background: white;
}

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

.contact-grid article {
  min-height: 150px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbf4;
}

.contact-grid h3 {
  margin-bottom: 12px;
}

.contact-grid p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.contact-grid a {
  color: var(--teal-dark);
}

.gallery {
  background: white;
}

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

.gallery-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  padding: 18px;
  border-radius: 8px;
  background: #f6f8fb;
  border: 1px solid var(--line);
}

.faq-list {
  display: grid;
  max-width: 900px;
  gap: 12px;
}

details {
  border-radius: 8px;
  background: white;
  border: 1px solid var(--line);
}

summary {
  cursor: pointer;
  padding: 20px;
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  font-size: 1.22rem;
  font-weight: 900;
}

details p {
  margin: 0;
  padding: 0 20px 20px;
}

.closing-cta {
  padding: clamp(58px, 8vw, 104px) clamp(18px, 5vw, 72px);
  text-align: center;
  background: linear-gradient(135deg, #fff1d4 0%, #dff7ff 52%, #ffe8ef 100%);
}

.closing-cta h2 {
  max-width: 860px;
  margin: 0 auto 28px;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px clamp(18px, 5vw, 72px);
  background: #25313a;
  color: white;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 8px;
  background: #d7282f;
}

@media (max-width: 1080px) {
  .hero,
  .split {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-stage {
    min-height: 520px;
  }

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

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

  .quick-paths,
  .store-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .main-nav {
    width: 100%;
    justify-content: space-between;
    gap: 8px;
    font-size: .85rem;
  }

  .nav-action {
    width: 100%;
  }

  .hero {
    padding-top: 32px;
  }

  .hero-stage {
    min-height: 390px;
  }

  .hero-main {
    inset: 5% 3% auto;
    width: 96%;
  }

  .hero-float {
    border-width: 6px;
  }

  .quick-paths,
  .guide-grid,
  .product-grid,
  .contact-grid,
  .store-list,
  .store-search-row {
    grid-template-columns: 1fr;
  }

  .product-card.feature {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .partner-panel {
    grid-template-columns: 1fr;
  }
}

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