:root {
  --navy: #030e18;
  --navy-2: #061827;
  --navy-3: #0a2234;
  --cream: #f7efe0;
  --muted: #aebac4;
  --muted-2: #d5dde4;
  --gold: #d4ad61;
  --gold-bright: #f1d18a;
  --line: rgba(255, 255, 255, 0.14);
  --shadow: 0 34px 90px rgba(0, 0, 0, 0.48);
  --radius-xl: 30px;
  --radius-lg: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--navy);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--cream);
  background:
    linear-gradient(90deg, rgba(255,255,255,0.026) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,0.026) 1px, transparent 1px),
    linear-gradient(145deg, #030e18 0%, #061827 52%, #02070d 100%);
  background-size: 56px 56px, 56px 56px, auto;
  font-family: "IBM Plex Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(3,14,24,0) 0%, rgba(3,14,24,0.42) 76%, #030e18 100%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, transparent 0 46%, rgba(212, 173, 97, 0.055) 46.1%, transparent 46.34% 100%),
    linear-gradient(60deg, transparent 0 58%, rgba(255, 255, 255, 0.035) 58.08%, transparent 58.3% 100%);
  opacity: 0.58;
}

a {
  color: inherit;
}

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

.site-shell {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.site-header {
  position: relative;
  z-index: 4;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 22px 0 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
  min-width: 0;
}

.brand {
  display: inline-flex;
  width: min(400px, 58vw);
  text-decoration: none;
  overflow: hidden;
  border-radius: 18px;
  background: #030e18;
}

.brand img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 18px 32px rgba(0, 0, 0, 0.32));
}

.header-link {
  flex: 0 0 auto;
  color: var(--cream);
  border: 1px solid rgba(212, 173, 97, 0.56);
  border-radius: 999px;
  padding: 10px 15px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  background: rgba(255, 255, 255, 0.052);
}

.hero {
  width: min(1180px, calc(100% - 32px));
  min-height: calc(100svh - 88px);
  margin: 0 auto;
  padding: 42px 0 48px;
  display: grid;
  grid-template-columns: minmax(0, 0.83fr) minmax(390px, 1.17fr);
  align-items: center;
  gap: 44px;
}

.hero-copy {
  position: relative;
  z-index: 3;
}

.coming-soon,
.section-kicker {
  margin: 0 0 14px;
  color: var(--gold-bright);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.collimation-line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  max-width: 100%;
  margin: 0;
  padding: 6px 11px;
  color: var(--gold-bright);
  border: 1px solid rgba(241, 209, 138, 0.34);
  border-radius: 999px;
  background: rgba(3, 14, 24, 0.78);
  font-family: "IBM Plex Sans Condensed", "IBM Plex Sans", system-ui, sans-serif;
  font-size: clamp(0.78rem, 1.02vw, 0.94rem);
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.018em;
  white-space: nowrap;
  box-shadow: 0 12px 28px rgba(0,0,0,0.2);
}

h1,
h2,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "IBM Plex Sans Condensed", "IBM Plex Sans", system-ui, sans-serif;
  font-weight: 600;
}

h1 {
  margin-bottom: 22px;
  max-width: 720px;
  font-size: clamp(3rem, 6.8vw, 5.95rem);
  line-height: 0.98;
  letter-spacing: -0.026em;
  text-wrap: balance;
}

.hero-lede {
  max-width: 640px;
  color: #dbe4ec;
  font-size: clamp(1.05rem, 2.05vw, 1.25rem);
  font-weight: 400;
}

.quiet-line {
  max-width: 540px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 0.98rem;
}

.preview-stage {
  position: relative;
  min-height: 730px;
  isolation: isolate;
}

.phone {
  position: absolute;
  margin: 0;
  overflow: hidden;
  width: min(294px, 46vw);
  aspect-ratio: 877 / 2048;
  padding: 8px;
  border-radius: 32px;
  background: #050b12;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: var(--shadow);
}

.phone img {
  width: 100%;
  height: 100%;
  border-radius: 25px;
  object-fit: cover;
}

