:root {
  color-scheme: light;
  --ink: #081f45;
  --navy: #06234a;
  --blue: #0d63b7;
  --teal: #04899a;
  --aqua: #48d6e8;
  --purple: #6d39c9;
  --green: #78a116;
  --orange: #f47f1f;
  --paper: #f8fcff;
  --line: rgba(13, 99, 183, 0.22);
  --soft: #42607d;
  --shadow: 0 26px 70px rgba(6, 35, 74, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 8% 0%, rgba(72, 214, 232, 0.22), transparent 27rem),
    radial-gradient(circle at 100% 24%, rgba(13, 99, 183, 0.16), transparent 31rem),
    linear-gradient(145deg, #ffffff 0%, #f5fbff 48%, #eef8ff 100%);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(72, 214, 232, 0.24) 1px, transparent 1px),
    linear-gradient(90deg, rgba(72, 214, 232, 0.2) 1px, transparent 1px);
  background-size: 92px 92px;
  mask-image: linear-gradient(120deg, transparent 5%, black 30%, black 70%, transparent);
}

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

#circuit-canvas {
  position: fixed;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  opacity: 0.68;
}

.poster-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(1.2rem, 3vw, 2.4rem) 0 3rem;
}

.brand-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: clamp(1.2rem, 2vw, 2rem);
}

.logo-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 0;
  font-weight: 900;
}

.logo-lockup img {
  width: clamp(3.2rem, 7vw, 5.4rem);
  height: clamp(3.2rem, 7vw, 5.4rem);
  object-fit: contain;
}

.logo-lockup span {
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-size: clamp(1.85rem, 4.6vw, 3.25rem);
  line-height: 0.92;
  text-transform: none;
}

.partner-lockup {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(0.75rem, 2vw, 1.2rem);
  min-width: 0;
}

.uci-logo {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.uci-logo img {
  width: clamp(5.1rem, 8vw, 8.8rem);
  height: auto;
  object-fit: contain;
}

.dknet img {
  width: clamp(2.8rem, 5vw, 4.1rem);
  height: clamp(2.8rem, 5vw, 4.1rem);
}

.dknet span {
  color: #365f90;
  font-size: clamp(1.35rem, 7vw, 3.4rem);
  line-height: 0.95;
  text-transform: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.55fr);
  gap: clamp(1.2rem, 4vw, 3rem);
  align-items: center;
  min-height: 560px;
}

.kicker {
  margin: 0 0 0.6rem;
  color: var(--teal);
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-size: clamp(1.25rem, 3vw, 2rem);
  font-weight: 800;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 1rem;
  font-family: "Barlow Condensed", Inter, sans-serif;
  text-transform: uppercase;
}

h1 span {
  display: block;
  color: var(--teal);
  font-size: clamp(4.2rem, 9.4vw, 8.15rem);
  font-weight: 900;
  line-height: 0.82;
  white-space: nowrap;
}

h1 strong {
  display: block;
  color: var(--navy);
  font-family: "Permanent Marker", "Barlow Condensed", sans-serif;
  font-size: clamp(4.1rem, 11vw, 9.2rem);
  font-weight: 400;
  line-height: 0.92;
  text-transform: uppercase;
}

.intro {
  max-width: 690px;
  color: var(--ink);
  font-size: clamp(1.18rem, 2vw, 1.65rem);
  font-weight: 500;
  line-height: 1.45;
}

.intro strong {
  color: var(--teal);
}

.rsvp-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(0.9rem, 2.5vw, 1.6rem);
  flex-wrap: wrap;
  margin-top: 0.6rem;
  width: 150%;
}

