.mobile-shell {
  display: none;
}

@media (max-width: 760px) {
  :root {
    --m-ink: #0f172a;
    --m-copy: #44526a;
    --m-muted: #71809a;
    --m-line: rgba(146, 177, 232, 0.35);
    --m-card: rgba(255, 255, 255, 0.82);
    --m-glass: rgba(255, 255, 255, 0.76);
    --m-blue: #2367ff;
    --m-cyan: #13bdf2;
    --m-violet: #7048ff;
    --m-magenta: #e83fcf;
    --m-sun: #ff8757;
    --m-radius: 22px;
    --m-shadow: 0 18px 44px rgba(45, 76, 150, 0.13);
  }

  html {
    scroll-behavior: smooth;
  }

  body {
    min-width: 0;
    color: var(--m-ink);
    background:
      radial-gradient(circle at 16% 8%, rgba(35, 103, 255, 0.12), transparent 28%),
      radial-gradient(circle at 92% 14%, rgba(232, 63, 207, 0.12), transparent 26%),
      #eef5ff;
    font-size: 15px;
    line-height: 1.65;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
  }

  body > .topbar,
  body > main,
  body > .footer {
    display: none !important;
  }

  .mobile-shell {
    display: block;
  }

  .m-app {
    min-height: 100vh;
    padding-bottom: 24px;
    overflow: hidden;
  }

  .m-topbar {
    position: fixed;
    top: 10px;
    right: 10px;
    left: 10px;
    z-index: 40;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    align-items: center;
    justify-items: center;
    border: 1px solid rgba(146, 177, 232, 0.42);
    border-radius: 24px;
    padding: 10px 10px 9px;
    background: rgba(247, 250, 255, 0.84);
    box-shadow: 0 16px 36px rgba(42, 64, 134, 0.14);
    backdrop-filter: blur(20px) saturate(1.25);
  }

  .m-logo {
    display: inline-flex;
    min-width: 0;
    max-width: min(190px, 72vw);
    justify-self: center;
  }

  .m-logo img {
    width: 164px;
    max-width: 100%;
    height: 30px;
    object-fit: contain;
  }

  .m-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: 900;
    line-height: 1;
    white-space: nowrap;
  }

  .m-nav {
    grid-column: 1 / -1;
    width: 100%;
    display: flex;
    gap: 4px;
    overflow-x: auto;
    padding: 0 8px 4px;
    scroll-padding-inline: 18px;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .m-nav::-webkit-scrollbar,
  .m-card-rail::-webkit-scrollbar,
  .m-producer-rail::-webkit-scrollbar,
  .m-speaker-rail::-webkit-scrollbar,
  .m-forum-rail::-webkit-scrollbar {
    display: none;
  }

  .m-nav a {
    position: relative;
    flex: 0 0 auto;
    min-height: 29px;
    display: inline-flex;
    align-items: center;
    border: 1px solid transparent;
    border-radius: 999px;
    padding: 0 8px;
    color: #3d4b63;
    background: rgba(255, 255, 255, 0.64);
    font-size: 11.5px;
    font-weight: 850;
    scroll-margin-inline: 18px;
    scroll-snap-align: center;
    transition: color 0.18s ease, background 0.18s ease;
  }

  .m-nav a::after {
    position: absolute;
    right: 12px;
    bottom: 3px;
    left: 12px;
    height: 2px;
    border-radius: 999px;
    content: "";
    opacity: 0;
    background: linear-gradient(90deg, var(--m-blue), var(--m-magenta));
    transition: opacity 0.18s ease;
  }

  .m-nav a.is-active {
    color: var(--m-blue);
    background: rgba(255, 255, 255, 0.72);
  }

  .m-nav a.is-active::after {
    opacity: 1;
  }

  .m-hero {
    position: relative;
    min-height: 0;
    display: grid;
    align-items: start;
    overflow: hidden;
    padding: 136px 16px 48px;
    isolation: isolate;
  }

  .m-hero-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.72) 46%, rgba(255, 255, 255, 0.08) 100%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.48) 42%, rgba(238, 245, 255, 0.74) 100%),
      url("https://image.aixq.cc/kol/uploads/woshipm2026/assets/hero-ai-impact-mobile.png") center top / 100% auto no-repeat,
      #f7fbff;
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.72) 46%, rgba(255, 255, 255, 0.08) 100%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.48) 42%, rgba(238, 245, 255, 0.74) 100%),
      image-set(
        url("https://image.aixq.cc/kol/uploads/woshipm2026/assets/hero-ai-impact-mobile.webp") type("image/webp"),
        url("https://image.aixq.cc/kol/uploads/woshipm2026/assets/hero-ai-impact-mobile.png") type("image/png")
      ) center top / 100% auto no-repeat,
      #f7fbff;
  }

  .m-hero::after {
    position: absolute;
    right: -18%;
    bottom: -9%;
    z-index: -1;
    width: 82vw;
    height: 82vw;
    border-radius: 50%;
    content: "";
    background: radial-gradient(circle, rgba(232, 63, 207, 0.22), rgba(35, 103, 255, 0.08) 48%, transparent 70%);
    filter: blur(10px);
  }

  .m-hero-copy {
    max-width: 360px;
  }

  .m-hero-kicker,
  .m-section-head span,
  .m-sub-head span,
  .m-producer-card > span,
  .m-forum-block-head span {
    color: var(--m-magenta);
    font-size: 12px;
    font-weight: 950;
    line-height: 1.2;
    text-transform: uppercase;
  }

  .m-hero h1 {
    margin: 14px 0 0;
    font-family: "Smiley Sans", "PingFang SC", "Microsoft YaHei", sans-serif;
    font-style: oblique;
    font-weight: 900;
    letter-spacing: 0;
  }

  .m-hero h1 span,
  .m-hero h1 strong {
    display: block;
  }

  .m-hero h1 span {
    width: fit-content;
    color: transparent;
    background: linear-gradient(96deg, var(--m-blue), var(--m-violet) 45%, var(--m-magenta) 78%);
    background-clip: text;
    -webkit-background-clip: text;
    font-size: clamp(70px, 21vw, 86px);
    line-height: 0.82;
  }

  .m-hero h1 strong {
    margin-top: 5px;
    color: #030712;
    font-size: clamp(38px, 11vw, 45px);
    line-height: 1;
  }

  .m-hero h1::after {
    display: block;
    width: 108px;
    height: 4px;
    margin-top: 13px;
    border-radius: 99px;
    content: "";
    background: linear-gradient(90deg, var(--m-blue), var(--m-violet), var(--m-magenta), var(--m-sun));
  }

  .m-hero-copy > p {
    max-width: 330px;
    margin: 17px 0 0;
    color: #3f4d63;
    font-size: 15.5px;
    font-weight: 850;
    line-height: 1.58;
  }

  .m-hero-meta {
    display: grid;
    gap: 7px;
    margin-top: 18px;
  }

  .m-hero-meta b {
    display: flex;
    gap: 8px;
    align-items: center;
    color: #172033;
    font-size: 13px;
    line-height: 1.35;
  }

  .m-hero-meta b::before {
    width: 8px;
    height: 8px;
    flex: 0 0 auto;
    border-radius: 50%;
    content: "";
    background: linear-gradient(135deg, var(--m-cyan), var(--m-violet));
    box-shadow: 0 0 0 5px rgba(19, 189, 242, 0.1);
  }

  .m-hero-actions {
    display: flex;
    gap: 9px;
    margin-top: 22px;
  }

  .m-button {
    min-height: 42px;
    padding: 0 18px;
    font-size: 13px;
  }

  .m-button.primary {
    color: #fff;
    background: linear-gradient(135deg, var(--m-blue), var(--m-violet) 55%, var(--m-cyan));
    box-shadow: 0 16px 32px rgba(35, 103, 255, 0.2);
  }

  .m-button.secondary {
    color: var(--m-ink);
    border-color: rgba(146, 177, 232, 0.5);
    background: rgba(255, 255, 255, 0.72);
  }

  .m-section {
    scroll-margin-top: 116px;
    padding: 54px 16px;
  }

  .m-section-head {
    margin-bottom: 22px;
  }

  .m-section-head h2 {
    margin: 8px 0 0;
    color: var(--m-ink);
    font-size: clamp(29px, 8vw, 34px);
    line-height: 1.14;
    letter-spacing: 0;
  }

  .m-section-head p {
    margin: 13px 0 0;
    color: var(--m-copy);
    font-size: 14.5px;
    line-height: 1.72;
  }

  .m-card-rail,
  .m-producer-rail,
  .m-speaker-rail,
  .m-forum-rail {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    margin: 0 -16px;
    padding: 0 16px 8px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .m-pillar-card,
  .m-producer-card,
  .m-speaker-card,
  .m-forum-card,
  .m-time-card,
  .m-agenda-summary,
  .m-day-panel,
  .m-highlight-list article,
  .m-ticket-stack article,
  .m-contact-card,
  .m-partner-grid div {
    border: 1px solid var(--m-line);
    border-radius: var(--m-radius);
    background: var(--m-card);
    box-shadow: 0 10px 30px rgba(45, 76, 150, 0.08);
    backdrop-filter: blur(14px);
  }

  .m-pillar-card {
    min-width: 224px;
    scroll-snap-align: start;
    padding: 18px;
  }

  .m-pillar-card .pillar-icon {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    overflow: hidden;
    margin-bottom: 0;
    border-radius: 12px;
    color: #fff;
    background:
      radial-gradient(circle at 28% 20%, rgba(255, 255, 255, 0.38), transparent 34%),
      linear-gradient(135deg, var(--m-blue), var(--m-violet));
    box-shadow: 0 10px 20px rgba(35, 103, 255, 0.14);
  }

  .m-pillar-card .pillar-icon svg {
    width: 21px;
    height: 21px;
  }

  .m-pillar-card:nth-child(2) .pillar-icon {
    background:
      radial-gradient(circle at 28% 20%, rgba(255, 255, 255, 0.38), transparent 34%),
      linear-gradient(135deg, var(--m-violet), var(--m-magenta));
  }

  .m-pillar-card:nth-child(3) .pillar-icon {
    background:
      radial-gradient(circle at 28% 20%, rgba(255, 255, 255, 0.38), transparent 34%),
      linear-gradient(135deg, var(--m-cyan), var(--m-blue));
  }

  .m-pillar-card strong,
  .m-agenda-summary strong,
  .m-ticket-stack strong {
    display: block;
    margin-top: 16px;
    color: var(--m-ink);
    font-size: 18px;
    line-height: 1.35;
  }

  .m-pillar-card p,
  .m-agenda-summary p,
  .m-time-card p,
  .m-forum-card li,
  .m-producer-card p,
  .m-speaker-card p,
  .m-highlight-list p,
  .m-ticket-stack p,
  .m-contact-card p,
  .m-footer p {
    color: var(--m-copy);
    font-size: 13.5px;
    line-height: 1.62;
  }

  .m-agenda {
    background:
      linear-gradient(180deg, #eef5ff 0%, #fff 48%, #f6f8ff 100%);
  }

  .m-day-switch {
    position: sticky;
    top: 108px;
    z-index: 12;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin: 0 -4px 16px;
    padding: 8px 4px;
    background: rgba(240, 246, 255, 0.9);
    backdrop-filter: blur(14px);
  }

  .m-day-switch button {
    min-width: 0;
    display: grid;
    gap: 2px;
    border: 1px solid rgba(146, 177, 232, 0.38);
    border-radius: 18px;
    padding: 10px 12px;
    color: var(--m-copy);
    background: rgba(255, 255, 255, 0.7);
    text-align: left;
  }

  .m-day-switch button.is-active {
    color: #fff;
    border-color: transparent;
    background: linear-gradient(135deg, var(--m-blue), var(--m-violet));
    box-shadow: 0 12px 26px rgba(35, 103, 255, 0.2);
  }

  .m-day-switch span,
  .m-day-switch em {
    font-size: 11px;
    font-style: normal;
    font-weight: 900;
  }

  .m-day-switch b {
    font-size: 19px;
    line-height: 1.16;
  }

  .m-day-panel {
    display: none;
    padding: 16px;
    background: rgba(255, 255, 255, 0.58);
  }

  .m-day-panel.is-active {
    display: block;
  }

  .m-day-title {
    margin-bottom: 12px;
  }

  .m-day-title span {
    color: var(--m-magenta);
    font-size: 12px;
    font-weight: 900;
  }

  .m-day-title h3 {
    margin: 4px 0 0;
    font-size: 28px;
    line-height: 1.1;
  }

  .m-agenda-summary {
    padding: 16px;
    box-shadow: none;
  }

  .m-agenda-summary strong {
    margin-top: 0;
    font-size: 22px;
  }

  .m-timeline {
    display: grid;
    gap: 10px;
    margin-top: 12px;
  }

  .m-time-card {
    position: relative;
    padding: 15px 15px 15px 18px;
  }

  .m-time-card::before {
    position: absolute;
    top: 18px;
    bottom: 18px;
    left: 0;
    width: 4px;
    border-radius: 999px;
    content: "";
    background: linear-gradient(180deg, var(--m-cyan), var(--m-violet));
  }

  .m-time-card time,
  .m-forum-card time,
  .m-forum-card li span {
    color: var(--m-blue);
    font-size: 13px;
    font-weight: 950;
  }

  .m-time-card h4,
  .m-forum-card h4,
  .m-highlight-list h3 {
    margin: 8px 0 0;
    color: var(--m-ink);
    font-size: 17px;
    line-height: 1.42;
  }

  .m-time-card p {
    margin: 8px 0 0;
  }

  .m-time-card b {
    display: inline-block;
    margin-top: 8px;
    font-size: 13.5px;
  }

  .m-preview-list,
  .m-preview-forum-list {
    display: grid;
    gap: 10px;
    margin-top: 12px;
  }

  .m-agenda-preview-producer-rail {
    margin-top: 12px;
  }

  .m-forum-producer-list,
  .m-forum-list {
    display: grid;
    gap: 12px;
    overflow: visible;
    margin: 12px 0 0;
    padding: 0;
    scroll-snap-type: none;
  }

  .m-forum-producer-list .m-producer-card,
  .m-forum-list .m-forum-card {
    width: 100%;
    min-width: 0;
    scroll-snap-align: none;
  }

  .m-preview-card,
  .m-preview-forum-card {
    border: 1px solid var(--m-line);
    border-radius: 18px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 10px 26px rgba(45, 76, 150, 0.08);
  }

  .m-preview-card time,
  .m-preview-forum-card time {
    color: var(--m-blue);
    font-size: 13px;
    font-weight: 950;
  }

  .m-preview-card h4,
  .m-preview-forum-card h4 {
    margin: 7px 0 0;
    color: var(--m-ink);
    font-size: 17px;
    line-height: 1.35;
  }

  .m-preview-card p,
  .m-preview-forum-card p {
    margin: 8px 0 0;
    color: var(--m-copy);
    line-height: 1.65;
  }

  .m-preview-forum-card > div {
    border-top: 1px solid var(--m-line);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    padding-top: 10px;
  }

  .m-preview-forum-card > div span {
    color: var(--m-magenta);
    font-size: 11px;
    font-weight: 950;
  }

  .m-preview-forum-card > div b {
    color: var(--m-ink);
    font-size: 13px;
  }

  .m-forum-block {
    margin-top: 16px;
  }

  .m-forum-block-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
  }

  .m-forum-block-head b {
    color: var(--m-muted);
    font-size: 12px;
  }

  .m-forum-card {
    min-width: min(78vw, 300px);
    scroll-snap-align: start;
    padding: 16px;
  }

  .m-forum-card ul {
    display: grid;
    gap: 9px;
    margin: 14px 0 0;
    padding: 0;
    list-style: none;
  }

  .m-forum-card li {
    display: grid;
    gap: 2px;
    border-top: 1px solid var(--m-line);
    padding-top: 9px;
  }

  .m-producer-card {
    min-width: min(84vw, 322px);
    scroll-snap-align: start;
    padding: 18px;
  }

  .m-producer-card.is-clickable,
  .m-forum-card.is-clickable {
    color: inherit;
  }

  .m-producer-card h3 {
    margin: 9px 0 0;
    font-size: 22px;
    line-height: 1.28;
  }

  .m-producer-time {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    min-height: 27px;
    margin-top: 10px;
    border-radius: 999px;
    padding: 0 10px;
    color: var(--m-blue);
    background: rgba(35, 103, 255, 0.1);
    font-size: 11.5px;
    font-style: normal;
    font-weight: 950;
  }

  .m-producer-person {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    margin-top: 16px;
    border-top: 1px solid var(--m-line);
    padding-top: 14px;
  }

  .m-producer-avatar,
  .m-speaker-avatar {
    position: relative;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(135deg, var(--m-blue), var(--m-magenta));
    font-size: 13px;
    font-weight: 950;
  }

  .m-producer-avatar {
    width: 56px;
    height: 56px;
  }

  .m-producer-avatar img,
  .m-speaker-avatar img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .has-image span {
    display: none;
  }

  .m-producer-person b {
    display: block;
    font-size: 17px;
    line-height: 1.25;
  }

  .m-producer-role {
    display: block;
    margin-bottom: 3px;
    color: var(--m-blue);
    font-size: 10.5px;
    font-weight: 950;
    line-height: 1.25;
  }

  .m-producer-person small {
    display: -webkit-box;
    margin-top: 4px;
    overflow: hidden;
    color: var(--m-copy);
    font-size: 12.5px;
    line-height: 1.5;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .m-speaker-card {
    min-width: 206px;
    scroll-snap-align: start;
    padding: 16px;
    text-align: center;
  }

  .m-speaker-avatar {
    width: 72px;
    height: 72px;
    margin: 0 auto 12px;
  }

  .m-speaker-card h3 {
    margin: 0;
    font-size: 18px;
    line-height: 1.25;
  }

  .m-speaker-card p {
    display: -webkit-box;
    min-height: 44px;
    margin: 8px 0 0;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .m-speaker-card b {
    display: block;
    margin-top: 12px;
    border-top: 1px solid var(--m-line);
    padding-top: 10px;
    overflow: hidden;
    color: var(--m-ink);
    font-size: 13px;
    line-height: 1.45;
  }

  .m-speaker-card b em {
    display: -webkit-box;
    overflow: hidden;
    font-style: normal;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .m-speaker-card b span {
    display: block;
    margin-bottom: 3px;
    color: var(--m-blue);
    font-size: 10.5px;
    font-weight: 950;
    letter-spacing: 0;
  }

  .m-current-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .m-current-grid .m-speaker-card {
    min-width: 0;
    padding: 15px 12px 14px;
  }

  .m-current-grid .m-speaker-avatar {
    width: 64px;
    height: 64px;
    margin-bottom: 10px;
  }

  .m-current-grid .m-speaker-card h3 {
    font-size: 17px;
  }

  .m-current-grid .m-speaker-card p {
    min-height: 58px;
    font-size: 12.5px;
    line-height: 1.52;
    -webkit-line-clamp: 3;
  }

  .m-current-grid .m-speaker-card b {
    min-height: 60px;
    font-size: 12px;
    line-height: 1.45;
  }

  .m-current-grid .m-speaker-card b em {
    -webkit-line-clamp: 3;
  }

  .m-sub-head {
    margin: 28px 0 14px;
  }

  .m-sub-head strong {
    display: block;
    margin-top: 4px;
    font-size: 24px;
    line-height: 1.2;
  }

  .m-past-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .m-past-grid .m-speaker-card {
    min-width: 0;
    padding: 14px 12px;
  }

  .m-past-grid .m-speaker-avatar {
    width: 58px;
    height: 58px;
  }

  .m-past-grid .m-speaker-card p {
    min-height: 42px;
    font-size: 12.5px;
  }

  .m-highlights {
    background: linear-gradient(180deg, #fff 0%, #f0f6ff 100%);
  }

  .m-highlight-list {
    display: grid;
    gap: 10px;
  }

  .m-highlight-list article {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
    padding: 15px;
  }

  .m-highlight-list .highlight-icon {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border-radius: 12px;
    color: #fff;
    background:
      radial-gradient(circle at 28% 20%, rgba(255, 255, 255, 0.38), transparent 34%),
      linear-gradient(135deg, var(--m-blue), var(--m-violet));
    box-shadow: 0 10px 20px rgba(35, 103, 255, 0.16);
  }

  .m-highlight-list .highlight-icon svg {
    width: 21px;
    height: 21px;
  }

  .m-highlight-list article:nth-child(2n) .highlight-icon {
    background:
      radial-gradient(circle at 28% 20%, rgba(255, 255, 255, 0.38), transparent 34%),
      linear-gradient(135deg, var(--m-violet), var(--m-magenta));
  }

  .m-highlight-list article:nth-child(3n) .highlight-icon {
    background:
      radial-gradient(circle at 28% 20%, rgba(255, 255, 255, 0.38), transparent 34%),
      linear-gradient(135deg, var(--m-cyan), var(--m-blue));
  }

  .m-highlight-list p {
    margin: 7px 0 0;
  }

  .m-partner-groups {
    display: grid;
    gap: 18px;
  }

  .m-partner-group {
    display: grid;
    gap: 9px;
  }

  .m-partner-group-head {
    display: grid;
    justify-items: center;
    gap: 4px;
    text-align: center;
  }

  .m-partner-group-head span {
    color: var(--m-magenta);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.05em;
    line-height: 1;
    text-transform: uppercase;
  }

  .m-partner-group-head strong {
    color: var(--m-ink);
    font-size: 15px;
    line-height: 1.2;
  }

  .m-partner-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    justify-content: center;
    gap: 7px;
  }

  .m-partner-grid div {
    width: 100%;
    min-height: 45px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    padding: 7px 4px;
  }

  .m-partner-grid img {
    width: 88%;
    max-width: 62px;
    max-height: 28px;
    object-fit: contain;
  }

  .m-partner-grid span {
    color: var(--m-ink);
    font-size: 10px;
    font-weight: 900;
    line-height: 1.25;
    text-align: center;
  }

  .m-tickets {
    background:
      radial-gradient(circle at 88% 0%, rgba(232, 63, 207, 0.12), transparent 30%),
      #edf4ff;
  }

  .m-ticket-stack {
    display: grid;
    gap: 10px;
  }

  .m-ticket-stack article {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    padding: 16px;
  }

  .m-ticket-stack article.is-featured {
    border-color: rgba(35, 103, 255, 0.38);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(239, 246, 255, 0.92));
  }

  .m-ticket-stack strong {
    margin: 0;
    font-size: 17px;
  }

  .m-ticket-stack p {
    margin: 6px 0 0;
  }

  .m-ticket-stack article > b {
    color: var(--m-blue);
    font-size: 28px;
    line-height: 1;
    white-space: nowrap;
  }

  .m-wide-cta {
    width: fit-content;
    margin: 18px auto 0;
    padding: 0 26px;
  }

  .m-contact {
    background:
      radial-gradient(circle at 90% 12%, rgba(232, 63, 207, 0.16), transparent 28%),
      linear-gradient(180deg, #f7fbff 0%, #fff 100%);
  }

  .m-contact-card {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    padding: 16px;
  }

  .m-contact-card > img {
    width: 112px;
    aspect-ratio: 1;
    border: 1px solid var(--m-line);
    border-radius: 16px;
    padding: 8px;
    background: #fff;
    object-fit: contain;
  }

  .m-contact-card span {
    color: var(--m-magenta);
    font-size: 12px;
    font-weight: 950;
  }

  .m-contact-card h3 {
    margin: 4px 0 0;
    font-size: 22px;
  }

  .m-contact-card p {
    margin: 4px 0 10px;
  }

  .m-contact-card dl {
    display: grid;
    gap: 6px;
    margin: 0;
  }

  .m-contact-card dl div {
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 6px;
    font-size: 12.5px;
  }

  .m-contact-card dt {
    color: var(--m-muted);
    font-weight: 900;
  }

  .m-contact-card dd {
    min-width: 0;
    margin: 0;
    font-weight: 850;
    overflow-wrap: anywhere;
  }

  .m-card-link {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    margin-top: 14px;
    border-radius: 999px;
    padding: 0 12px;
    color: #fff;
    background: linear-gradient(135deg, var(--m-blue), var(--m-violet));
    font-size: 11.5px;
    font-style: normal;
    font-weight: 950;
  }

  .m-footer {
    padding: 36px 16px 48px;
    color: var(--m-copy);
    background: #fff;
  }

  .m-footer strong {
    color: var(--m-ink);
    font-size: 18px;
  }

  .m-footer small {
    display: block;
    margin-top: 18px;
    color: var(--m-muted);
    font-size: 11px;
    line-height: 1.6;
  }
}

@media (max-width: 380px) {
  .m-hero {
    padding-top: 126px;
  }

  .m-hero h1 span {
    font-size: 66px;
  }

  .m-hero h1 strong {
    font-size: 36px;
  }

  .m-section-head h2 {
    font-size: 29px;
  }

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