.phone-glass {
  position: absolute;
  inset: 8px;
  z-index: 1;
  border-radius: 25px;
  pointer-events: none;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.18),
    inset 0 18px 38px rgba(255,255,255,0.075);
}

.phone-primary {
  z-index: 4;
  right: 210px;
  top: 8px;
  transform: rotate(-1.6deg);
}

.phone-secondary {
  z-index: 3;
  right: 0;
  top: 92px;
  transform: rotate(2.4deg) scale(0.94);
}

.phone-tertiary {
  z-index: 2;
  left: 26px;
  bottom: 6px;
  transform: rotate(-3.2deg) scale(0.86);
  opacity: 0.96;
}


.phone-primary {
  animation: heroPhonePrimary 15s ease-in-out infinite;
}

.phone-secondary {
  animation: heroPhoneSecondary 15s ease-in-out infinite;
}

.phone-tertiary {
  animation: heroPhoneTertiary 15s ease-in-out infinite;
}

@keyframes heroPhonePrimary {
  0%, 28% {
    z-index: 4;
    opacity: 1;
    transform: rotate(-1.6deg) scale(1);
  }
  33%, 61% {
    z-index: 2;
    opacity: 0.84;
    transform: translateX(72px) translateY(88px) rotate(2.4deg) scale(0.86);
  }
  66%, 94% {
    z-index: 3;
    opacity: 0.92;
    transform: translateX(-64px) translateY(118px) rotate(-3.2deg) scale(0.88);
  }
  100% {
    z-index: 4;
    opacity: 1;
    transform: rotate(-1.6deg) scale(1);
  }
}

@keyframes heroPhoneSecondary {
  0%, 28% {
    z-index: 3;
    opacity: 0.9;
    transform: rotate(2.4deg) scale(0.94);
  }
  33%, 61% {
    z-index: 4;
    opacity: 1;
    transform: translateX(-210px) translateY(-84px) rotate(-1.6deg) scale(1);
  }
  66%, 94% {
    z-index: 2;
    opacity: 0.82;
    transform: translateX(-130px) translateY(120px) rotate(-3.2deg) scale(0.86);
  }
  100% {
    z-index: 3;
    opacity: 0.9;
    transform: rotate(2.4deg) scale(0.94);
  }
}

@keyframes heroPhoneTertiary {
  0%, 28% {
    z-index: 2;
    opacity: 0.86;
    transform: rotate(-3.2deg) scale(0.86);
  }
  33%, 61% {
    z-index: 3;
    opacity: 0.9;
    transform: translateX(184px) translateY(-20px) rotate(2.4deg) scale(0.9);
  }
  66%, 94% {
    z-index: 4;
    opacity: 1;
    transform: translateX(184px) translateY(-118px) rotate(-1.6deg) scale(1);
  }
  100% {
    z-index: 2;
    opacity: 0.86;
    transform: rotate(-3.2deg) scale(0.86);
  }
}

.focus-strip {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 14px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.048);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.focus-item {
  padding: 20px;
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(3, 14, 24, 0.74), rgba(8, 30, 47, 0.58));
  border: 1px solid rgba(255,255,255,0.08);
}

.focus-item span {
  display: inline-flex;
  margin-bottom: 13px;
  color: var(--gold-bright);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.focus-item strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.12rem;
}

.focus-item p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.detail-section {
  width: min(1180px, calc(100% - 32px));
  margin: 52px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 22px;
  align-items: stretch;
}

.detail-copy,
.visibility-card,
.signup-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.076), rgba(255, 255, 255, 0.028));
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(16px);
}

.detail-copy {
  padding: clamp(24px, 4vw, 42px);
}

