:root {
  --bg: #f5f5f5;
  --ink: #141414;
  --yellow: #ffca2c;
  --blue: #1c5d99;
  --cyan: #06b6d4;
  --line: #d9dde2;
  --card: #ffffff;
  --glass-soft: rgba(255, 255, 255, 0.28);
  --glass-strong: rgba(255, 255, 255, 0.46);
  --glass-border: rgba(255, 255, 255, 0.66);
  --shadow: 0 16px 28px rgba(20, 20, 20, 0.14);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Rethink Sans", "Avenir Next", sans-serif;
  overflow-x: clip;
  background:
    radial-gradient(circle at 6% -4%, #06b6d433 0, #06b6d400 34%),
    radial-gradient(circle at 91% 8%, #ffca2c7a 0, #ffca2c00 34%),
    linear-gradient(180deg, #f8f9fc 0%, #f2f4f7 100%);
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
details:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 2px;
}

.section {
  width: min(1220px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 2.2rem 0;
}

main {
  width: min(1220px, calc(100% - 2rem));
  margin: 0 auto 3rem;
  display: grid;
  gap: 4rem;
}

main > .section {
  width: 100%;
  margin: 0;
  padding: 0;
}

main > .section + .section {
  margin-top: 1.1rem;
}

.eyebrow {
  margin: 0 0 0.6rem;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  font-size: 0.84rem;
}

h1 {
  margin: 0 0 0.8rem;
  font-size: clamp(2.2rem, 5vw, 4.1rem);
  line-height: 1.03;
  max-width: 13ch;
}

h2 {
  margin: 0 0 0.7rem;
  font-size: clamp(1.35rem, 2vw, 2rem);
}

h3 {
  margin-top: 0;
}

.lead {
  max-width: 62ch;
  font-size: 1.15rem;
  margin: 0 0 1rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: clamp(1.1rem, 1.8vw, 1.8rem);
  align-items: start;
  padding-top: 3.3rem;
}

.hero-grid > div,
.hero-grid > aside {
  min-width: 0;
}

.beam-logo {
  width: clamp(72px, 6vw, 96px);
  aspect-ratio: 4.7 / 1;
  overflow: hidden;
  margin-bottom: 0.8rem;
}

.beam-logo-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.35rem;
}

.pill {
  border: 1px solid #1c5d9926;
  background: #ffffffcc;
  color: var(--blue);
  border-radius: 999px;
  padding: 0.42rem 0.88rem;
  font-size: 0.86rem;
  font-weight: 600;
}

.signup-card {
  background: var(--glass-strong);
  border: 1px solid var(--glass-border);
  border-top: 6px solid var(--yellow);
  border-radius: 16px;
  padding: 1rem;
  box-shadow: var(--shadow);
  position: sticky;
  top: 1rem;
  backdrop-filter: blur(14px) saturate(135%);
  -webkit-backdrop-filter: blur(14px) saturate(135%);
}

.signup-card > p {
  margin: 0 0 0.8rem;
}

.signup-form {
  display: grid;
  gap: 0.72rem;
}

.signup-form label {
  display: grid;
  gap: 0.25rem;
  font-size: 0.94rem;
  font-weight: 600;
}

.signup-form input,
.signup-form select,
.roi-grid input,
.roi-grid select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.66rem;
  background: #ffffffd6;
  color: var(--ink);
}

.btn {
  border: 0;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 700;
  padding: 0.8rem 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 16px rgba(255, 202, 44, 0.35);
}

.footer-btn {
  display: inline-block;
}

.btn-secondary {
  background: #ffffffd6;
  border: 1px solid #d4e1ef;
}

.legal {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.45;
  color: #374b66;
}

.checkout-return {
  margin-bottom: 0.9rem;
  border: 1px solid #cfe0f1;
  border-radius: 12px;
  background: #f6fbffd9;
  padding: 0.75rem;
}

.checkout-return h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
}

.checkout-return p {
  margin: 0 0 0.7rem;
  color: #2b4760;
  font-size: 0.88rem;
}

.checkout-actions {
  display: grid;
  gap: 0.55rem;
}

.device-selector {
  margin: 0;
  border: 1px solid #d0dce8;
  border-radius: 12px;
  padding: 0.6rem 0.65rem 0.68rem;
  background: #ffffffd6;
  display: grid;
  gap: 0.55rem;
}

.device-selector legend {
  padding: 0 0.25rem;
  font-size: 0.9rem;
  font-weight: 700;
}

.device-option {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  border: 1px solid #d9e4ef;
  border-radius: 10px;
  padding: 0.5rem 0.55rem;
  background: #ffffff;
}

.device-option input[type="radio"] {
  margin-top: 0.2rem;
}

.device-option span {
  display: grid;
  gap: 0.18rem;
}

.device-option strong {
  font-size: 0.9rem;
  line-height: 1.2;
}

.device-option small {
  color: #3c5770;
  line-height: 1.35;
}

.form-error {
  margin: 0;
  padding: 0.55rem 0.65rem;
  border-radius: 10px;
  border: 1px solid #efc4c4;
  background: #fff0f0;
  color: #8a2e2e;
  font-size: 0.84rem;
  font-weight: 600;
}

.legal a {
  color: var(--blue);
  font-weight: 600;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.legal a:hover {
  text-decoration-thickness: 2px;
}

.store-carousel {
  margin-top: 1.5rem;
  min-width: 0;
  padding: 0.9rem;
  border-radius: 20px;
  border: 1px solid var(--glass-border);
  background: linear-gradient(160deg, var(--glass-strong) 0%, rgba(255, 255, 255, 0.2) 100%);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  box-shadow: 0 10px 24px rgba(28, 93, 153, 0.15);
}

.carousel-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.6rem;
}

.motion-note {
  margin: 0;
  font-size: 0.86rem;
  font-weight: 600;
  color: #2f4f6f;
}

.carousel-controls {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.carousel-btn {
  width: 2.2rem;
  height: 2.2rem;
  border: 1px solid #b8d4ee;
  border-radius: 999px;
  background: #ffffffde;
  color: #173b5a;
  font-size: 1.1rem;
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.carousel-btn:hover {
  background: #eef7ff;
  border-color: #88b4da;
  transform: translateY(-1px);
}

.store-viewport {
  position: relative;
  width: 100%;
  max-width: 100%;
  border-radius: 16px;
  border: 1px solid var(--glass-border);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
}

.store-viewport::before,
.store-viewport::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 44px;
  z-index: 1;
  pointer-events: none;
}

.store-viewport::before {
  left: 0;
  background: linear-gradient(90deg, #f4f6fa 0%, transparent 100%);
}

.store-viewport::after {
  right: 0;
  background: linear-gradient(270deg, #f4f6fa 0%, transparent 100%);
}

.store-track {
  display: flex;
  width: 100%;
  gap: 2.4rem;
  overflow-x: auto;
  padding: 1.15rem 1.25rem 1.35rem;
  scroll-snap-type: none;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.store-track::-webkit-scrollbar {
  display: none;
}

.store-card {
  flex: 0 0 clamp(210px, 23vw, 250px);
  border-radius: 14px;
  padding: 1.05rem;
  border: 1px solid var(--glass-border);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.55) 0%, rgba(255, 255, 255, 0.24) 100%);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  box-shadow: 0 6px 16px rgba(17, 47, 76, 0.12);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.store-card:hover {
  transform: translateY(-2px);
  border-color: #96bfe3;
  box-shadow: 0 12px 24px rgba(20, 54, 84, 0.16);
}

.store-card-type {
  margin: 0;
  font-weight: 800;
  line-height: 1.3;
}

.store-card-location {
  margin: 0.22rem 0 0;
  font-size: 0.92rem;
  color: #315b7f;
  font-weight: 600;
}

.steps {
  margin: 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.35rem;
}

.section.value-section,
.section.offer-panel,
.section.roi,
.section.faq-section,
.section.footer {
  background: #ffffffbd;
  border: 1px solid #dbe3ec;
  border-radius: 18px;
  padding: 1.6rem;
  box-shadow: 0 6px 16px rgba(20, 20, 20, 0.06);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.value-card {
  padding: 0.95rem;
  border-radius: 14px;
  border: 1px solid #d5e3f2;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.value-card h3 {
  margin-bottom: 0.35rem;
}

.value-card p {
  margin: 0;
}

.strike {
  text-decoration: line-through;
  opacity: 0.65;
}

.note {
  color: #374b66;
}

.roi-grid {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 0.9rem;
}

.roi-grid label {
  display: grid;
  gap: 0.25rem;
  font-size: 0.95rem;
  font-weight: 600;
}

.interval-note {
  margin: 0.8rem 0 0;
  font-size: 0.86rem;
  line-height: 1.42;
  color: #36516b;
  font-weight: 500;
  max-width: 70ch;
}

input[type="range"] {
  accent-color: var(--blue);
  padding: 0;
}

.result {
  margin-top: 0.95rem;
  margin-bottom: 0;
  font-size: 1.05rem;
}

.faq-list {
  display: grid;
  gap: 0.6rem;
}

.faq-list details {
  border: 1px solid #d4e2f0;
  border-radius: 12px;
  background: #ffffffd9;
  padding: 0.8rem 0.9rem;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
}

.faq-list p {
  margin: 0.5rem 0 0;
  color: #304961;
}

.footer {
  margin-bottom: 2.2rem;
}

.footer h2 {
  margin-top: 0;
}

.legal-disclaimer {
  margin-top: 1rem;
  border-top: 1px solid #d8e2ec;
  padding-top: 1rem;
}

.legal-disclaimer h3 {
  margin-bottom: 0.5rem;
}

.legal-disclaimer p {
  margin: 0 0 0.55rem;
  color: #2e4a63;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.legal-links a {
  color: var(--blue);
  font-weight: 700;
}

.bg-orb {
  position: fixed;
  width: 39vw;
  max-width: 420px;
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.25;
  pointer-events: none;
}

.bg-orb--left {
  left: -12vw;
  top: -20vh;
  background: #06b6d4;
}

.bg-orb--right {
  right: -14vw;
  top: 8vh;
  background: #1c5d99;
}

@media (max-width: 1200px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .signup-card {
    position: static;
    max-width: 640px;
  }
}

@media (max-width: 980px) {
  .roi-grid,
  .value-grid {
    grid-template-columns: 1fr;
  }

  .section,
  main {
    width: min(920px, calc(100% - 1.4rem));
  }

  main {
    gap: 2.2rem;
  }

  main > .section + .section {
    margin-top: 0;
  }

  .carousel-head {
    align-items: flex-start;
  }

  .store-track {
    gap: 1.1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .carousel-btn,
  .store-card,
  .btn {
    transition: none;
  }
}
