@import url("https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:wght@400;500;600;700;800&family=Oswald:wght@600;700&display=swap");
:root {
  --navy: #071c38;
  --teal: #096b8c;
  --cyan: #0a8eb1;
  --orange: #f26b0b;
  --white: #fff;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: #eef6f8;
  color: var(--navy);
  font-family: "Be Vietnam Pro", sans-serif;
}
.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #fff;
}
.hero__art {
  position: absolute;
  inset: 0;
}
.hero__art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.header {
  position: relative;
  z-index: 5;
  height: 96px;
  padding: 0 clamp(32px, 4.2vw, 72px);
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(9, 107, 140, 0.16);
}
.brand {
  width: 330px;
  max-height: 72px;
  object-fit: contain;
  object-position: left center;
}
.nav {
  margin-left: auto;
  display: flex;
  gap: 44px;
}
.nav a {
  color: #101a27;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
}
.header-cta {
  margin-left: 28px;
  padding: 12px 18px;
  border-radius: 7px;
  background: var(--teal);
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 8px 20px rgba(9, 107, 140, 0.18);
}
.header-cta:focus-visible {
  outline: 3px solid rgba(10, 142, 177, 0.42);
  outline-offset: 3px;
}
.menu {
  display: none;
  margin-left: auto;
  border: 0;
  background: transparent;
  padding: 8px;
}
.menu span {
  display: block;
  width: 30px;
  height: 2px;
  margin: 6px;
  background: var(--teal);
}
.hero__copy {
  position: relative;
  z-index: 3;
  width: min(58vw, 840px);
  padding: 48px 0 0 clamp(38px, 4vw, 72px);
}
.eyebrow {
  display: inline-block;
  margin: 0 0 16px;
  padding: 8px 18px;
  border: 2px solid var(--teal);
  border-radius: 9px;
  color: var(--teal);
  font-weight: 700;
  text-transform: uppercase;
}
h1 {
  margin: 0;
  text-transform: uppercase;
  line-height: 0.98;
}
h1 span,
h1 strong {
  display: block;
  font-family: Oswald, "Arial Narrow", sans-serif;
  font-weight: 700;
}
h1 span {
  font-size: clamp(52px, 5.1vw, 78px);
  color: var(--navy);
}
h1 strong {
  margin-top: 18px;
  font-size: clamp(68px, 7.1vw, 108px);
  color: var(--teal);
}
.subtitle {
  margin: 28px 0 0;
  padding: 24px 0;
  border-top: 2px solid var(--teal);
  border-bottom: 1px solid rgba(9, 107, 140, 0.25);
  font-size: clamp(17px, 1.4vw, 23px);
}
.facts {
  display: flex;
  align-items: stretch;
  margin-top: 0;
  background: rgba(255, 255, 255, 0.92);
  max-width: 660px;
}
.facts p {
  margin: 0;
  padding: 22px 26px;
  border-right: 1px solid rgba(9, 107, 140, 0.25);
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 15px;
}
.facts p:last-child {
  border: 0;
}
.cta {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  margin-top: 24px;
  padding: 16px 20px 16px 30px;
  background: var(--orange);
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 18px;
  border-radius: 6px;
  box-shadow: 0 14px 32px rgba(242, 107, 11, 0.18);
}
.cta i {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fff;
  color: var(--orange);
  font-style: normal;
}
.speakers {
  position: absolute;
  z-index: 4;
  inset: 0;
  pointer-events: none;
  color: #fff;
}
.speaker {
  position: absolute;
  margin: 0;
  text-align: center;
  text-shadow: 0 2px 12px #001a2e;
}
.speaker b,
.speaker span {
  display: block;
}
.speaker b {
  font-size: 22px;
}
.speaker span {
  font-size: 17px;
  margin-top: 5px;
}
.speaker:after {
  content: "";
  display: block;
  width: 54px;
  height: 3px;
  margin: 14px auto 0;
  background: var(--cyan);
}
.speaker--aha {
  left: 46%;
  bottom: 24px;
}
.speaker--striver {
  left: 66%;
  bottom: 24px;
}
.speaker--tan {
  right: 6%;
  bottom: 24px;
}
@media (max-width: 900px) {
  .brand {
    width: 250px;
  }
  .nav {
    gap: 20px;
  }
  .nav a {
    font-size: 12px;
  }
  .hero__copy {
    width: 62vw;
  }
  .speaker--aha {
    left: 45%;
  }
  .speaker--striver {
    left: 65%;
  }
}
@media (max-width: 700px) {
  .hero {
    min-height: 1050px;
  }
  .hero__art img {
    object-position: center bottom;
  }
  .header {
    height: 94px;
    padding: 10px 20px;
  }
  .brand {
    width: min(46vw, 210px);
  }
  .nav {
    display: none;
  }
  .menu {
    display: block;
    margin-left: 8px;
  }
  .header-cta {
    margin-left: auto;
    padding: 10px 11px;
    border-radius: 6px;
    font-size: 11px;
    white-space: nowrap;
  }
  .header-cta span { display: none; }
  .hero__copy {
    width: auto;
    padding: 54px 20px 0;
  }
  .eyebrow {
    font-size: 13px;
    margin-bottom: 18px;
  }
  h1 span {
    font-size: clamp(40px, 11.2vw, 49px);
  }
  h1 strong {
    font-size: clamp(49px, 13.5vw, 62px);
    margin-top: 10px;
  }
  .subtitle {
    font-size: 15px;
    margin-top: 20px;
    padding: 17px 0;
  }
  .facts {
    margin-top: 8px;
    max-width: none;
    justify-content: space-between;
  }
  .facts p {
    flex: 1;
    padding: 14px 8px;
    text-align: center;
    font-size: 12px;
  }
  .cta {
    display: flex;
    width: max-content;
    margin: 18px auto 0;
    padding: 13px 17px 13px 24px;
    font-size: 15px;
  }
  .speakers {
    top: auto;
    bottom: 0;
    height: 430px;
  }
  .speaker b {
    font-size: 15px;
  }
  .speaker span {
    font-size: 12px;
  }
  .speaker:after {
    width: 36px;
    height: 2px;
    margin-top: 8px;
  }
  .speaker--aha {
    left: 5%;
    bottom: 22px;
  }
  .speaker--striver {
    left: 39%;
    bottom: 22px;
  }
  .speaker--tan {
    right: 5%;
    bottom: 22px;
  }
}