.detail-copy h2,
.signup-card h2 {
  margin-bottom: 14px;
  font-size: clamp(1.95rem, 3.45vw, 3.65rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  font-weight: 600;
  text-wrap: balance;
}

.detail-copy p:not(.section-kicker),
.signup-copy p {
  color: #d7e0e8;
  font-size: 1.02rem;
}

.detail-copy p:last-child {
  margin-bottom: 0;
}

.visibility-card {
  overflow: hidden;
  min-height: 300px;
  display: grid;
  grid-template-rows: 1fr auto;
  background: linear-gradient(145deg, rgba(255,255,255,0.098), rgba(255,255,255,0.032));
}

.visibility-card figure {
  margin: 0;
  height: 252px;
  overflow: hidden;
}

.visibility-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.visibility-copy {
  padding: 16px 20px 20px;
  border-top: 1px solid var(--line);
  background: rgba(3, 14, 24, 0.72);
}

.visibility-copy span {
  display: block;
  margin-bottom: 6px;
  color: var(--gold-bright);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.visibility-copy strong {
  display: block;
  font-size: 1.12rem;
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.screenshot-band {
  width: min(1180px, calc(100% - 32px));
  margin: 22px auto 0;
  overflow: hidden;
}

.screenshot-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: 100%;
}

.screenshot-band figure {
  display: block;
  margin: 0;
  min-width: 0;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 60px rgba(0,0,0,0.24);
}

.screenshot-band img {
  display: block;
  width: 100%;
  aspect-ratio: 877 / 1320;
  object-fit: cover;
  object-position: top center;
}

.marquee-duplicate,
.mobile-marquee-only {
  display: none;
}

.signup-section {
  width: min(1180px, calc(100% - 32px));
  margin: 70px auto 0;
}

.signup-card {
  padding: clamp(22px, 4vw, 38px);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.78fr);
  gap: 30px;
  align-items: center;
}

.signup-copy img {
  width: 84px;
  margin-bottom: 18px;
  border-radius: 22px;
  box-shadow: 0 22px 44px rgba(0,0,0,0.28);
}

.signup-form {
  display: grid;
  gap: 12px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(2, 8, 14, 0.46);
  border: 1px solid rgba(255,255,255,0.12);
}

.signup-form label {
  color: var(--cream);
  font-size: 0.88rem;
  font-weight: 700;
}

.signup-form input,
.signup-form select,
.signup-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 14px;
  padding: 13px 14px;
  color: var(--cream);
  background: rgba(255, 255, 255, 0.075);
  font: inherit;
  outline: none;
}

.signup-form select {
  color: #07111b;
  background: #f7efe0;
}

.signup-form select option {
  color: #07111b;
  background: #f7efe0;
}

.signup-form input::placeholder,
.signup-form textarea::placeholder {
  color: rgba(247, 239, 224, 0.58);
}

.signup-form button {
  min-height: 52px;
  border: 0;
  border-radius: 999px;
  color: #07111b;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 14px 38px rgba(0,0,0,0.24);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.site-footer {
  width: min(1180px, calc(100% - 32px));
  margin: 42px auto 0;
  padding: 26px 0 34px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  text-decoration: none;
}