.hero-rsvp {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: clamp(0.8rem, 1vw, 1.25rem);
  width: min(100%, 1040px);
  max-width: 100%;
  border: 4px solid white;
  border-radius: 8px;
  padding: clamp(0.9rem, 2vw, 1.15rem) clamp(1.05rem, 3vw, 1.8rem);
  background: linear-gradient(135deg, var(--orange), #ffbf38 45%, var(--teal));
  color: white;
  cursor: pointer;
  box-shadow: 0 22px 46px rgba(6, 35, 74, 0.22);
  transform: rotate(-1deg);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.hero-rsvp::after {
  width: 1.15rem;
  height: 1.15rem;
  border-top: 5px solid white;
  border-right: 5px solid white;
  content: "";
  transform: rotate(45deg);
}

.hero-rsvp span {
  color: white;
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-size: clamp(3rem, 5vw, 5.9rem);
  font-weight: 900;
  line-height: 0.82;
}

.hero-rsvp strong {
  display: grid;
  gap: 0.25rem;
  max-width: 18rem;
  font-size: clamp(0.9rem, 1.7vw, 1.15rem);
  line-height: 1.12;
  text-transform: uppercase;
}

.hero-rsvp strong em {
  color: var(--navy);
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-size: clamp(1.4rem, 2.8vw, 2.1rem);
  font-style: normal;
  font-weight: 900;
  line-height: 0.9;
}

.hero-rsvp:hover {
  box-shadow: 0 28px 56px rgba(6, 35, 74, 0.28);
  transform: translateY(-3px) rotate(-1deg);
}

.dknet-note {
  max-width: 18rem;
  margin: 0.85rem 0 0 auto;
  color: var(--soft);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.35;
  text-align: right;
}

.robot-stage {
  position: relative;
  min-height: 430px;
  transform: translateX(18px);
}

.robot {
  position: relative;
  z-index: 2;
  width: min(100%, 390px);
  filter: drop-shadow(0 28px 28px rgba(6, 35, 74, 0.22));
  animation: float 4.8s ease-in-out infinite;
}

.head,
.body,
.ear,
.hand {
  fill: url("#steel");
  stroke: var(--navy);
  stroke-width: 5;
}

.visor {
  fill: url("#visor");
}

.eye {
  fill: #5ff0ff;
  filter: drop-shadow(0 0 8px rgba(95, 240, 255, 0.9));
}

.arm,
.finger,
.antenna {
  fill: none;
  stroke: var(--navy);
  stroke-linecap: round;
  stroke-width: 14;
}

.finger,
.antenna {
  stroke-width: 8;
}

.cape {
  fill: #087caa;
  stroke: var(--navy);
  stroke-width: 5;
}

.flame {
  fill: url("#jet");
  opacity: 0.92;
  animation: flame 720ms ease-in-out infinite alternate;
}

.flame-b {
  animation-delay: 190ms;
}

.shadow {
  fill: rgba(6, 35, 74, 0.14);
}

.speech-card {
  position: absolute;
  z-index: 1;
  display: grid;
  width: 118px;
  height: 82px;
  place-items: center;
  border: 3px solid rgba(13, 99, 183, 0.7);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 18px 40px rgba(6, 35, 74, 0.08);
}

.speech-card svg {
  width: 54px;
  height: 54px;
  fill: none;
  stroke: var(--blue);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.flow-card {
  top: 40px;
  left: 0;
  animation: drift-left 6s ease-in-out infinite;
}

.code-card {
  top: 10px;
  right: 2%;
  animation: drift-right 5.4s ease-in-out infinite;
}

.hero-premium-card {
  position: relative;
  z-index: 3;
  width: 460px;
  max-width: 100%;
  margin-top: 1rem;
  border: 3px solid white;
  border-radius: 8px;
  padding: clamp(0.95rem, 2vw, 1.2rem);
  background:
    linear-gradient(135deg, rgba(255, 209, 102, 0.16), transparent 42%),
    linear-gradient(120deg, #031b3b, #08366f 60%, var(--teal));
  color: white;
  box-shadow: 0 20px 44px rgba(6, 35, 74, 0.24);
  text-align: left;
}

.hero-copy .hero-premium-card {
  width: min(460px, 100%);
  transform: translateX(34px);
}

.robot-stage .rsvp-row {
  justify-content: flex-start;
  transform: translateX(-210px);
}

.robot-stage .hero-rsvp {
  width: 1040px;
  max-width: none;
}

.hero-premium-card h2 {
  margin-bottom: 0.55rem;
  color: #58dceb;
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
}

.hero-premium-card p {
  display: grid;
  gap: 0.35rem;
  margin: 0;
}

.hero-premium-card strong {
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
  color: #ffd166;
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  line-height: 0.88;
  text-transform: uppercase;
}

.hero-premium-card strong em {
  font-size: clamp(3.2rem, 7vw, 5.4rem);
  font-style: normal;
  line-height: 0.8;
}

.hero-premium-card span {
  color: white;
  font-size: 1.02rem;
  font-weight: 800;
}

.hero-premium-card small {
  display: block;
  margin-top: 0.65rem;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.82rem;
  font-weight: 800;
}

.texera-intro {
  display: grid;
  grid-template-columns: minmax(170px, 0.28fr) minmax(0, 1fr);
  gap: clamp(0.8rem, 2vw, 1.3rem);
  align-items: stretch;
  margin: clamp(0.8rem, 3vw, 1.8rem) 0 0.4rem;
  border: 2px solid rgba(13, 99, 183, 0.15);
  border-radius: 8px;
  padding: clamp(0.75rem, 2vw, 1rem);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 20px 52px rgba(6, 35, 74, 0.08);
  backdrop-filter: blur(12px);
}

.intro-badge {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 0.35rem;
  border-right: 1px solid rgba(6, 35, 74, 0.13);
  padding-right: clamp(0.5rem, 2vw, 1.3rem);
  text-align: center;
}

.intro-badge img {
  width: clamp(76px, 10vw, 104px);
  height: clamp(96px, 13vw, 136px);
  object-fit: contain;
}

.intro-badge span,
.mini-kicker {
  color: var(--teal);
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
}

.texera-intro-copy {
  display: grid;
  align-content: center;
}

.mini-kicker {
  margin-bottom: 0.25rem;
}

.texera-intro h2 {
  max-width: 720px;
  margin-bottom: 0.35rem;
  color: var(--navy);
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-size: clamp(1.75rem, 3.2vw, 2.45rem);
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
}

.texera-intro p {
  margin-bottom: 0;
  color: var(--ink);
  line-height: 1.42;
}

.positioning-grid {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.55rem;
  width: min(100%, 1040px);
  margin-top: 0.75rem;
  margin-right: auto;
  margin-left: auto;
}

.positioning-grid article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.15rem 0.6rem;
  align-items: start;
  min-height: 82px;
  border: 1px solid rgba(13, 99, 183, 0.15);
  border-radius: 8px;
  padding: 0.62rem;
  background: linear-gradient(145deg, rgba(72, 214, 232, 0.12), rgba(255, 255, 255, 0.66));
}

.positioning-grid strong {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--blue);
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-size: 1.08rem;
  text-transform: uppercase;
}

.feature-icon {
  display: grid;
  grid-row: span 2;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 8px;
  background: rgba(72, 214, 232, 0.14);
  color: var(--teal);
}

.feature-icon::before {
  width: 23px;
  height: 23px;
  content: "";
  background: currentColor;
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
}

.workflow-icon::before {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 4h6v6H4V4Zm10 0h6v6h-6V4ZM4 14h6v6H4v-6Zm10 0h6v6h-6v-6ZM10 7h4v2h-4V7Zm2 3h2v4h-2v-4Zm-2 7h4v2h-4v-2Z'/%3E%3C/svg%3E");
}

.agent-icon::before {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 2h2v3h4a3 3 0 0 1 3 3v7a5 5 0 0 1-5 5H9a5 5 0 0 1-5-5V8a3 3 0 0 1 3-3h4V2ZM7 8v7a2 2 0 0 0 2 2h6a2 2 0 0 0 2-2V8H7Zm2 2h2v3H9v-3Zm4 0h2v3h-2v-3ZM2 11h2v4H2v-4Zm18 0h2v4h-2v-4Z'/%3E%3C/svg%3E");
}

.collab-icon::before {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 11a4 4 0 1 1 0-8 4 4 0 0 1 0 8Zm8-1a3 3 0 1 1 0-6 3 3 0 0 1 0 6ZM2 21v-3a6 6 0 0 1 12 0v3H2Zm12 0v-2a7 7 0 0 0-2-5 5 5 0 0 1 10 3v4h-8Z'/%3E%3C/svg%3E");
}

.scale-icon::before {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 17h4v3H4v-3Zm6-5h4v8h-4v-8Zm6-8h4v16h-4V4ZM5 13l4-4 3 3 6-7 1.5 1.3-7.4 8.7-3.1-3.1-2.6 2.6L5 13Z'/%3E%3C/svg%3E");
}

.feature-text {
  color: var(--soft);
  font-size: 0.84rem;
  line-height: 1.28;
}

.event-info-row h2 {
  margin-bottom: 0.2rem;
  color: var(--teal);
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  font-weight: 900;
  text-transform: uppercase;
}

.event-info-row p {
  margin: 0;
  color: var(--ink);
  line-height: 1.45;
}

.event-info-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: clamp(1rem, 3vw, 2rem);
}

.event-info-row article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.25rem 0.8rem;
  align-items: center;
  border: 2px solid rgba(13, 99, 183, 0.14);
  border-radius: 8px;
  padding: clamp(0.85rem, 2vw, 1.1rem);
  background:
    linear-gradient(135deg, rgba(72, 214, 232, 0.14), rgba(255, 255, 255, 0.76)),
    rgba(255, 255, 255, 0.7);
  box-shadow: 0 18px 40px rgba(6, 35, 74, 0.08);
}

