:root {
  --black: #111111;
  --dark: #120f0e;
  --dark-soft: #1f1c1b;
  --footer: #323232;
  --white: #ffffff;
  --paper: #f8f8f8;
  --cream: #fff0e5;
  --muted: #6f675f;
  --muted-light: #d0d0d0;
  --line: rgba(17, 17, 17, 0.12);
  --line-light: rgba(255, 255, 255, 0.1);
  --jueri-gradient: linear-gradient(90deg, #ff3131 18%, #ff914d 77%);
  --warm-gradient: linear-gradient(75deg, #ed9443 0%, #eb544d 88%);
  --nav-gradient: linear-gradient(180deg, #120f0e 0%, #403d3c 100%);
  --shadow: 0 28px 80px rgba(17, 17, 17, 0.22);
  --content-width: 1740px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 64px;
}

body {
  background: var(--white);
  color: var(--black);
  font-family: Poppins, Manrope, Arial, sans-serif;
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
}

.has-julia-notice-modal,
.has-julia-notice-modal body {
  overflow: hidden;
}

img,
svg {
  display: block;
  height: auto;
  max-width: 100%;
}

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

figure,
h1,
h2,
h3,
p {
  margin: 0;
}

.julia-notice-modal[hidden] {
  display: none;
}

.julia-notice-modal {
  align-items: center;
  display: flex;
  inset: 0;
  justify-content: center;
  opacity: 0;
  padding: 24px;
  pointer-events: none;
  position: fixed;
  transition: opacity 180ms ease;
  z-index: 1000;
}

.julia-notice-modal.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.julia-notice-backdrop {
  background: rgba(18, 15, 14, 0.76);
  inset: 0;
  position: absolute;
}

.julia-notice-dialog {
  border-radius: 18px;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.34);
  max-height: min(90vh, 900px);
  max-width: min(92vw, 720px);
  outline: none;
  overflow: hidden;
  position: relative;
  transform: translateY(16px) scale(0.98);
  transition: transform 180ms ease;
  width: fit-content;
}

.julia-notice-modal.is-visible .julia-notice-dialog {
  transform: translateY(0) scale(1);
}

.julia-notice-dialog img {
  background: var(--white);
  max-height: min(90vh, 900px);
  object-fit: contain;
  width: auto;
}

.julia-notice-close {
  align-items: center;
  background: rgba(18, 15, 14, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: var(--white);
  cursor: pointer;
  display: inline-flex;
  height: 42px;
  justify-content: center;
  padding: 0;
  position: absolute;
  right: 14px;
  top: 14px;
  transition: background-color 160ms ease, transform 160ms ease;
  width: 42px;
  z-index: 1;
}

.julia-notice-close:hover {
  background: rgba(18, 15, 14, 0.92);
  transform: scale(1.04);
}

.julia-notice-close svg {
  fill: currentColor;
  height: 24px;
  width: 24px;
}

.topbar {
  align-items: center;
  backdrop-filter: blur(18px);
  background: var(--nav-gradient);
  display: flex;
  gap: 32px;
  height: 64px;
  justify-content: space-between;
  left: 0;
  padding: 9px clamp(24px, 4.85vw, 93px);
  position: sticky;
  right: 0;
  top: 0;
  transition: box-shadow 180ms ease, border-color 180ms ease;
  z-index: 20;
}

.topbar.is-elevated {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 40px rgba(17, 17, 17, 0.18);
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  height: 30px;
  width: 133px;
}

.topbar nav {
  align-items: center;
  display: flex;
  flex: 1;
  gap: 7.9px;
  justify-content: center;
}

.topbar nav a {
  border-radius: 999px;
  color: var(--white);
  font-size: 14.4px;
  font-weight: 800;
  padding: 9px 13px;
  transition: background-color 160ms ease;
  white-space: nowrap;
}

.topbar nav a:hover {
  background: rgba(255, 255, 255, 0.08);
}

.primary-link,
.topbar-action {
  align-items: center;
  background: var(--jueri-gradient);
  border-radius: 999px;
  color: var(--cream);
  display: inline-flex;
  font-size: 24px;
  font-weight: 700;
  justify-content: center;
  line-height: 1;
  min-height: 56px;
  padding: 13px 22px;
  text-align: center;
  width: max-content;
}

.topbar-action {
  color: var(--white);
  flex: 0 0 auto;
  font-size: 16px;
  font-weight: 800;
  min-height: 46px;
}

.primary-link.inverted {
  background: var(--white);
  color: var(--black);
}

.section-frame {
  align-items: center;
  display: grid;
  gap: clamp(48px, 7vw, 192px);
  grid-template-columns: minmax(0, 0.92fr) minmax(440px, 1.08fr);
  margin: 0 auto;
  max-width: 1920px;
  min-height: 1050px;
  padding: 120px clamp(28px, 4.7vw, 90px);
}

.section-copy {
  display: flex;
  flex-direction: column;
  gap: 31px;
  max-width: 780px;
  width: 100%;
}

.eyebrow {
  background: var(--jueri-gradient);
  background-clip: text;
  color: transparent;
  display: inline-flex;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.1198em;
  line-height: 1.2;
  text-transform: uppercase;
  width: max-content;
}

.eyebrow.muted,
.eyebrow.light {
  color: var(--muted-light);
  background: none;
}

.eyebrow-pill {
  align-items: center;
  background:
    linear-gradient(var(--cream), var(--cream)) padding-box,
    var(--jueri-gradient) border-box;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--black);
  font-size: 12px;
  font-weight: 400;
  gap: 13px;
  height: 37px;
  letter-spacing: 0;
  padding: 9px 14px;
  text-transform: none;
  width: 353px;
  white-space: nowrap;
}

.eyebrow-pill img {
  height: 20px;
  width: 20px;
}

h1,
h2 {
  font-size: clamp(48px, 3.65vw, 70px);
  font-weight: 700;
  line-height: 1.185;
}

h1 span,
h2 span,
.video-heading h2 span {
  background: var(--jueri-gradient);
  background-clip: text;
  color: transparent;
}

.section-copy p,
.video-heading p,
.release-panel p {
  color: var(--black);
  font-size: 20.5px;
  font-weight: 300;
  line-height: 27px;
}

.hero {
  background: rgba(255, 240, 229, 0.2);
  gap: clamp(40px, 6vw, 136px);
  grid-template-columns: minmax(500px, 760px) minmax(520px, 944px);
  min-height: 1018px;
  overflow: hidden;
  padding-bottom: 0;
  padding-right: 0;
  padding-top: 0;
}

.hero-copy {
  padding-bottom: 108px;
}

.hero-copy h1 {
  min-height: 234px;
}

.hero-copy p {
  max-width: 760px;
}

.hero-media {
  align-self: end;
  justify-self: end;
  margin-bottom: -16px;
  width: min(100%, 944px);
}

.hero-media img {
  width: 100%;
}

.video-section {
  align-items: center;
  background: var(--paper);
  display: flex;
  flex-direction: column;
  gap: 32px;
  min-height: 1141px;
  padding: 43px 0 86px;
}

.video-heading {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 785px;
  min-height: 156px;
  padding: 0 clamp(28px, 4.7vw, 90px);
  text-align: center;
}

.video-heading p {
  color: var(--black);
  font-size: 20px;
}

.video-heading h2 {
  line-height: 1.185;
}

.video-preview {
  background: #111111;
  border-radius: 0;
  aspect-ratio: 16 / 9;
  max-width: none;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.video-poster,
.video-preview iframe {
  border: 0;
  display: block;
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
}

.video-poster {
  object-fit: cover;
  opacity: 1;
  transition: opacity 240ms ease;
  z-index: 1;
}

.video-preview iframe {
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms ease;
}

.video-preview.is-video-ready .video-poster {
  opacity: 0;
}

.video-preview.is-video-ready iframe {
  opacity: 1;
}

.video-sound-toggle {
  align-items: center;
  background: rgba(17, 17, 17, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 999px;
  bottom: 24px;
  color: var(--white);
  cursor: pointer;
  display: inline-flex;
  font: 800 14px/1 Poppins, Manrope, Arial, sans-serif;
  min-height: 44px;
  padding: 12px 18px;
  position: absolute;
  right: 24px;
  transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
  z-index: 3;
}

.video-sound-toggle:hover,
.video-sound-toggle:focus-visible {
  background: rgba(17, 17, 17, 0.92);
  border-color: rgba(255, 255, 255, 0.72);
}

.video-sound-toggle:focus-visible {
  outline: 3px solid rgba(255, 145, 77, 0.75);
  outline-offset: 3px;
}

.video-sound-toggle:active {
  transform: translateY(1px);
}

@media (min-width: 861px) {
  .video-preview {
    max-height: calc(90vh - 64px);
    max-height: calc(90dvh - 64px);
    width: min(100%, calc(160vh - 113.78px));
    width: min(100%, calc(160dvh - 113.78px));
  }
}

.image-section {
  background: var(--white);
  grid-template-columns: minmax(0, 780px) minmax(520px, 841px);
}

.image-section .section-copy {
  gap: 16.9px;
}

.image-media,
.uploads-media {
  justify-self: end;
}

.image-media img {
  width: min(43.8vw, 841px);
}

.dark {
  background: var(--black);
  color: var(--white);
}

.forecast-section {
  grid-template-columns: minmax(520px, 772px) minmax(0, 772px);
  gap: clamp(48px, 7vw, 192px);
}

.forecast-section .section-copy p {
  color: var(--white);
  font-family: Manrope, Poppins, Arial, sans-serif;
  font-weight: 400;
  line-height: 33.79px;
}

.forecast-board {
  background: var(--dark);
  border-radius: 0;
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 568px;
  padding: 30px 0;
  width: min(100%, 772px);
}

.board-top {
  align-items: center;
  border-bottom: 1px solid var(--line-light);
  display: flex;
  justify-content: space-between;
  padding: 0 0 20px;
}

.board-top > div {
  display: flex;
  flex-direction: column;
  gap: 0.5px;
  padding-top: 4px;
}

.board-top span,
.forecast-grid span {
  color: var(--muted);
  font-family: Manrope, Poppins, Arial, sans-serif;
  font-size: 12.5px;
  font-weight: 800;
  text-transform: uppercase;
}

.board-top strong {
  background: linear-gradient(43deg, #ff3131 0%, #ff914d 100%);
  background-clip: text;
  color: transparent;
  font-family: Manrope, Poppins, Arial, sans-serif;
  font-size: 54.4px;
  font-weight: 700;
  line-height: 54.4px;
}

.board-top em {
  background: rgba(237, 148, 67, 0.34);
  border-radius: 999px;
  color: var(--white);
  font-size: 12.5px;
  font-style: normal;
  font-weight: 800;
  padding: 8px 12px;
  text-transform: uppercase;
}

.forecast-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  min-height: 78px;
}

.forecast-grid article {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1px;
  justify-content: center;
  padding: 18px 14px 14px;
}

.forecast-grid strong {
  color: var(--white);
  font-family: Manrope, Poppins, Arial, sans-serif;
  font-size: 19.2px;
  font-weight: 700;
}

.line-chart {
  background: rgba(255, 255, 255, 0.04);
  flex: 1;
  padding: 22px 14px 14px;
}

.line-chart svg {
  height: 100%;
  min-height: 319px;
  overflow: visible;
  width: 100%;
}

.line-chart text {
  fill: #d9d2cb;
  font-family: Manrope, Poppins, Arial, sans-serif;
  font-size: 22px;
  font-weight: 700;
}

.grid-line {
  fill: none;
  stroke: rgba(255, 255, 255, 0.1);
  stroke-width: 1;
}

.line {
  fill: none;
  stroke-linecap: round;
  stroke-width: 6;
}

.line-low {
  stroke: #f3ad68;
  stroke-dasharray: 10 12;
}

.line-base {
  stroke: #eb544d;
}

.line-high {
  stroke: #ed9443;
  stroke-dasharray: 10 12;
}

.line-real {
  stroke: var(--white);
}

.uploads-section {
  background: var(--paper);
  grid-template-columns: minmax(0, 773px) minmax(520px, 752px);
}

.uploads-media img {
  width: min(39.2vw, 752px);
}

.practice-section {
  background: var(--white);
  grid-template-columns: minmax(540px, 773px) minmax(0, 780px);
  gap: clamp(48px, 8.8vw, 169px);
}

.image-section,
.forecast-section,
.uploads-section,
.practice-section,
.conversation-section,
.cta-section,
footer {
  content-visibility: auto;
  contain-intrinsic-size: auto none auto 900px;
}

.practice-stage {
  align-items: center;
  display: flex;
  min-height: 628px;
  position: relative;
  width: min(100%, 773px);
}

.practice-stage img {
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(17, 17, 17, 0.14);
  display: block;
  height: auto;
  width: 100%;
}

.julia-orbit {
  background:
    linear-gradient(145deg, rgba(18, 15, 14, 0.96), rgba(64, 61, 60, 0.94)),
    radial-gradient(circle at 50% 40%, rgba(237, 148, 67, 0.22), transparent 44%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  box-shadow: var(--shadow);
  height: 540px;
  left: 50%;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  width: 540px;
}

.julia-orbit::before,
.julia-orbit::after {
  border: 1px solid rgba(110, 226, 255, 0.2);
  border-radius: inherit;
  content: "";
  inset: 44px;
  position: absolute;
}

.julia-orbit::after {
  border-color: rgba(235, 84, 77, 0.22);
  inset: 92px;
}

.julia-card,
.signal-card {
  background: rgba(255, 255, 255, 0.94);
  border-radius: 8px;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.24);
  position: absolute;
  z-index: 2;
}

.julia-card {
  align-items: center;
  display: flex;
  gap: 14px;
  left: 50%;
  padding: 14px 16px;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 260px;
}

.julia-card img {
  border-radius: 8px;
  height: 74px;
  object-fit: cover;
  width: 74px;
}

.julia-card strong {
  background: var(--jueri-gradient);
  background-clip: text;
  color: transparent;
  display: block;
  font-size: 22.7px;
  font-weight: 700;
  line-height: 1;
}

.julia-card span,
.signal-card span {
  color: var(--muted);
  display: block;
  font-size: 12.5px;
  font-weight: 800;
  text-transform: uppercase;
}

.signal-card {
  border: 1px solid var(--line);
  min-width: 210px;
  padding: 15px 16px;
}

.signal-card strong {
  color: var(--black);
  display: block;
  font-size: 27.2px;
  font-weight: 700;
}

.signal-card-left {
  left: -6px;
  top: 118px;
}

.signal-card-right {
  bottom: 122px;
  right: -22px;
}

.command-console {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(7, 19, 31, 0.12);
  border-radius: 8px;
  bottom: 0;
  box-shadow: 0 28px 70px rgba(17, 17, 17, 0.2);
  left: 5%;
  overflow: hidden;
  position: absolute;
  width: min(92%, 520px);
  z-index: 4;
}

.console-header {
  align-items: center;
  background: var(--dark);
  color: var(--white);
  display: flex;
  gap: 8px;
  padding: 12px 15px;
}

.console-header i {
  background: #eb544d;
  border-radius: 999px;
  height: 9px;
  width: 9px;
}

.console-header i:nth-child(2) {
  background: #ed9443;
}

.console-header i:nth-child(3) {
  background: #00c814;
}

.console-header strong {
  font-size: 13.1px;
  margin-left: 8px;
}

.conversation {
  display: grid;
  gap: 14px;
  padding: 18px;
}

.bubble {
  border-radius: 8px;
  font-size: 16px;
  line-height: 23.2px;
  padding: 13px 15px;
}

.bubble.user {
  background: var(--cream);
  justify-self: end;
  max-width: 82%;
}

.bubble.assistant {
  background: var(--dark-soft);
  color: var(--white);
  max-width: 88%;
}

.bubble.assistant span,
.bubble.assistant small {
  display: block;
  font-weight: 800;
}

.bubble.assistant strong {
  background: linear-gradient(21deg, #ed9443 0%, #eb544d 100%);
  background-clip: text;
  color: transparent;
  display: block;
  font-family: Manrope, Poppins, Arial, sans-serif;
  font-size: 27.2px;
  font-weight: 700;
  line-height: 39.44px;
}

.mini-chart {
  align-items: flex-end;
  background: var(--cream);
  border-radius: 8px;
  display: flex;
  gap: 8px;
  height: 118px;
  padding: 14px;
}

.mini-chart i {
  background: var(--warm-gradient);
  border-radius: 999px 999px 2px 2px;
  flex: 1;
  height: var(--h);
}

.conversation-section {
  background: var(--black);
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 53px;
  min-height: 1086px;
  padding: 100px clamp(28px, 4.7vw, 90px);
}

.conversation-heading {
  display: grid;
  gap: 26px;
  margin: 0 auto;
  max-width: 1342px;
  text-align: center;
}

.conversation-heading .eyebrow {
  margin: 0 auto;
}

.conversation-heading h2 {
  color: var(--white);
}

.command-list {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 auto;
  max-width: var(--content-width);
  width: 100%;
}

.command-list article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  color: var(--black);
  min-height: 254px;
  padding: 26px;
}

.command-list span {
  background: var(--jueri-gradient);
  background-clip: text;
  color: transparent;
  display: block;
  font-size: 44.8px;
  font-weight: 900;
  line-height: 44.8px;
  margin-bottom: 22px;
}

.command-list h3 {
  font-size: 18.4px;
  font-weight: 700;
  line-height: 21.16px;
  margin-bottom: 10px;
}

.command-list p {
  color: var(--muted);
  font-size: 16px;
  font-weight: 400;
  line-height: 26.4px;
}

.conversation-section > .primary-link {
  align-self: center;
}

.cta-section {
  background: var(--white);
  padding: 86px clamp(28px, 4.7vw, 90px) 162px;
}

.release-panel {
  align-items: center;
  background: var(--jueri-gradient);
  border-radius: 24px;
  box-shadow: 0 28px 80px rgba(17, 17, 17, 0.22);
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin: 0 auto;
  min-height: 715px;
  padding: clamp(56px, 8vw, 126px) 36px;
  text-align: center;
}

.release-panel .eyebrow {
  background: none;
  color: var(--black);
}

.release-panel h2 {
  max-width: 1044px;
}

.release-panel p {
  color: var(--white);
  font-family: Manrope, Poppins, Arial, sans-serif;
  font-weight: 400;
  line-height: 33.79px;
  max-width: 1081px;
}

footer {
  align-items: flex-start;
  background: var(--footer);
  color: var(--white);
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(280px, 1fr) minmax(260px, 1fr) minmax(220px, 1fr);
  min-height: 535px;
  padding: 82px clamp(28px, 8.3vw, 160px);
}

footer div {
  display: flex;
  flex-direction: column;
  gap: 17px;
}

footer strong {
  background: linear-gradient(180deg, #ee9843 24%, #eb544d 100%);
  background-clip: text;
  color: transparent;
  font-size: 20px;
  font-weight: 500;
}

footer a,
footer span {
  color: var(--white);
  font-size: 20px;
  font-weight: 500;
}

footer a:first-of-type span {
  font-size: 31.7px;
}

footer div:first-child a {
  font-size: 41.7px;
  line-height: 1.1;
}

#social-media {
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.9);
  display: flex;
  flex-direction: row;
  gap: 49px;
  grid-column: 1 / -1;
  justify-content: center;
  margin-top: 36px;
  padding-top: 52px;
}

#social-media a {
  align-items: center;
  border-radius: 999px;
  color: var(--white);
  display: inline-flex;
  height: 40px;
  justify-content: center;
  transition: color 160ms ease, transform 160ms ease;
  width: 40px;
}

#social-media a:hover,
#social-media a:focus-visible {
  color: #ee9843;
  transform: translateY(-2px);
}

#social-media a:focus-visible {
  outline: 2px solid #ee9843;
  outline-offset: 4px;
}