/* Section 02 final alignment against the approved orbital Imagen reference. */
@media (min-width: 1051px) {
  .value__inner { grid-template-columns: 59.3% 40.7%; }
  .value__visual { left: 40%; }
  .value-note { width: 720px; max-width: 720px; }
}

/* Final mobile hero correction: no header CTA and no CTA/portrait collision. */
@media (max-width: 700px) {
  .header .header-cta {
    display: none;
  }

  .hero {
    height: 216.178vw;
  }

  .hero__art img {
    transform: none;
  }

  .hero .cta {
    margin-top: 14px;
  }
}

@media (max-width: 430px) {
  .hero {
    height: calc(216.178vw + 20px);
  }

  .hero__art img {
    transform: translateY(20px);
  }
}

/* Canonical mobile artwork geometry — preserve the 853×1844 source ratio. */
@media (max-width: 700px) {
  .hero {
    min-height: 0;
    height: calc(100vw * 1844 / 853 + 24px);
    aspect-ratio: auto;
  }

  .hero__art {
    inset: 0;
    overflow: hidden;
  }

  .hero__art img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: top center;
    transform: translateY(24px);
  }
}
@media (max-width: 430px) {
  .brand {
    width: 230px;
  }
  .hero {
    min-height: 980px;
  }
  .hero__copy {
    padding-top: 44px;
  }
  .speakers {
    height: 390px;
  }
}

/* Visual-fidelity corrections against the approved Imagen references. */
@media (min-width: 1051px) {
  .value {
    min-height: 0;
    padding-block: 56px;
  }
  .value__inner {
    max-width: 1440px;
    min-height: 820px;
    grid-template-columns: 61% 39%;
    column-gap: 34px;
  }
  .benefits h2 {
    max-width: 520px;
    font-size: 54px;
    line-height: 1.04;
  }
  .orbital {
    min-height: 690px;
  }
  .value__visual {
    top: 56px;
    left: 37%;
    width: 440px;
    height: 440px;
  }
  .orbit-steps:before {
    left: 17%;
    top: 270px;
    width: 72%;
    height: 270px;
  }
  .orbit-steps li:nth-child(1) { left: 10%; top: 230px; }
  .orbit-steps li:nth-child(2) { left: 5%; top: 405px; }
  .orbit-steps li:nth-child(3) { left: 34%; top: 555px; }
  .orbit-steps li:nth-child(4) { left: 70%; top: 560px; }
  .value-note {
    max-width: 760px;
  }
  .register {
    min-height: 820px;
    padding: 64px 44px 38px;
    border-radius: 0 70px 50px 0;
  }

  .agenda {
    padding-top: 54px;
    padding-bottom: 70px;
  }
  .agenda__head {
    margin-bottom: 24px;
  }
  .agenda__head span { font-size: 38px; }
  .agenda__head h2 { font-size: 54px; padding-bottom: 12px; }
  .journey {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(4, minmax(160px, auto)) minmax(96px, auto);
    column-gap: 96px;
    row-gap: 12px;
  }
  .journey > article:nth-of-type(1) { grid-area: 1 / 1; }
  .journey > article:nth-of-type(2) { grid-area: 1 / 2; }
  .journey > article:nth-of-type(3) { grid-area: 2 / 1; }
  .journey > article:nth-of-type(4) { grid-area: 2 / 2; }
  .journey > article:nth-of-type(5) { grid-area: 3 / 1; }
  .journey > article:nth-of-type(6) { grid-area: 3 / 2; }
  .journey > article:nth-of-type(7) { grid-area: 4 / 1; }
  .journey > article:nth-of-type(8) { grid-area: 4 / 2; }
  .journey > article:nth-of-type(9) { grid-area: 5 / 1 / 6 / 3; }
  .stop,
  .stop:nth-child(n) {
    grid-column: auto;
    min-height: 0;
    padding: 4px 0 10px;
  }
  .stop__meta { margin-bottom: 8px; }
  .stop__meta b { font-size: 36px; }
  .stop__meta time { padding: 6px 13px; font-size: 13px; }
  .stop__body { grid-template-columns: 58px 1fr; gap: 14px; }
  .stop__body i { width: 54px; height: 54px; }
  .stop h3 { font-size: 16px; }
  .stop h4 { font-size: 13px; }
  .stop p { margin-top: 5px; font-size: 12px; line-height: 1.42; }
  .stop--final {
    display: grid;
    grid-template-columns: 270px 1fr;
    align-items: center;
    max-width: 900px;
    padding-top: 8px;
  }
  .stop--final .stop__meta { justify-content: flex-start; margin: 0; }
}

@media (min-width: 701px) {
  .hero { min-height: 0; height: auto; aspect-ratio: 1586 / 992; }
  .hero__art img {
    transform: none;
    object-fit: contain;
    object-position: top center;
  }
}