@media (max-width: 1000px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 34px;
    gap: 16px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-lede,
  .quiet-line {
    margin-left: auto;
    margin-right: auto;
  }

  .preview-stage {
    width: min(680px, 100%);
    min-height: 660px;
    margin: 0 auto;
  }

  .phone-primary {
    right: auto;
    left: 50%;
    transform: translateX(-50%) rotate(-1deg);
  }

  .phone-secondary {
    right: 12px;
  }

  .phone-tertiary {
    left: 10px;
  }

  .focus-strip,
  .detail-section,
  .signup-card {
    grid-template-columns: 1fr;
  }

  .visibility-card {
    grid-template-columns: 260px 1fr;
    grid-template-rows: auto;
    align-items: stretch;
    min-height: 250px;
  }

  .visibility-card figure {
    height: auto;
  }

  .visibility-copy {
    border-top: 0;
    border-left: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .detail-section,
  .signup-section {
    margin-top: 48px;
  }
}

@media (max-width: 640px) {
  body {
    background-size: 42px 42px, 42px 42px, auto;
  }

  .site-header {
    width: min(100% - 22px, 1180px);
    padding-top: 14px;
  }

  .brand {
    width: min(260px, 62vw);
    border-radius: 12px;
  }

  .header-link {
    padding: 8px 11px;
    font-size: 0.8rem;
  }

  .hero {
    width: min(100% - 22px, 1180px);
    min-height: auto;
    padding: 28px 0 30px;
  }

  h1 {
    font-size: clamp(2.95rem, 14.8vw, 4.85rem);
    letter-spacing: -0.03em;
    line-height: 1;
  }

  .hero-lede {
    font-size: 1.02rem;
  }

  .preview-stage {
    min-height: 590px;
    margin-top: 4px;
  }

  .phone {
    width: 222px;
    border-radius: 28px;
    padding: 6px;
  }

  .phone img,
  .phone-glass {
    border-radius: 23px;
  }

  .phone-glass {
    inset: 6px;
  }

  .phone-primary {
    top: 70px;
    left: 50%;
    transform: translateX(-50%) rotate(-1deg);
  }

  .phone-secondary {
    top: 132px;
    right: -34px;
    transform: rotate(4deg) scale(0.76);
    opacity: 0.78;
  }

  .phone-tertiary {
    left: -30px;
    bottom: 20px;
    transform: rotate(-4deg) scale(0.74);
    opacity: 0.86;
  }

  .focus-strip {
    width: min(100% - 22px, 1180px);
    padding: 10px;
  }

  .focus-item {
    padding: 18px;
  }

  .detail-section,
  .screenshot-band,
  .signup-section,
  .site-footer {
    width: min(100% - 22px, 1180px);
  }

  .detail-copy,
  .visibility-card,
  .signup-card {
    border-radius: 24px;
  }

  .visibility-card {
    grid-template-columns: 1fr;
  }

  .visibility-card figure {
    height: 292px;
  }

  .visibility-copy strong {
    font-size: 1.06rem;
    white-space: normal;
  }

  .visibility-copy {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

.screenshot-band {
    width: 100%;
    margin-top: 22px;
    overflow: hidden;
  }

  .screenshot-track {
    display: flex;
    width: max-content;
    gap: 14px;
    padding-left: 11px;
    padding-right: 11px;
    animation: screenshotMarquee 26s linear infinite;
    will-change: transform;
  }

  .screenshot-band figure,
  .marquee-duplicate {
    display: block;
    flex: 0 0 76vw;
    width: 76vw;
    max-width: 320px;
  }

  .screenshot-band img {
    aspect-ratio: 877 / 1320;
  }

  .signup-card {
    padding: 18px;
    gap: 20px;
  }

  .signup-copy img {
    width: 76px;
  }

  .site-footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}


100% {
    transform: translateX(calc(-50% - 7px));
  }
}




@media (max-width: 640px) {
  .collimation-line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  max-width: 100%;
  margin: 0;
  padding: 6px 11px;
  color: var(--gold-bright);
  border: 1px solid rgba(241, 209, 138, 0.34);
  border-radius: 999px;
  background: rgba(3, 14, 24, 0.78);
  font-family: "IBM Plex Sans Condensed", "IBM Plex Sans", system-ui, sans-serif;
  font-size: clamp(0.78rem, 1.02vw, 0.94rem);
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.018em;
  white-space: nowrap;
  box-shadow: 0 12px 28px rgba(0,0,0,0.2);
}

.screenshot-band {
    width: 100%;
    margin-top: 22px;
    overflow: hidden;
  }

  .screenshot-track {
    display: flex;
    width: max-content;
    gap: 14px;
    padding-left: 11px;
    padding-right: 11px;
    animation: screenshotMarquee 24s linear infinite;
    will-change: transform;
  }

  .screenshot-band figure,
  .screenshot-band .marquee-duplicate,
  .screenshot-band .mobile-marquee-only {
    display: block;
    flex: 0 0 76vw;
    width: 76vw;
    max-width: 320px;
  }
}

@keyframes screenshotMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 7px));
  }
}