.event-info-row article:has(.award-icon) {
  border-color: rgba(244, 127, 31, 0.22);
  background:
    linear-gradient(135deg, rgba(255, 209, 102, 0.24), rgba(255, 255, 255, 0.78)),
    rgba(255, 255, 255, 0.7);
}

.event-info-row p {
  grid-column: 2;
}

.event-icon {
  display: grid;
  grid-row: span 2;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 8px;
  color: white;
  background: linear-gradient(145deg, var(--teal), var(--blue));
  box-shadow: 0 12px 28px rgba(6, 35, 74, 0.12);
}

.event-info-row article:has(.award-icon) .event-icon {
  background: linear-gradient(145deg, var(--orange), #ffbf38);
}

.event-icon::before {
  width: 30px;
  height: 30px;
  content: "";
  background: currentColor;
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
}

.award-icon::before {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 3h10v3h4v3a5 5 0 0 1-5 5h-.4A6 6 0 0 1 13 16.9V20h4v2H7v-2h4v-3.1A6 6 0 0 1 8.4 14H8a5 5 0 0 1-5-5V6h4V3Zm0 5H5v1a3 3 0 0 0 2 2.8V8Zm10 3.8A3 3 0 0 0 19 9V8h-2v3.8Z'/%3E%3C/svg%3E");
}

.join-icon::before {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 11a4 4 0 1 1 0-8 4 4 0 0 1 0 8Zm8-1a3 3 0 1 1 0-6 3 3 0 0 1 0 6ZM2 21v-3a6 6 0 0 1 12 0v3H2Zm12 0v-2a7 7 0 0 0-2-5 5 5 0 0 1 10 3v4h-8Z'/%3E%3C/svg%3E");
}

.schedule-section {
  position: relative;
  overflow: hidden;
  margin-top: clamp(1rem, 3vw, 2.4rem);
  border: 2px solid rgba(13, 99, 183, 0.14);
  border-radius: 8px;
  padding: clamp(1rem, 3vw, 1.6rem);
  background:
    linear-gradient(135deg, rgba(72, 214, 232, 0.14), rgba(255, 255, 255, 0.76) 34%, rgba(255, 209, 102, 0.1)),
    rgba(255, 255, 255, 0.7);
  box-shadow: 0 22px 58px rgba(6, 35, 74, 0.1);
  backdrop-filter: blur(12px);
}

.schedule-section::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 7px;
  content: "";
  background: linear-gradient(90deg, var(--teal), var(--blue), #ffbf38, var(--orange));
}

.section-title {
  display: flex;
  justify-content: center;
  margin-bottom: 1.55rem;
}

.section-title h2 {
  margin: 0;
  padding: 0;
  color: var(--navy);
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  font-weight: 900;
  text-transform: uppercase;
}

.schedule-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.8rem, 2vw, 2rem);
  padding-top: 1rem;
}