/* Section 03 — approved action-journey fidelity pass. */
@media (min-width: 801px) {
  .agenda { padding-inline: clamp(34px, 4.5vw, 72px); }
  .journey { isolation: isolate; }
  .journey-route { z-index: 0; height: 100%; }
  .journey-route path {
    stroke: #1599ba;
    stroke-width: 2.25;
    opacity: 0.72;
  }
  .journey::before { display: none; }
  .stop,
  .stop:nth-child(n) {
    z-index: 1;
    padding: 4px 12px 10px;
    background: #fff;
  }
  .stop::after,
  .stop:nth-child(n)::after { display: none; }
  .stop__meta { width: max-content; background: #fff; padding-right: 8px; }
  .stop__body { background: #fff; }
  .stop--final {
    position: relative;
    z-index: 2;
    padding-inline: 18px;
    background: #fff;
  }
}

@media (max-width: 800px) {
  .agenda__head h2 { line-height: 1.08; }
  .journey { padding-left: 31px; }
  .stop { margin-bottom: 38px; }
  .stop__body { align-items: start; }
  .stop p { max-width: 28rem; }
}

/* Section 02–03 readability and rhythm QA corrections. */
@media (min-width: 1051px) {
  .value-note {
    max-width: 720px;
    padding-top: 25px;
    padding-bottom: 27px;
    font-size: 15.5px;
    line-height: 1.65;
  }
  .register input,
  .register select { color: #33465a; }
  .stop h3 { font-size: 17px; line-height: 1.3; }
  .stop h4 { font-size: 13.5px; line-height: 1.35; }
  .stop p { font-size: 12.75px; line-height: 1.44; }
  .stop--final {
    grid-template-columns: 250px minmax(0, 1fr);
    width: min(100%, 900px);
    gap: 18px;
    padding-top: 20px;
  }
  .stop--final .stop__meta {
    justify-self: end;
    align-self: start;
  }
  .stop--final .stop__body {
    display: block;
    min-width: 0;
  }
  .stop--final .stop__body .line-icon { display: none; }
  .stop--final h3 { margin-top: 3px; }
  .stop--final p { max-width: 620px; }
}
@media (max-width: 800px) {
  .stop h3 { line-height: 1.35; }
  .stop h4 { line-height: 1.4; }
  .stop p { line-height: 1.58; }
}
@media (max-width: 700px) {
  .hero { min-height: 0; height: auto; aspect-ratio: 853 / 1844; }
  .hero__art img {
    transform: none;
    object-fit: contain;
    object-position: top center;
  }
  .speakers { height: 36%; }
}

/* Keep this final: preserve the exported hero artwork without deformation. */
@media (min-width: 701px) {
  .hero { min-height: 0; height: auto; aspect-ratio: 1586 / 992; }
  .hero__art img {
    transform: none;
    object-fit: contain;
    object-position: top center;
  }
}
@media (max-width: 700px) {
  .hero { min-height: 0; height: auto; aspect-ratio: 853 / 1844; }
  .hero__art img {
    transform: none;
    object-fit: contain;
    object-position: top center;
  }
  .speakers { height: 36%; }
}

/* Hero media keeps the exact exported Imagen aspect ratio; never stretch it. */
@media (min-width: 701px) {
  .hero {
    min-height: 0;
    height: auto;
    aspect-ratio: 1586 / 992;
  }
  .hero__art img {
    transform: none;
    object-fit: contain;
    object-position: top center;
  }
}
@media (max-width: 700px) {
  .hero {
    min-height: 0;
    height: auto;
    aspect-ratio: 853 / 1844;
  }
  .hero__art img {
    transform: none;
    object-fit: contain;
    object-position: top center;
  }
  .speakers { height: 36%; }
}

/* Production hardening */
.journey-route {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
.journey-route path {
  fill: none;
  stroke: rgba(10, 142, 177, 0.62);
  stroke-width: 2.5;
  vector-effect: non-scaling-stroke;
}
.journey::before {
  display: none;
}
.stop {
  z-index: 1;
}
.stop__body .line-icon,
.contact .line-icon {
  position: relative;
  font-size: 0;
}
.stop__body .line-icon::before,
.contact .line-icon::before {
  content: "";
  width: 20px;
  height: 20px;
  border: 2px solid currentColor;
  border-radius: 50%;
}
.stop__body .line-icon::after,
.contact .line-icon::after {
  content: "";
  position: absolute;
  width: 19px;
  height: 2px;
  background: currentColor;
  transform: rotate(-38deg);
}
.line-icon[data-icon="connect"]::after,
.line-icon[data-icon="team"]::after,
.line-icon[data-icon="community"]::after {
  width: 25px;
  height: 12px;
  background: none;
  border-top: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: none;
}
.line-icon[data-icon="announce"]::before {
  border-radius: 2px 70% 70% 2px;
  transform: rotate(-12deg);
}
.line-icon[data-icon="break"]::before {
  border-radius: 2px 2px 8px 8px;
  height: 15px;
}
.line-icon[data-icon="break"]::after {
  width: 25px;
  transform: translateY(12px);
}
.line-icon[data-icon="done"]::after {
  width: 16px;
  height: 8px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  background: none;
  transform: rotate(-45deg);
}
.line-icon[data-icon="phone"]::before {
  border-width: 0 0 3px 3px;
  border-radius: 0 0 0 16px;
  transform: rotate(-40deg);
}
.register {
  clip-path: none;
  isolation: isolate;
}
.register::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: -58px;
  top: -58px;
  width: 116px;
  height: 116px;
  border-radius: 50%;
  background: #fbfcfc;
}
@media (max-width: 700px) {
  .header {
    z-index: 20;
  }
  .nav.is-open {
    position: absolute;
    display: flex;
    top: 82px;
    left: 16px;
    right: 16px;
    margin: 0;
    padding: 22px;
    flex-direction: column;
    gap: 18px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(9, 107, 140, 0.18);
    border-radius: 16px;
    box-shadow: 0 22px 60px rgba(7, 28, 56, 0.14);
  }
  .nav.is-open a {
    font-size: 14px;
  }
  .journey-route {
    display: none;
  }
  .journey::before {
    display: block;
  }
  .register::before {
    left: -42px;
    top: -42px;
    width: 84px;
    height: 84px;
  }
}

/* Fidelity corrections after desktop/mobile browser comparison. */
@media (min-width: 701px) {
  .hero__art img {
    transform: translateY(128px);
  }
  .hero__copy {
    width: min(62vw, 900px);
  }
  h1 span {
    font-size: clamp(62px, 5.7vw, 86px);
  }
  h1 strong {
    font-size: clamp(82px, 8vw, 118px);
  }
  .facts {
    max-width: 570px;
  }
  .facts p {
    padding-left: 22px;
    padding-right: 22px;
  }
}
@media (max-width: 700px) {
  .hero {
    min-height: 1120px;
  }
  .hero__art img {
    transform: translateY(48px);
  }
  .hero__copy {
    padding-top: 42px;
  }
  h1 span {
    font-size: clamp(34px, 9.7vw, 43px);
    letter-spacing: -1.5px;
    white-space: nowrap;
  }
  h1 strong {
    font-size: clamp(43px, 11.6vw, 54px);
    letter-spacing: -1px;
    white-space: nowrap;
  }
  .subtitle {
    margin-top: 16px;
    padding: 15px 0;
    line-height: 1.45;
  }
  .facts {
    margin-top: 6px;
  }
  .facts p {
    padding: 13px 6px;
  }
  .cta {
    margin-top: 16px;
  }
  .speakers {
    height: 430px;
  }
  .speaker--aha,
  .speaker--striver,
  .speaker--tan {
    bottom: 24px;
  }
}
@media (max-width: 430px) {
  .hero {
    min-height: 1080px;
  }
  .hero__copy {
    padding-top: 38px;
  }
  .speakers {
    height: 405px;
  }
}

.value {
  position: relative;
  background: #fbfcfc;
  padding: 100px clamp(28px, 5vw, 82px);
  overflow: hidden;
}
.value:after {
  content: "";
  position: absolute;
  left: -90px;
  bottom: -130px;
  width: 290px;
  height: 290px;
  border: 1px solid rgba(10, 142, 177, 0.15);
  border-radius: 50%;
}
.value__inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.08fr 0.72fr 1.05fr;
  gap: 34px;
  align-items: center;
}
.benefits h2,
.register h2 {
  margin: 0;
  text-transform: uppercase;
  font-family: Oswald, "Arial Narrow", sans-serif;
}
.benefits h2 {
  font-size: clamp(30px, 2.7vw, 42px);
  color: var(--teal);
  margin-bottom: 42px;
}
.benefits ul {
  list-style: none;
  padding: 0;
  margin: 0 0 44px;
  display: grid;
  gap: 28px;
}
.benefits li {
  position: relative;
  padding-left: 56px;
  font-size: 17px;
  line-height: 1.5;
}
.benefits li:before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -5px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--teal);
  color: #fff;
  font-size: 25px;
  font-weight: 700;
}
.benefits blockquote {
  margin: 0;
  padding: 26px 28px;
  border: 1.5px solid var(--teal);
  border-radius: 10px;
  font-size: 14px;
  font-style: italic;
  line-height: 1.8;
}
.benefits blockquote strong {
  display: block;
  color: var(--teal);
  font-size: 19px;
  font-style: normal;
}
.value__visual {
  height: 690px;
  margin: 0;
  overflow: hidden;
  border-radius: 26px 0 26px 26px;
}
.value__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.register {
  padding: 48px 40px 34px;
  background: linear-gradient(145deg, #096b8c, #087c9d);
  border-radius: 20px;
  color: #fff;
  box-shadow: 0 24px 70px rgba(7, 67, 91, 0.16);
}
.register h2 {
  text-align: center;
  font-size: 34px;
}
.register > p {
  text-align: center;
  line-height: 1.55;
  margin: 12px 0 28px;
}
.register label {
  display: block;
  position: relative;
  margin-bottom: 12px;
}
.register label span {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.register input,
.register select,
.register textarea {
  width: 100%;
  height: 58px;
  border: 0;
  border-radius: 8px;
  background: #fff;
  padding: 0 18px;
  font:
    14px "Be Vietnam Pro",
    sans-serif;
  color: #182431;
}
.register textarea {
  min-height: 88px;
  height: auto;
  padding: 16px 18px;
  line-height: 1.45;
  resize: vertical;
}
.register input::placeholder,
.register textarea::placeholder {
  color: #66717a;
  opacity: 1;
}
.register input:focus,
.register textarea:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 111, 0, 0.32);
}
.register select {
  padding: 0 18px;
  color: #66717a;
}
.register button {
  width: 100%;
  height: 68px;
  border: 0;
  border-radius: 8px;
  background: var(--orange);
  color: #fff;
  text-transform: uppercase;
  font:
    700 19px "Be Vietnam Pro",
    sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  cursor: pointer;
}
.register button i {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  color: var(--orange);
  font-style: normal;
}
.register small {
  display: block;
  text-align: center;
  margin-top: 18px;
}
@media (max-width: 960px) {
  .value__inner {
    grid-template-columns: 1fr 1fr;
  }
  .benefits {
    grid-column: 1/-1;
  }
  .value__visual {
    height: 620px;
  }
  .register {
    align-self: stretch;
  }
}
@media (max-width: 700px) {
  .value {
    padding: 72px 20px;
  }
  .value__inner {
    display: flex;
    flex-direction: column;
    gap: 42px;
  }
  .benefits h2 {
    font-size: 30px;
    margin-bottom: 30px;
  }
  .benefits ul {
    gap: 22px;
    margin-bottom: 32px;
  }
  .benefits li {
    padding-left: 48px;
    font-size: 15px;
  }
  .benefits li:before {
    width: 34px;
    height: 34px;
    font-size: 21px;
  }
  .benefits blockquote {
    padding: 22px;
    font-size: 13px;
  }
  .value__visual {
    width: 100%;
    height: 440px;
    border-radius: 18px;
  }
  .register {
    width: 100%;
    padding: 34px 20px 26px;
    border-radius: 16px;
  }
  .register h2 {
    font-size: 29px;
  }
  .register input,
  .register select {
    height: 56px;
  }
  .register button {
    height: 62px;
    font-size: 17px;
  }
}
.register .select-field span {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Section 02 — approved Orbital redesign */
.value {
  min-height: 900px;
  padding: 72px clamp(26px, 4vw, 62px);
  background: #fbfcfc;
}
.value__inner {
  max-width: 1340px;
  min-height: 756px;
  display: grid;
  grid-template-columns: 56% 44%;
  grid-template-rows: auto 1fr auto;
  gap: 0 26px;
  align-items: start;
}
.benefits {
  grid-column: 1;
  grid-row: 1;
  position: relative;
  z-index: 3;
}
.benefits h2 {
  max-width: 390px;
  margin: 0;
  font-size: clamp(42px, 4.1vw, 62px);
  line-height: 1.02;
  color: var(--navy);
}
.orbital {
  grid-column: 1;
  grid-row: 1/3;
  position: relative;
  min-height: 650px;
}
.value__visual {
  position: absolute;
  top: 42px;
  left: 36%;
  width: 430px;
  height: 430px;
  border: 9px solid #fff;
  outline: 2px solid rgba(10, 142, 177, 0.42);
  border-radius: 50%;
  box-shadow: 0 0 0 10px rgba(10, 142, 177, 0.08);
  overflow: hidden;
}
.value__visual:after {
  content: "";
  position: absolute;
  inset: -24px;
  border: 1px dashed rgba(10, 142, 177, 0.45);
  border-radius: 50%;
}
.value__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.orbit-steps {
  position: absolute;
  inset: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}
.orbit-steps:before {
  content: "";
  position: absolute;
  left: 18%;
  top: 255px;
  width: 69%;
  height: 250px;
  border: 1.5px solid rgba(10, 142, 177, 0.4);
  border-top-color: transparent;
  border-radius: 42% 52% 48% 56%;
}
.orbit-steps li {
  position: absolute;
  text-align: center;
  z-index: 2;
}
.orbit-steps b {
  display: block;
  color: var(--teal);
  font:
    700 48px/1 Oswald,
    "Arial Narrow",
    sans-serif;
}
.orbit-steps span {
  display: block;
  margin-top: 7px;
  font-size: 15px;
  line-height: 1.45;
}
.orbit-steps li:nth-child(1) {
  left: 11%;
  top: 215px;
}
.orbit-steps li:nth-child(2) {
  left: 6%;
  top: 390px;
}
.orbit-steps li:nth-child(3) {
  left: 34%;
  top: 530px;
}
.orbit-steps li:nth-child(4) {
  left: 68%;
  top: 535px;
}
.value-note {
  grid-column: 1;
  grid-row: 3;
  position: relative;
  margin: 0 0 6px;
  padding: 28px 76px 30px 72px;
  border-top: 2px solid var(--teal);
  background: linear-gradient(105deg, #f5f8f8 0 91%, transparent 91%);
  font-size: 14px;
  font-style: italic;
  line-height: 1.75;
}
.value-note:before {
  content: "“";
  position: absolute;
  left: 20px;
  top: 1px;
  color: var(--teal);
  font:
    700 62px Georgia,
    serif;
}
.value-note:after {
  content: "";
  position: absolute;
  right: 7%;
  top: 0;
  width: 5px;
  height: 100%;
  background: var(--teal);
  transform: skewX(-22deg);
}
.value-note strong {
  display: inline;
  color: var(--teal);
  font-size: 18px;
  font-style: normal;
}
.register {
  grid-column: 2;
  grid-row: 1/4;
  position: relative;
  align-self: stretch;
  margin: 0;
  padding: 58px 48px 38px;
  border-radius: 0 74px 48px 0;
  clip-path: path("M 75 0 H 100% V 100% H 0 V 130 Q 75 85 75 0 Z");
  min-height: 756px;
}
.register h2 {
  font-size: 38px;
}
.register input,
.register select {
  height: 62px;
}
.register label {
  margin-bottom: 14px;
}
.register button {
  height: 76px;
  margin-top: 18px;
}
@media (max-width: 1050px) {
  .value__inner {
    grid-template-columns: 1fr;
  }
  .benefits,
  .orbital,
  .value-note,
  .register {
    grid-column: 1;
  }
  .benefits {
    grid-row: 1;
  }
  .orbital {
    grid-row: 2;
  }
  .value-note {
    grid-row: 3;
  }
  .register {
    grid-row: 4;
    margin-top: 42px;
    clip-path: none;
    border-radius: 26px;
    min-height: auto;
  }
  .value__visual {
    left: 50%;
    transform: translateX(-50%);
  }
  .orbit-steps li:nth-child(1) {
    left: 4%;
  }
  .orbit-steps li:nth-child(2) {
    left: 3%;
  }
  .orbit-steps li:nth-child(3) {
    left: 24%;
  }
  .orbit-steps li:nth-child(4) {
    left: 70%;
  }
}
@media (max-width: 700px) {
  .value {
    padding: 68px 20px;
    min-height: 0;
  }
  .value__inner {
    display: grid;
    min-height: 0;
  }
  .benefits h2 {
    font-size: 38px;
    max-width: 330px;
  }
  .orbital {
    min-height: 620px;
    margin-top: 28px;
  }
  .value__visual {
    position: relative;
    top: 0;
    left: 50%;
    width: min(82vw, 360px);
    height: min(82vw, 360px);
  }
  .orbit-steps {
    position: relative;
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px 18px;
  }
  .orbit-steps:before {
    display: none;
  }
  .orbit-steps li,
  .orbit-steps li:nth-child(n) {
    position: relative;
    left: auto;
    top: auto;
    text-align: left;
    padding-left: 0;
  }
  .orbit-steps b {
    font-size: 38px;
  }
  .orbit-steps span {
    font-size: 14px;
  }
  .value-note {
    padding: 24px 32px 26px 52px;
    background: #f5f8f8;
  }
  .value-note:before {
    left: 14px;
  }
  .value-note:after {
    display: none;
  }
  .register {
    margin-top: 34px;
    padding: 40px 20px 28px;
    border-radius: 0 52px 28px 28px;
  }
  .register h2 {
    font-size: 31px;
  }
  .register input,
  .register select {
    height: 56px;
  }
  .register button {
    height: 64px;
  }
}

.agenda {
  position: relative;
  padding: 90px clamp(28px, 5vw, 76px) 110px;
  background: #fff;
  overflow: hidden;
}
.agenda__head {
  max-width: 1280px;
  margin: 0 auto 44px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.agenda__head span {
  color: var(--teal);
  font:
    700 44px/1 Oswald,
    "Arial Narrow",
    sans-serif;
}
.agenda__head h2 {
  flex: 1;
  margin: 0;
  padding: 0 0 18px;
  border-bottom: 2px solid var(--teal);
  color: var(--navy);
  font:
    700 clamp(42px, 4.5vw, 64px)/1 Oswald,
    "Arial Narrow",
    sans-serif;
  text-transform: uppercase;
}
.journey {
  position: relative;
  max-width: 1280px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 96px;
}
.journey:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 20px;
  bottom: 80px;
  width: 2px;
  background: linear-gradient(
    var(--cyan),
    rgba(10, 142, 177, 0.18),
    var(--cyan)
  );
}
.stop {
  position: relative;
  min-height: 205px;
  padding: 8px 0 20px;
}
.stop:nth-child(even) {
  grid-column: 2;
}
.stop:nth-child(odd) {
  grid-column: 1;
}
.stop:after {
  content: "";
  position: absolute;
  top: 36px;
  width: 50px;
  height: 2px;
  background: var(--cyan);
}
.stop:nth-child(odd):after {
  right: -74px;
}
.stop:nth-child(even):after {
  left: -74px;
}
.stop__meta {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 14px;
}
.stop__meta b {
  color: var(--teal);
  font:
    700 42px/1 Oswald,
    "Arial Narrow",
    sans-serif;
}
.stop__meta time {
  padding: 7px 15px;
  border-radius: 6px;
  background: var(--teal);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
}
.stop__body {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
}
.stop__body i {
  width: 64px;
  height: 64px;
  border: 2px solid var(--teal);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--teal);
  font-style: normal;
  font-size: 27px;
}
.stop h3,
.stop h4 {
  margin: 0;
  color: var(--teal);
}
.stop h3 {
  font-size: 18px;
  line-height: 1.35;
}
.stop h4 {
  margin-top: 4px;
  font-size: 15px;
}
.stop p {
  margin: 8px 0 0;
  font-size: 13.5px;
  line-height: 1.55;
}
.stop--break .stop__meta b,
.stop--break h3,
.stop--break .stop__body i {
  color: var(--orange);
}
.stop--break .stop__meta time {
  background: var(--orange);
}
.stop--break .stop__body i {
  border-color: var(--orange);
}
.stop--final {
  grid-column: 1/-1 !important;
  max-width: 860px;
  margin: 0 auto;
  min-height: 0;
}
.stop--final:after {
  display: none;
}
.stop--final .stop__body i {
  background: var(--teal);
  color: #fff;
}
.stop--final .stop__meta {
  justify-content: center;
}
@media (max-width: 800px) {
  .agenda {
    padding: 72px 20px 82px;
  }
  .agenda__head {
    gap: 12px;
    margin-bottom: 32px;
  }
  .agenda__head span {
    font-size: 34px;
  }
  .agenda__head h2 {
    font-size: 38px;
  }
  .journey {
    display: block;
    padding-left: 30px;
  }
  .journey:before {
    left: 7px;
    top: 8px;
    bottom: 20px;
  }
  .stop,
  .stop:nth-child(n),
  .stop--final {
    min-height: 0;
    margin: 0 0 34px;
    padding: 0;
    max-width: none;
  }
  .stop:before {
    content: "";
    position: absolute;
    left: -29px;
    top: 14px;
    width: 12px;
    height: 12px;
    border: 3px solid #fff;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 0 2px var(--cyan);
  }
  .stop:after {
    display: none;
  }
  .stop__meta {
    gap: 12px;
    margin-bottom: 12px;
  }
  .stop__meta b {
    font-size: 34px;
  }
  .stop__meta time {
    font-size: 12px;
    padding: 6px 10px;
  }
  .stop__body {
    grid-template-columns: 48px 1fr;
    gap: 12px;
  }
  .stop__body i {
    width: 44px;
    height: 44px;
    font-size: 20px;
  }
  .stop h3 {
    font-size: 17px;
  }
  .stop h4 {
    font-size: 14px;
  }
  .stop p {
    font-size: 13px;
  }
  .stop--final .stop__meta {
    justify-content: flex-start;
  }
}

.contact {
  background: linear-gradient(120deg, #082f5d, #071c38);
  color: #fff;
}
.contact__inner {
  max-width: 1320px;
  margin: auto;
  padding: 38px clamp(28px, 5vw, 76px);
  display: grid;
  grid-template-columns: 1.05fr 1.25fr 0.85fr;
  align-items: center;
}
.contact__inner > div {
  min-height: 132px;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 0 34px;
  border-right: 1px solid rgba(93, 185, 214, 0.38);
}
.contact__inner > div:first-child {
  padding-left: 0;
}
.contact__inner > div:last-child {
  border: 0;
  padding-right: 0;
}
.contact h2 {
  margin: 0 0 7px;
  font-size: 17px;
}
.contact p {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
}
.contact__qr img {
  width: 118px;
  height: 118px;
  border-radius: 7px;
}
.contact__qr a {
  display: inline-block;
  margin-top: 10px;
  padding: 7px 20px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 6px;
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
}
.contact__community i,
.contact__hotline i {
  flex: 0 0 auto;
  width: 60px;
  height: 60px;
  border: 1px solid #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 29px;
  font-style: normal;
}
.contact__hotline a {
  display: block;
  color: #fff;
  text-decoration: none;
  font-size: 25px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.contact footer {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 17px clamp(28px, 5vw, 76px);
  background: #fff;
  color: #303943;
}
.contact footer p {
  color: #303943;
  font-size: 12px;
}
@media (max-width: 850px) {
  .contact__inner {
    grid-template-columns: 1fr;
  }
  .contact__inner > div {
    padding: 26px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(93, 185, 214, 0.3);
    min-height: 0;
  }
  .contact__inner > div:last-child {
    border-bottom: 0;
  }
  .contact footer {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
}
@media (max-width: 430px) {
  .contact__inner {
    padding: 28px 20px;
  }
  .contact__inner > div {
    gap: 16px;
  }
  .contact__qr img {
    width: 106px;
    height: 106px;
  }
  .contact__community i,
  .contact__hotline i {
    width: 48px;
    height: 48px;
    font-size: 23px;
  }
  .contact__hotline a {
    font-size: 22px;
  }
  .contact footer {
    padding: 16px 20px;
  }
}

/* Final approved-reference geometry overrides (must remain last). */
@media (min-width: 1051px) {
  .value { min-height: 0; padding-block: 56px; }
  .value__inner {
    max-width: 1440px; min-height: 820px;
    grid-template-columns: 61% 39%; column-gap: 34px;
  }
  .benefits h2 { max-width: 520px; font-size: 54px; line-height: 1.04; }
  .orbital { min-height: 690px; }
  .value__visual { top: 56px; left: 37%; width: 440px; height: 440px; }
  .orbit-steps:before { left: 17%; top: 270px; width: 72%; height: 270px; }
  .orbit-steps li:nth-child(1) { left: 10%; top: 230px; }
  .orbit-steps li:nth-child(2) { left: 5%; top: 405px; }
  .orbit-steps li:nth-child(3) { left: 34%; top: 555px; }
  .orbit-steps li:nth-child(4) { left: 70%; top: 560px; }
  .value-note { max-width: 760px; }
  .register {
    min-height: 820px; padding: 64px 44px 38px;
    border-radius: 0 70px 50px 0;
  }
  .agenda { padding-top: 54px; padding-bottom: 70px; }
  .agenda__head { margin-bottom: 24px; }
  .agenda__head span { font-size: 38px; }
  .agenda__head h2 { font-size: 54px; padding-bottom: 12px; }
  .journey {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(4, minmax(160px, auto)) minmax(96px, auto);
    column-gap: 96px; row-gap: 12px;
  }
  .journey > article:nth-of-type(1) { grid-area: 1 / 1; }
  .journey > article:nth-of-type(2) { grid-area: 1 / 2; }
  .journey > article:nth-of-type(3) { grid-area: 2 / 1; }
  .journey > article:nth-of-type(4) { grid-area: 2 / 2; }
  .journey > article:nth-of-type(5) { grid-area: 3 / 1; }
  .journey > article:nth-of-type(6) { grid-area: 3 / 2; }
  .journey > article:nth-of-type(7) { grid-area: 4 / 1; }
  .journey > article:nth-of-type(8) { grid-area: 4 / 2; }
  .journey > article:nth-of-type(9) { grid-area: 5 / 1 / 6 / 3; }
  .stop, .stop:nth-child(n) {
    grid-column: auto; min-height: 0; padding: 4px 0 10px;
  }
  .stop__meta { margin-bottom: 8px; }
  .stop__meta b { font-size: 36px; }
  .stop__meta time { padding: 6px 13px; font-size: 13px; }
  .stop__body { grid-template-columns: 58px 1fr; gap: 14px; }
  .stop__body i { width: 54px; height: 54px; }
  .stop h3 { font-size: 16px; }
  .stop h4 { font-size: 13px; }
  .stop p { margin-top: 5px; font-size: 12px; line-height: 1.42; }
  .stop--final {
    display: grid; grid-template-columns: 270px 1fr;
    align-items: center; max-width: 900px; padding-top: 8px;
  }
  .stop--final .stop__meta { justify-content: flex-start; margin: 0; }
}
@media (max-width: 700px) {
  .hero { min-height: 0; height: auto; aspect-ratio: 853 / 1844; }
  .hero__art img {
    transform: none;
    object-fit: contain;
    object-position: top center;
  }
  .speakers { height: 36%; }
}
@media (max-width: 430px) {
  .hero { min-height: 0; }
}

@media (min-width: 701px) {
  .hero { min-height: 0; height: auto; aspect-ratio: 1586 / 992; }
  .hero__art img {
    transform: none;
    object-fit: contain;
    object-position: top center;
  }
}

/* Final Section 03 geometry; keep after legacy declarations. */
@media (min-width: 801px) {
  .agenda { padding-inline: clamp(34px, 4.5vw, 72px); }
  .journey { isolation: isolate; }
  .journey-route { z-index: 0; height: 100%; }
  .journey-route path {
    stroke: #1599ba; stroke-width: 2.25; opacity: 0.72;
  }
  .journey::before { display: none; }
  .stop, .stop:nth-child(n) {
    z-index: 1; padding: 4px 12px 10px; background: transparent;
  }
  .stop::after, .stop:nth-child(n)::after { display: none; }
  .stop__meta { width: max-content; padding-right: 8px; background: transparent; }
  .stop__body { background: transparent; }
  .stop--final {
    z-index: 2; padding-inline: 18px; background: transparent;
  }
}
@media (max-width: 800px) {
  .agenda__head h2 { line-height: 1.08; }
  .journey { padding-left: 31px; }
  .stop { margin-bottom: 38px; }
  .stop__body { align-items: start; }
  .stop p { max-width: 28rem; }
}

/* Final typography scale — section titles and responsive hierarchy. */
.benefits h2,
.register h2,
.agenda__head h2 {
  font-family: Oswald, "Arial Narrow", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}
.stop h3,
.stop h4 {
  font-family: "Be Vietnam Pro", sans-serif;
  font-weight: 700;
}
@media (min-width: 1051px) {
  .benefits h2,
  .agenda__head h2 { font-size: 54px; line-height: 1.04; }
  .register h2 { font-size: 38px; line-height: 1.12; }
  .stop h3 { font-size: 17px; line-height: 1.3; }
  .stop h4 { font-size: 13.5px; line-height: 1.35; }
  .stop p { font-size: 12.75px; line-height: 1.44; }
  .stop--final {
    grid-template-columns: 250px minmax(0, 1fr);
    width: min(100%, 900px);
    gap: 18px;
    padding-top: 20px;
  }
  .stop--final .stop__meta { justify-self: end; align-self: start; }
  .stop--final .stop__body { display: block; min-width: 0; }
  .stop--final .stop__body .line-icon { display: none; }
  .stop--final h3 { margin-top: 3px; }
  .stop--final p { max-width: 620px; }
}
@media (min-width: 701px) and (max-width: 1050px) {
  .benefits h2,
  .agenda__head h2 { font-size: 42px; line-height: 1.05; }
  .register h2 { font-size: 34px; line-height: 1.12; }
}
@media (max-width: 700px) {
  .benefits h2,
  .agenda__head h2 { font-size: 38px; line-height: 1.08; }
  .register h2 { font-size: 31px; line-height: 1.15; }
  .stop h3 { font-size: 17px; line-height: 1.35; }
  .stop h4 { font-size: 14px; line-height: 1.4; }
  .stop p { font-size: 13px; line-height: 1.58; }
}

/* Imagen-generated Agenda icon system. */
.stop__body .line-icon {
  background-repeat: no-repeat;
  background-position: center;
  background-size: 82% 82%;
}
.stop__body .line-icon::before,
.stop__body .line-icon::after { content: none; display: none; }
.line-icon[data-icon="connect"] { background-image: url("assets/icon-connect.png"); }
.line-icon[data-icon="announce"] { background-image: url("assets/icon-announce.png"); }
.line-icon[data-icon="insight"] { background-image: url("assets/icon-insight.png"); }
.line-icon[data-icon="audit"] { background-image: url("assets/icon-audit.png"); }
.line-icon[data-icon="break"] { background-image: url("assets/icon-break.png"); }
.line-icon[data-icon="workflow"] { background-image: url("assets/icon-workflow.png"); }
.line-icon[data-icon="team"] { background-image: url("assets/icon-team.png"); }
.line-icon[data-icon="proof"] { background-image: url("assets/icon-proof.png"); }
.stop--final .stop__body .line-icon[data-icon="done"] {
  background-image: url("assets/icon-done.png");
  background-color: #fff;
  background-size: 86% 86%;
}

/* Imagen-generated utility icons used across the complete page. */
.utility-icon,
.register label::before,
.register small::before {
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.utility-icon {
  display: inline-block;
  flex: 0 0 auto;
  font-size: 0;
}
.utility-icon[data-icon="calendar"] { background-image: url("assets/icon-calendar.png"); }
.utility-icon[data-icon="clock"] { background-image: url("assets/icon-clock.png"); }
.utility-icon[data-icon="location"] { background-image: url("assets/icon-location.png"); }
.utility-icon[data-icon="arrow"] { background-image: url("assets/icon-arrow.png"); }
.facts p {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
}
.facts p > .utility-icon { width: 30px; height: 30px; }
.facts p > span { display: flex; flex-direction: column; gap: 4px; }
.cta .utility-icon,
.register button .utility-icon {
  width: 34px;
  height: 34px;
  padding: 8px;
  border-radius: 50%;
  background-color: #fff;
  background-size: 58%;
}
.cta .utility-icon img,
.register button .utility-icon img {
  display: block;
  width: 18px;
  height: 18px;
  object-fit: contain;
}
.register label::before {
  content: "";
  position: absolute;
  z-index: 2;
  left: 16px;
  top: 50%;
  width: 22px;
  height: 22px;
  transform: translateY(-50%);
}
.register label:nth-of-type(1)::before { background-image: url("assets/icon-user.png"); }
.register label:nth-of-type(2)::before { background-image: url("assets/icon-phone.png"); }
.register label:nth-of-type(3)::before { background-image: url("assets/icon-email.png"); }
.register label:nth-of-type(4)::before { background-image: url("assets/icon-building.png"); }
.register label:not(.interest-field) input { padding-left: 50px; }
.register .select-field::before { content: none; }
.register .interest-field::before { content: none; }
.register select {
  appearance: none;
  padding-right: 48px;
  background-image: url("assets/icon-chevron.png");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 20px 20px;
}
.register small {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.register small::before {
  content: "";
  width: 17px;
  height: 17px;
  background-image: url("assets/icon-lock.png");
  filter: brightness(0) invert(1);
}
.contact__community .line-icon,
.contact__hotline .line-icon {
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 68% 68%;
}
.contact__community .line-icon::before,
.contact__community .line-icon::after,
.contact__hotline .line-icon::before,
.contact__hotline .line-icon::after { content: none; display: none; }
.contact__community .line-icon { background-image: url("assets/icon-community.png"); }
.contact__hotline .line-icon { background-image: url("assets/icon-phone-call.png"); }

/* Hero mobile CTA: compact touch target with safe clearance above speakers. */
@media (max-width: 700px) {
  .hero .cta {
    min-height: 44px;
    margin-top: 2px;
    padding: 7px 13px 7px 20px;
    gap: 16px;
    border-radius: 7px;
    font-size: 14px;
    line-height: 1;
    box-shadow: 0 12px 28px rgba(242, 107, 11, 0.2);
    touch-action: manipulation;
  }
  .hero .cta .utility-icon {
    width: 26px;
    height: 26px;
    background-size: 42%;
  }
  .hero .cta .utility-icon img { width: 15px; height: 15px; }
  .hero .cta:active { transform: translateY(1px); }
  .hero .cta:focus-visible {
    outline: 3px solid rgba(10, 142, 177, 0.5);
    outline-offset: 3px;
  }
}

/* Desktop hero copy must stop before the Aha Tran portrait. */
@media (min-width: 901px) {
  .hero .subtitle {
    width: 40vw;
    max-width: 760px;
  }
}
@media (min-width: 701px) and (max-width: 900px) {
  .hero .subtitle { width: 43vw; }
}

/* Mobile hero artwork: preserve source ratio and add a safe CTA/portrait gap. */
@media (max-width: 700px) {
  .hero {
    height: calc(216.178vw + 32px);
    min-height: 0;
    aspect-ratio: auto;
  }
  .hero__art img {
    transform: translateY(32px);
    object-fit: contain;
    object-position: top center;
  }
}

/* Section 02 final alignment; intentionally last to override legacy passes. */
@media (min-width: 1051px) {
  .value__inner { grid-template-columns: 59.3% 40.7%; }
  .value__visual { left: 40%; }
  .value-note { width: 720px; max-width: 720px; }
}

/* Final mobile hero information layout. Keep this block at EOF. */
@media (max-width: 700px) {
  .header .header-cta { display: none; }

  .hero {
    min-height: 0;
    height: calc(100vw * 1844 / 853 + 32px);
    aspect-ratio: auto;
  }

  .hero__art img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: top center;
    transform: translateY(32px);
  }

  .hero .subtitle {
    margin-top: 14px;
    padding: 11px 0 12px;
    font-size: 14px;
    line-height: 1.45;
  }

  .hero .facts {
    display: grid;
    grid-template-columns: 1.28fr 0.82fr 0.9fr;
    align-items: stretch;
    margin-top: 6px;
  }

  .hero .facts p {
    min-width: 0;
    padding: 10px 6px;
    grid-template-columns: 26px minmax(0, 1fr);
    gap: 6px;
    font-size: 12px;
    line-height: 1.25;
    text-align: center;
  }

  .hero .facts p > .utility-icon {
    width: 25px;
    height: 25px;
  }

  .hero .facts p > span {
    justify-content: center;
    gap: 2px;
  }

  .hero .facts p:first-child > span > span {
    white-space: nowrap;
  }

  .hero .cta {
    position: absolute;
    z-index: 6;
    top: 92vw;
    left: 50%;
    min-height: 44px;
    margin: 0;
    transform: translateX(-50%);
    white-space: nowrap;
  }

  .hero .cta:active {
    transform: translate(-50%, 1px);
  }
}

@media (max-width: 430px) {
  .hero .cta { top: 88vw; }
}

.form-status {
  display: block;
  min-height: 1.4em;
  margin-top: 10px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
}

.register button:disabled {
  cursor: wait;
  opacity: 0.72;
}

/* Final mobile header and menu icon alignment. */
@media (max-width: 700px) {
  .header {
    height: 94px;
    padding: 10px 20px;
    justify-content: space-between;
  }

  .brand {
    width: min(56vw, 220px);
    max-height: 64px;
  }

  .menu {
    width: 44px;
    height: 44px;
    margin: 0;
    padding: 7px;
    display: grid;
    place-content: center;
    gap: 6px;
    flex: 0 0 44px;
    border-radius: 6px;
    cursor: pointer;
  }

  .menu span {
    width: 30px;
    height: 3px;
    margin: 0;
    border-radius: 999px;
    transform-origin: center;
    transition: transform 180ms ease, opacity 140ms ease;
  }

  .menu[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .menu[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  .nav.is-open {
    top: 86px;
    left: 12px;
    right: 12px;
  }
}