@media (prefers-reduced-motion: reduce) and (max-width: 640px) {
  .screenshot-track {
    animation: none;
    overflow-x: auto;
    width: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .screenshot-band figure {
    scroll-snap-align: center;
  }
}


/* v16 hard layout guard: desktop/tablet show exactly one row of three */
@media (min-width: 641px) {
  .screenshot-band {
    width: min(1180px, calc(100% - 32px));
    margin: 22px auto 0;
    overflow: hidden;
  }

  .screenshot-track {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 18px !important;
    width: 100% !important;
    padding: 0 !important;
    animation: none !important;
    transform: none !important;
  }

  .screenshot-track .marquee-duplicate,
  .screenshot-track .mobile-marquee-only {
    display: none !important;
  }

  .screenshot-band figure {
    width: auto !important;
    max-width: none !important;
    flex: initial !important;
  }
}

/* v16 mobile refinements */
@media (max-width: 640px) {
  .site-header {
    align-items: flex-start;
  }

  .brand-block {
    gap: 6px;
    max-width: calc(100% - 92px);
  }

  .collimation-line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  max-width: 100%;
  margin: 0;
  padding: 6px 11px;
  color: var(--gold-bright);
  border: 1px solid rgba(241, 209, 138, 0.34);
  border-radius: 999px;
  background: rgba(3, 14, 24, 0.78);
  font-family: "IBM Plex Sans Condensed", "IBM Plex Sans", system-ui, sans-serif;
  font-size: clamp(0.78rem, 1.02vw, 0.94rem);
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.018em;
  white-space: nowrap;
  box-shadow: 0 12px 28px rgba(0,0,0,0.2);
}

  .hero-copy {
    padding-top: 6px;
  }

  .phone-primary {
    animation: mobilePhonePrimary 15s ease-in-out infinite;
  }

  .phone-secondary {
    animation: mobilePhoneSecondary 15s ease-in-out infinite;
  }

  .phone-tertiary {
    animation: mobilePhoneTertiary 15s ease-in-out infinite;
  }

  .visibility-card {
    display: none;
  }

  .mobile-marquee-only {
    display: block;
  }

  .screenshot-track {
    animation-duration: 30s;
  }
}

@keyframes mobilePhonePrimary {
  0%, 28% {
    z-index: 4;
    opacity: 1;
    transform: translateX(-50%) rotate(-1deg) scale(1);
  }
  33%, 61% {
    z-index: 2;
    opacity: 0.78;
    transform: translateX(-18%) translateY(54px) rotate(4deg) scale(0.76);
  }
  66%, 94% {
    z-index: 3;
    opacity: 0.86;
    transform: translateX(-84%) translateY(138px) rotate(-4deg) scale(0.74);
  }
  100% {
    z-index: 4;
    opacity: 1;
    transform: translateX(-50%) rotate(-1deg) scale(1);
  }
}

@keyframes mobilePhoneSecondary {
  0%, 28% {
    z-index: 3;
    opacity: 0.78;
    transform: rotate(4deg) scale(0.76);
  }
  33%, 61% {
    z-index: 4;
    opacity: 1;
    transform: translateX(-118px) translateY(-62px) rotate(-1deg) scale(1);
  }
  66%, 94% {
    z-index: 2;
    opacity: 0.76;
    transform: translateX(-178px) translateY(82px) rotate(-4deg) scale(0.74);
  }
  100% {
    z-index: 3;
    opacity: 0.78;
    transform: rotate(4deg) scale(0.76);
  }
}

@keyframes mobilePhoneTertiary {
  0%, 28% {
    z-index: 2;
    opacity: 0.72;
    transform: rotate(-4deg) scale(0.74);
  }
  33%, 61% {
    z-index: 3;
    opacity: 0.82;
    transform: translateX(108px) translateY(-28px) rotate(4deg) scale(0.76);
  }
  66%, 94% {
    z-index: 4;
    opacity: 1;
    transform: translateX(118px) translateY(-92px) rotate(-1deg) scale(1);
  }
  100% {
    z-index: 2;
    opacity: 0.72;
    transform: rotate(-4deg) scale(0.74);
  }
}

@media (prefers-reduced-motion: reduce) {
  .phone-primary,
  .phone-secondary,
  .phone-tertiary {
    animation: none;
  }
}
}