.schedule-line::before {
  position: absolute;
  top: 96px;
  left: 10%;
  right: 10%;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--teal), var(--blue), var(--purple));
}

.schedule-line article {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.schedule-icon {
  display: grid;
  width: 86px;
  height: 86px;
  place-items: center;
  border: 5px solid white;
  border-radius: 50%;
  color: white;
  background: linear-gradient(145deg, var(--teal), var(--blue));
  box-shadow: 0 15px 36px rgba(6, 35, 74, 0.16);
}

.schedule-icon::before {
  width: 34px;
  height: 34px;
  content: "";
  background: currentColor;
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
}

.schedule-line article:nth-child(4) .schedule-icon {
  background: linear-gradient(145deg, var(--blue), var(--purple));
}

.flag::before {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 22h2V4h10l1 3-1 3H7v2h11l2-5-2-5H5v20Z'/%3E%3C/svg%3E");
}

.code::before {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m8 7-5 5 5 5 1.4-1.4L5.8 12l3.6-3.6L8 7Zm8 0-1.4 1.4 3.6 3.6-3.6 3.6L16 17l5-5-5-5Z'/%3E%3C/svg%3E");
}

.upload::before {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 18h10a5 5 0 0 0 .8-9.9A7 7 0 0 0 4.4 10 4.5 4.5 0 0 0 7 18Zm4-2V9.8L8.4 12.4 7 11l5-5 5 5-1.4 1.4L13 9.8V16h-2Z'/%3E%3C/svg%3E");
}

.demo::before {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 4h16v12H4V4Zm2 2v8h12V6H6Zm4 12h4v2h3v2H7v-2h3v-2Zm2-10 4 2.5-4 2.5V8Z'/%3E%3C/svg%3E");
}

.schedule-line h3 {
  margin: 0.9rem 0 0.1rem;
  color: var(--navy);
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.schedule-line b {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--teal);
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.schedule-line strong {
  color: var(--navy);
  font-size: 1.1rem;
}

.schedule-line p {
  min-height: 3.3rem;
  margin: 0.85rem 0 0.65rem;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.25;
}

.schedule-line small {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.2rem;
  border: 2px solid rgba(4, 137, 154, 0.2);
  border-radius: 8px;
  padding: 0.45rem 0.65rem;
  background: rgba(72, 214, 232, 0.14);
  color: var(--teal);
  font-weight: 800;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 650ms ease,
    transform 650ms ease;
}

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

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }
  50% {
    transform: translateY(-16px) rotate(1.5deg);
  }
}