#social-media .bi,
#social-media svg {
  display: block;
  height: 40px;
  width: 40px;
}

#social-media svg {
  fill: currentColor;
}

@media (min-width: 1241px) and (max-height: 1000px) {
  .section-frame {
    min-height: auto;
    padding-bottom: clamp(64px, 7.2vh, 72px);
    padding-top: clamp(64px, 7.2vh, 72px);
  }

  .hero {
    min-height: calc(100vh - 64px);
    padding-bottom: 0;
    padding-top: 0;
  }

  .hero-copy {
    padding-bottom: clamp(36px, 5vh, 52px);
  }

  .hero-copy h1 {
    min-height: 0;
  }

  .hero-media {
    width: min(50vw, 840px);
  }

  .video-section {
    gap: 28px;
    min-height: auto;
    padding-bottom: clamp(64px, 7.2vh, 72px);
    padding-top: clamp(52px, 6.4vh, 64px);
  }

  .video-heading {
    min-height: 0;
  }

  .video-preview {
    width: 100%;
  }

  .conversation-section {
    gap: 42px;
    min-height: auto;
    padding-bottom: clamp(64px, 7.2vh, 72px);
    padding-top: clamp(64px, 7.2vh, 72px);
  }

  .cta-section {
    padding-bottom: clamp(88px, 10vh, 100px);
    padding-top: clamp(64px, 7.2vh, 72px);
  }

  .release-panel {
    min-height: auto;
    padding-bottom: clamp(72px, 8vh, 80px);
    padding-top: clamp(72px, 8vh, 80px);
  }

  footer {
    min-height: auto;
    padding-bottom: clamp(64px, 7.2vh, 72px);
    padding-top: clamp(64px, 7.2vh, 72px);
  }
}

