/**
 * DreamAnna — light editorial theme.
 */

:root {
  /* Surfaces */
  --bg: #ffffff;
  --bg-tint: #f5f6fb;
  --bg-deep: #0f1225;
  --card: #ffffff;
  --line: #e6e8f0;
  --line-soft: #f0f1f6;

  /* Ink */
  --ink: #10132a;
  --ink-soft: #5a6076;
  --ink-faint: #8b90a3;

  /* Accents */
  --violet: #6d28d9;
  --violet-hi: #8b5cf6;
  --violet-tint: #f3edff;
  --amber: #f59e0b;
  --amber-tint: #fff5e3;
  --green: #16a34a;
  --wa: #25d366;

  /* Type */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Manrope', 'Segoe UI', sans-serif;

  /* Shape */
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 28px;
  --r-full: 9999px;

  --shadow-sm: 0 2px 8px rgba(16, 19, 42, 0.05);
  --shadow: 0 12px 32px rgba(16, 19, 42, 0.08);
  --shadow-lg: 0 26px 60px rgba(16, 19, 42, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body.dreamanna-body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
}

p {
  margin: 0;
}

img {
  max-width: 100%;
}

a {
  color: var(--violet);
}

::selection {
  background: var(--violet-tint);
  color: var(--violet);
}

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

.skip-link:focus {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 2000;
  width: auto;
  height: auto;
  padding: 0.75rem 1rem;
  clip: auto;
  background: var(--violet);
  color: #fff;
  border-radius: var(--r-sm);
}

/* Layout ------------------------------------------------------------ */
.shell {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.shell--tight {
  max-width: 820px;
}

.band {
  padding: 6rem 0;
}

.band--sm {
  padding: 3.5rem 0;
}

.band--tint {
  background: var(--bg-tint);
}

.band--ink {
  background: var(--bg-deep);
  color: #fff;
}

.band--ink h2,
.band--ink h3 {
  color: #fff;
}

.kicker {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.4rem 0.85rem;
  background: var(--violet-tint);
  border-radius: var(--r-full);
  color: var(--violet);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.band--ink .kicker {
  background: rgba(139, 92, 246, 0.18);
  color: #c4b5fd;
}

.title {
  font-size: clamp(2rem, 3.6vw, 2.9rem);
  letter-spacing: -0.02em;
}

.title em {
  color: var(--violet);
  font-style: italic;
}

.band--ink .title em {
  color: #c4b5fd;
}

.sub {
  margin-top: 1.1rem;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.band--ink .sub {
  color: #b9bdd0;
}

.head {
  max-width: 660px;
  margin-bottom: 3.5rem;
}

.head--mid {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

/* Buttons ----------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.9rem 1.7rem;
  border: 1px solid transparent;
  border-radius: var(--r-full);
  font-family: var(--font-body);
  font-size: 0.97rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn svg {
  width: 19px;
  height: 19px;
}

.btn--solid {
  background: var(--violet);
  color: #fff;
  box-shadow: 0 10px 24px rgba(109, 40, 217, 0.25);
}

.btn--solid:hover {
  transform: translateY(-2px);
  background: #5b21b6;
  box-shadow: 0 14px 30px rgba(109, 40, 217, 0.32);
}

.btn--line {
  border-color: var(--line);
  background: #fff;
  color: var(--ink);
}

.btn--line:hover {
  border-color: var(--violet);
  color: var(--violet);
}

.btn--wa {
  background: var(--wa);
  color: #05231a;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.22);
}

.btn--wa:hover {
  transform: translateY(-2px);
}

.btn--wide {
  width: 100%;
}

/* Header ------------------------------------------------------------ */
.notice-bar {
  background: var(--bg-deep);
  color: #cbd0e0;
  font-size: 0.82rem;
}

.notice-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 42px;
}

.notice-bar__left {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.notice-bar__left svg {
  width: 15px;
  height: 15px;
  color: var(--amber);
}

.notice-bar__nums {
  display: flex;
  gap: 1.25rem;
}

.notice-bar__nums a {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}

.notice-bar__nums a:hover {
  color: #c4b5fd;
}

.site-head {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.site-head__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 78px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-decoration: none;
}

.logo__mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  background: var(--violet-tint);
  border-radius: 13px;
  color: var(--violet);
}

.logo__mark svg {
  width: 21px;
  height: 21px;
}

.logo em {
  color: var(--violet);
  font-style: italic;
}

.menu {
  display: flex;
  gap: 2rem;
}

.menu a {
  color: var(--ink-soft);
  font-size: 0.94rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.menu a:hover,
.menu a.is-here {
  color: var(--violet);
}

.burger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  color: var(--ink);
  cursor: pointer;
}

.burger svg {
  width: 22px;
  height: 22px;
}

/* Hero --------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 5.5rem 0 4.5rem;
  background:
    radial-gradient(680px 320px at 50% -8%, var(--violet-tint), transparent 70%),
    var(--bg);
  text-align: center;
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
}

.hero__title {
  font-size: clamp(2.4rem, 5.2vw, 4rem);
  letter-spacing: -0.03em;
}

.hero__title em {
  color: var(--violet);
  font-style: italic;
}

.hero__copy {
  max-width: 42rem;
  margin: 1.35rem auto 0;
  color: var(--ink-soft);
  font-size: 1.1rem;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  margin-top: 2.25rem;
}

.hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-top: 2.5rem;
  color: var(--ink-faint);
  font-size: 0.88rem;
  font-weight: 600;
}

.hero__proof span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.hero__proof svg {
  width: 17px;
  height: 17px;
  color: var(--green);
}

/* Ticket / quick contact card --------------------------------------- */
.ticket {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  max-width: 900px;
  margin: 3.5rem auto 0;
  padding: 1.75rem 2rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  text-align: left;
}

.ticket__label {
  color: var(--ink-faint);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ticket__nums {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  margin-top: 0.4rem;
}

.ticket__nums a {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  text-decoration: none;
}

.ticket__nums a:hover {
  color: var(--violet);
}

/* Stats -------------------------------------------------------------- */
.figures {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.figure__num {
  color: var(--violet);
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1;
}

.figure__cap {
  margin-top: 0.5rem;
  color: var(--ink-soft);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Timeline ----------------------------------------------------------- */
.flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 2rem;
}

.flow::before {
  content: "";
  position: absolute;
  top: 27px;
  right: 8%;
  left: 8%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--line) 0 8px, transparent 8px 16px);
}

.flow__item {
  position: relative;
  text-align: center;
}

.flow__dot {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 1.25rem;
  background: #fff;
  border: 2px solid var(--violet);
  border-radius: var(--r-full);
  color: var(--violet);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  box-shadow: 0 0 0 8px #fff;
}

.flow__item h3 {
  font-size: 1.2rem;
}

.flow__item p {
  margin-top: 0.55rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

/* Cards -------------------------------------------------------------- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.card {
  padding: 2rem 1.75rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.card:hover {
  transform: translateY(-5px);
  border-color: #d9d2f5;
  box-shadow: var(--shadow);
}

.card__icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 1.25rem;
  background: var(--violet-tint);
  border-radius: 14px;
  color: var(--violet);
}

.card__icon svg {
  width: 24px;
  height: 24px;
}

.card h3,
.card h4 {
  font-size: 1.15rem;
}

.card p {
  margin-top: 0.5rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

/* Platform cards ----------------------------------------------------- */
.plat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.plat {
  display: flex;
  flex-direction: column;
  padding: 1.75rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.plat:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.plat__tag {
  align-self: flex-start;
  padding: 0.3rem 0.7rem;
  background: var(--amber-tint);
  border-radius: var(--r-full);
  color: #b45309;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.plat__name {
  margin-top: 1rem;
  font-size: 1.3rem;
  word-break: break-word;
}

.plat__note {
  margin-top: 0.4rem;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.plat__go {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.5rem;
  color: var(--violet);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

.plat__go svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

.plat__go:hover svg {
  transform: translateX(3px);
}

/* Exchange logos ------------------------------------------------------ */
.brands {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(165px, 1fr));
  gap: 1rem;
}

.brand-tile {
  display: block;
  overflow: hidden;
  background: #0f1225;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.brand-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.brand-tile img {
  display: block;
  width: 100%;
  height: auto;
}

/* Panel / split ------------------------------------------------------- */
.duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1.75rem 0 2.25rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.9rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-full);
  color: var(--ink);
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}

.pill svg {
  width: 15px;
  height: 15px;
  color: var(--violet);
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 350px;
}

.quad {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.quad__box {
  padding: 2rem 1.5rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.quad__box:nth-child(2),
.quad__box:nth-child(3) {
  background: var(--violet-tint);
  border-color: #e2d8ff;
}

.quad__val {
  color: var(--violet);
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1;
}

.quad__cap {
  margin-top: 0.5rem;
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

/* Posts ---------------------------------------------------------------- */
.stories {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.story {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1.75rem;
  align-items: center;
  padding: 1.25rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.story:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.story__media {
  height: 150px;
  overflow: hidden;
  background: var(--bg-tint);
  border-radius: var(--r-sm);
}

.story__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story__media--none {
  display: grid;
  place-items: center;
  color: var(--ink-faint);
}

.story__meta {
  color: var(--ink-faint);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.story__title {
  margin-top: 0.5rem;
  font-size: 1.3rem;
}

.story__title a {
  color: var(--ink);
  text-decoration: none;
}

.story__title a:hover {
  color: var(--violet);
}

.story__text {
  margin-top: 0.5rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.story__more {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.9rem;
  color: var(--violet);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
}

.story__more svg {
  width: 15px;
  height: 15px;
}

/* FAQ ------------------------------------------------------------------ */
.qa {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.qa-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s ease;
}

.qa-item.is-open {
  border-color: #d9d2f5;
}

.qa-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: transparent;
  border: 0;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.qa-q svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--violet);
  transition: transform 0.25s ease;
}

.qa-item.is-open .qa-q svg {
  transform: rotate(45deg);
}

.qa-a {
  display: none;
  padding: 0 1.5rem 1.35rem;
  color: var(--ink-soft);
  font-size: 0.97rem;
}

.qa-item.is-open .qa-a {
  display: block;
}

/* Closing CTA ----------------------------------------------------------- */
.closer {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, var(--violet) 0%, #4c1d95 100%);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  color: #fff;
  text-align: center;
}

.closer h2 {
  color: #fff;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
}

.closer p {
  max-width: 32rem;
  margin: 1rem auto 2rem;
  color: #ddd6fe;
}

.closer .btn--line {
  background: #fff;
  border-color: #fff;
  color: var(--violet);
}

.closer .btn--line:hover {
  background: #f5f3ff;
  color: #4c1d95;
}

/* Prose ------------------------------------------------------------------ */
.copy {
  color: var(--ink-soft);
  font-size: 1.02rem;
}

.copy h2 {
  margin: 3rem 0 1rem;
  font-size: 1.85rem;
}

.copy h3 {
  margin: 2rem 0 0.65rem;
  color: var(--violet);
  font-size: 1.25rem;
}

.copy p {
  margin-bottom: 1.15rem;
  line-height: 1.85;
}

.copy strong {
  color: var(--ink);
}

.copy ul {
  margin: 0 0 1.5rem;
  padding-left: 1.2rem;
  line-height: 1.9;
}

.copy li::marker {
  color: var(--violet);
}

.copy table {
  width: 100%;
  margin-bottom: 2rem;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.copy th,
.copy td {
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  text-align: left;
}

.copy th {
  background: var(--violet-tint);
  color: var(--violet);
  font-weight: 800;
}

.copy tr:nth-child(even) td {
  background: var(--bg-tint);
}

.scroll-x {
  overflow-x: auto;
}

.mid-cta {
  margin: 3rem 0;
  text-align: center;
}

/* Footer ------------------------------------------------------------------ */
.site-foot {
  background: var(--bg-deep);
  color: #b9bdd0;
}

.site-foot .logo {
  color: #fff;
}

.site-foot .logo__mark {
  background: rgba(139, 92, 246, 0.2);
  color: #c4b5fd;
}

.site-foot .logo em {
  color: #c4b5fd;
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  padding: 4.5rem 0 3rem;
}

.foot-about p {
  margin-top: 1rem;
  font-size: 0.94rem;
}

.foot-social {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.foot-social a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--r-sm);
  color: #cbd0e0;
  transition: background 0.2s ease, color 0.2s ease;
}

.foot-social a:hover {
  background: var(--violet);
  color: #fff;
}

.foot-social svg {
  width: 18px;
  height: 18px;
}

.foot-col h3 {
  margin-bottom: 1.1rem;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.foot-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.foot-col li + li {
  margin-top: 0.6rem;
}

.foot-col a {
  color: #b9bdd0;
  font-size: 0.94rem;
  text-decoration: none;
}

.foot-col a:hover {
  color: #c4b5fd;
}

.foot-warn {
  padding: 1.35rem;
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.35);
  border-radius: var(--r-sm);
}

.foot-warn h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.55rem;
  color: var(--amber);
}

.foot-warn svg {
  width: 16px;
  height: 16px;
}

.foot-warn p {
  font-size: 0.85rem;
}

.foot-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.86rem;
}

/* Floating WhatsApp -------------------------------------------------------- */
.wa-dock {
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 1000;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  height: 58px;
  padding: 0 1.4rem 0 1.05rem;
  background: var(--wa);
  border-radius: var(--r-full);
  color: #05231a;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 14px 32px rgba(16, 19, 42, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wa-dock:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(37, 211, 102, 0.35);
}

.wa-dock svg {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
}

/* Reveals ------------------------------------------------------------------ */
.da-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.da-reveal--in {
  opacity: 1;
  transform: none;
}

/* Responsive ---------------------------------------------------------------- */
@media (max-width: 1024px) {
  .duo {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .figures {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }

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

  .flow::before {
    display: none;
  }
}

@media (max-width: 860px) {
  .menu {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 1.5rem 1.25rem;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .menu.is-open {
    display: flex;
  }

  .menu a {
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--line-soft);
  }

  .burger {
    display: inline-flex;
  }

  .site-head__cta {
    display: none;
  }

  .ticket {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .ticket__nums {
    justify-content: center;
  }

  .notice-bar__nums a + a {
    display: none;
  }
}

@media (max-width: 640px) {
  .band {
    padding: 4rem 0;
  }

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

  .quad,
  .foot-grid {
    grid-template-columns: 1fr;
  }

  .foot-bottom {
    flex-direction: column;
    text-align: center;
  }

  .wa-dock {
    width: 58px;
    padding: 0;
    justify-content: center;
  }

  .wa-dock span {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .da-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