/* v16: centered mobile Collimation badge */
@media (max-width: 640px) {
  .site-header {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: start;
  }

  .brand-block {
    grid-column: 1 / -1;
    width: 100%;
    max-width: none;
    padding-right: 92px;
    align-items: flex-start;
  }

  .header-link {
    position: absolute;
    right: 0;
    top: 14px;
  }

  .collimation-line {
    position: static;
    left: auto;
    transform: none;
    display: flex;
    width: calc(100vw - 22px);
    max-width: calc(100vw - 22px);
    margin: 5px auto 0;
    padding: 8px 12px;
    box-sizing: border-box;
    justify-content: center;
    align-items: center;
    font-size: clamp(0.82rem, 3.1vw, 1rem);
    line-height: 1.12;
    letter-spacing: 0;
    text-align: center;
    white-space: normal;
  }
}

.brand-block {
    grid-column: 1 / -1;
    width: 100%;
    max-width: none;
    padding-right: 92px;
    align-items: flex-start;
  }

  .header-link {
    position: absolute;
    right: 0;
    top: 14px;
  }

  .collimation-line {
    position: relative;
    left: 50vw;
    transform: translateX(-50%);
    display: inline-flex;
    width: max-content;
    max-width: calc(100vw - 18px);
    margin: 3px 0 0;
    padding: 7px 12px;
    font-size: clamp(0.82rem, 3.05vw, 1.08rem);
    letter-spacing: -0.004em;
    text-align: center;
    white-space: nowrap;
  }
}


/* v16 final mobile override: keep Collimation badge fully on-screen */
@media (max-width: 640px) {
  .collimation-line {
    position: static !important;
    left: auto !important;
    transform: none !important;
    display: flex !important;
    width: calc(100vw - 22px) !important;
    max-width: calc(100vw - 22px) !important;
    margin: 5px auto 0 !important;
    padding: 8px 12px !important;
    box-sizing: border-box !important;
    justify-content: center !important;
    align-items: center !important;
    font-size: clamp(0.82rem, 3.1vw, 1rem) !important;
    line-height: 1.12 !important;
    letter-spacing: 0 !important;
    text-align: center !important;
    white-space: normal !important;
  }
}





/* v27 Tally inline signup embed: light readable inset inside dark Collimet panel */
.tally-embed-wrap {
  width: 100%;
  margin-top: 22px;
  padding: 16px;
  overflow: hidden;
  border: 1px solid rgba(241, 209, 138, 0.34);
  border-radius: 24px;
  background:
    radial-gradient(circle at top left, rgba(241, 209, 138, 0.20), transparent 30%),
    linear-gradient(180deg, #fffaf0 0%, #f3ead8 100%);
  box-shadow:
    0 22px 60px rgba(0,0,0,0.24),
    inset 0 1px 0 rgba(255,255,255,0.72);
}

.tally-embed-wrap iframe {
  display: block;
  width: 100%;
  border: 0;
  border-radius: 16px;
  background: transparent;
}

@media (max-width: 640px) {
  .tally-embed-wrap {

    margin-top: 18px;
    padding: 12px;
    border-radius: 22px;
    }

  .tally-embed-wrap iframe {
    border-radius: 14px;
  }
}


/* v27: prevent hero phone screenshots from cropping left/right edges */
.phone {
  background: #030e18;
}

.phone img {
  object-fit: contain !important;
  object-position: center center !important;
  background: #030e18;
}

/* Keep the lower preview cards cropped as designed unless explicitly changed later */
.screenshot-band img {
  object-fit: cover;
  object-position: top center;
}


/* v27: let Tally dynamicHeight control the iframe height */
.tally-embed-wrap iframe {
  min-height: 0 !important;
}

@media (max-width: 640px) {
  .tally-embed-wrap iframe {
    min-height: 0 !important;
  }
}





/* v27: align Request info with the logo image, not the full logo + definition block */
.site-header {
  align-items: center;
}

.header-link {
  align-self: center;
}

@media (max-width: 640px) {
  .site-header {
    position: relative;
    align-items: start;
  }

  .header-link {
    position: absolute;
    right: 0;
    top: 30px;
    transform: none;
  }
}