@keyframes flame {
  from {
    transform: translateY(0) scaleY(0.95);
  }
  to {
    transform: translateY(7px) scaleY(1.08);
  }
}

@keyframes drift-left {
  0%,
  100% {
    transform: translate(0, 0) rotate(-3deg);
  }
  50% {
    transform: translate(12px, -10px) rotate(2deg);
  }
}

@keyframes drift-right {
  0%,
  100% {
    transform: translate(0, 0) rotate(3deg);
  }
  50% {
    transform: translate(-10px, 12px) rotate(-2deg);
  }
}

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

  .robot-stage {
    min-height: 360px;
    text-align: center;
    transform: none;
  }

  .robot-stage .rsvp-row {
    justify-content: center;
    transform: none;
	width: 95vw;
  }

  .robot-stage .hero-rsvp {
    width: 1040px;
    max-width: none;
    flex: 0 0 1040px;
  }

  .schedule-line,
  .event-info-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .schedule-line::before {
    display: none;
  }

  .texera-intro {
    grid-template-columns: 1fr;
  }

  .intro-badge {
    align-items: center;
    justify-items: start;
    grid-template-columns: auto 1fr;
    border-right: 0;
    border-bottom: 1px solid rgba(6, 35, 74, 0.13);
    padding: 0 0 1rem;
    text-align: left;
  }

  .intro-badge img {
    width: 58px;
    height: 72px;
  }
}

@media (max-width: 680px) {
  .poster-shell {
    width: min(100% - 22px, 1180px);
  }

  .brand-strip {
    align-items: flex-start;
  }

  .logo-lockup span {
    display: none;
  }

  h1 span {
    font-size: clamp(2.95rem, 14.2vw, 4.7rem);
  }

  h1 strong {
    font-size: clamp(3.3rem, 17vw, 5.2rem);
  }

  .robot-stage .hero-rsvp {
    width: min(100%, 1040px);
    max-width: 100%;
    flex: 0 1 auto;
  }

  .hero-copy .hero-premium-card {
    transform: none;
	width: 95vw;
  }

  .schedule-line,
  .event-info-row,
  .positioning-grid {
    grid-template-columns: 1fr;
  }

}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