@media (max-width: 1240px) {
  .topbar nav {
    gap: 2px;
  }

  .topbar nav a {
    font-size: 13px;
    padding: 9px 9px;
  }

  .section-frame,
  .forecast-section,
  .practice-section {
    gap: 56px;
    grid-template-columns: 1fr;
    min-height: auto;
    padding-bottom: 88px;
    padding-top: 88px;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-bottom: 0;
  }

  .hero-copy {
    padding-bottom: 0;
  }

  .hero-media,
  .image-media,
  .uploads-media,
  .forecast-board,
  .practice-stage {
    justify-self: center;
  }

  .hero-media,
  .image-media img,
  .uploads-media img {
    width: min(100%, 820px);
  }

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

@media (max-width: 860px) {
  html {
    scroll-padding-top: 64px;
  }

  .topbar {
    gap: 16px;
    height: 64px;
    padding: 9px 18px;
  }

  .topbar nav {
    display: none;
  }

  .topbar-action {
    font-size: 13px;
    min-height: 40px;
    padding: 10px 14px;
  }

  .brand img {
    height: 26px;
    width: auto;
  }

  .section-frame,
  .forecast-section,
  .practice-section {
    display: flex;
    flex-direction: column;
    gap: 34px;
    padding: 58px 18px;
  }

  .hero,
  .image-section,
  .uploads-section {
    align-items: stretch;
  }

  .forecast-section .section-copy,
  .practice-section .section-copy {
    order: -1;
  }

  .section-copy,
  .hero-copy {
    max-width: none;
    width: 100%;
  }

  .eyebrow-pill {
    font-size: 11px;
    gap: 10px;
    max-width: 100%;
    width: fit-content;
  }

  h1,
  h2 {
    font-size: clamp(38px, 11vw, 52px);
    line-height: 1.08;
  }

  .hero-copy h1 {
    min-height: 0;
  }

  .section-copy p,
  .video-heading p,
  .release-panel p {
    font-size: 17px;
    line-height: 27px;
  }

  .primary-link {
    font-size: 18px;
    min-height: 50px;
  }

  .hero {
    min-height: auto;
    padding-bottom: 0;
    padding-right: 0;
    padding-top: 36px;
  }

  .hero-media {
    margin-bottom: 0;
  }

  .video-section {
    gap: 24px;
    min-height: auto;
    padding: 58px 18px;
  }

  .video-heading {
    min-height: 0;
  }

  .forecast-board {
    min-height: 0;
    width: 100%;
  }

  .board-top {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
    padding-left: 0;
  }

  .board-top strong {
    font-size: 42px;
    line-height: 1;
  }

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

  .line-chart svg {
    min-height: 240px;
  }

  .practice-stage {
    min-height: 0;
    width: 100%;
  }

  .julia-orbit {
    height: min(92vw, 420px);
    width: min(92vw, 420px);
  }

  .signal-card {
    min-width: 168px;
  }

  .signal-card-left {
    left: 0;
  }

  .signal-card-right {
    right: 0;
  }

  .command-console {
    left: 0;
    width: 100%;
  }

  .conversation-section {
    gap: 34px;
    min-height: auto;
    padding: 58px 18px;
  }

  .conversation-heading {
    text-align: left;
  }

  .conversation-heading .eyebrow,
  .conversation-section > .primary-link {
    align-self: flex-start;
    margin: 0;
  }

  .command-list {
    grid-template-columns: 1fr;
  }

  .cta-section {
    padding: 58px 18px 72px;
  }

  .release-panel {
    min-height: auto;
    padding: 48px 18px;
  }

  footer {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 56px 18px;
  }

  #social-media {
    gap: 30px;
    margin-top: 12px;
    padding-top: 36px;
  }
}

@media (max-width: 480px) {
  .julia-notice-modal {
    padding: 12px;
  }

  .julia-notice-dialog {
    border-radius: 12px;
    max-width: calc(100vw - 24px);
  }

  .julia-notice-close {
    height: 38px;
    right: 10px;
    top: 10px;
    width: 38px;
  }

  .topbar-action {
    display: none;
  }

  .eyebrow {
    max-width: 100%;
  }

  .julia-card {
    width: 228px;
  }

  .julia-card img {
    height: 64px;
    width: 64px;
  }

  .signal-card strong {
    font-size: 22px;
  }

  .bubble {
    font-size: 14px;
  }

  .bubble.user,
  .bubble.assistant {
    max-width: 100%;
  }

  footer div:first-child a {
    font-size: 34px;
  }
}
