@charset "UTF-8";
:root {
  /* Official Toastmasters International palette */
  --loyal-blue: #004165;
  --true-maroon: #772432;
  --cool-gray: #A9B2B1;
  --happy-yellow: #F2DF74;
  /* Derived neutrals for depth (no off-brand hues) */
  --blue-deep: #002b43;
  --blue-tint: #e8eef2;
  --gray-bg: #f4f6f6;
  --gray-line: #dfe4e4;
  --ink: #16242c;
  --white: #fff;
  --head: "Montserrat", Arial, sans-serif;
  --body: "Source Sans 3", Arial, sans-serif;
  --maxw: 1200px;
  --r: 14px;
  --shadow: 0 18px 48px -22px rgba(0, 43, 67, .45);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--head);
  line-height: 1.08;
  letter-spacing: -0.01em;
}

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

:focus-visible {
  outline: 3px solid var(--happy-yellow);
  outline-offset: 2px;
  border-radius: 3px;
}

.hero :focus-visible, .tools :focus-visible, .events .btn:focus-visible {
  outline-color: #fff;
}

section {
  scroll-margin-top: 92px;
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 28px);
}

.eyebrow {
  font-family: var(--head);
  font-weight: 700;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--true-maroon);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--head);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 1.6rem;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

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

.btn-primary {
  background: var(--true-maroon);
  color: #fff;
  box-shadow: 0 10px 26px -12px rgba(119, 36, 50, 0.8);
}

.btn-primary:hover {
  background: #8c2b3b;
}

.btn-yellow {
  background: var(--happy-yellow);
  color: var(--blue-deep);
}

.btn-yellow:hover {
  background: #f7e896;
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
}

.btn-outline {
  background: transparent;
  color: var(--loyal-blue);
  border-color: var(--loyal-blue);
}

.btn-outline:hover {
  background: var(--loyal-blue);
  color: #fff;
}

/* Utility strip */
.util {
  background: var(--blue-deep);
  color: #cfe0ea;
  font-size: 0.82rem;
}

.util .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 38px;
  flex-wrap: wrap;
  gap: 2px 16px;
}

.util .tag {
  font-family: var(--head);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--happy-yellow);
}

.util .motto {
  color: #fff;
  font-style: italic;
}

.util .links a {
  margin-left: 1.4rem;
  font-weight: 600;
  color: #cfe0ea;
  transition: color 0.15s;
}

.util .links a:hover {
  color: #fff;
}

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--gray-line);
}

header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 82px;
  gap: 18px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: none;
}

/* Compliant typographic lockup — replace .mark with the official TI logo file. */
.mark {
  width: 46px;
  height: 46px;
  border-radius: 9px;
  flex: none;
  background: var(--loyal-blue);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mark span {
  font-family: var(--head);
  font-weight: 900;
  color: #fff;
  font-size: 1.35rem;
  line-height: 1;
}

.mark::after {
  content: "";
  position: absolute;
  left: 9px;
  right: 9px;
  bottom: 8px;
  height: 3px;
  background: var(--happy-yellow);
  border-radius: 2px;
}

.logo-txt b {
  display: block;
  font-family: var(--head);
  font-weight: 800;
  color: var(--loyal-blue);
  font-size: 1.02rem;
  letter-spacing: 0.02em;
  line-height: 1;
}

.logo-txt small {
  display: block;
  font-family: var(--head);
  font-weight: 600;
  color: var(--true-maroon);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-top: 3px;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  align-items: center;
}

nav a {
  font-family: var(--head);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink);
  padding: 0.4rem 0;
  position: relative;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background: var(--true-maroon);
  transition: width 0.2s;
}

nav a:hover::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex: none;
}

.menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  margin-right: -10px;
}

.menu-btn span {
  width: 24px;
  height: 2.5px;
  background: var(--loyal-blue);
  border-radius: 2px;
}

/* Hero — member/leader first */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--loyal-blue);
  color: #fff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(1100px 520px at 80% -10%, rgba(242, 223, 116, 0.16), transparent 60%), radial-gradient(900px 600px at 8% 120%, rgba(119, 36, 50, 0.5), transparent 55%), linear-gradient(160deg, var(--blue-deep), var(--loyal-blue) 62%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image: linear-gradient(rgba(255, 255, 255, 0.6) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.6) 1px, transparent 1px);
  background-size: 46px 46px;
}

.hero .wrap {
  position: relative;
  z-index: 2;
  padding: clamp(54px, 7vw, 76px) clamp(20px, 4vw, 28px) clamp(60px, 8vw, 86px);
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(32px, 5vw, 52px);
  align-items: center;
}

.launch {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(242, 223, 116, 0.14);
  border: 1px solid rgba(242, 223, 116, 0.5);
  color: var(--happy-yellow);
  font-family: var(--head);
  font-weight: 700;
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.45rem 0.9rem;
  border-radius: 50px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--happy-yellow);
  box-shadow: 0 0 0 0 rgba(242, 223, 116, 0.7);
  animation: pulse 2.4s infinite;
}

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 9px rgba(242, 223, 116, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(242, 223, 116, 0);
  }
}
.hero h1 {
  font-size: clamp(2.5rem, 5.4vw, 4rem);
  font-weight: 900;
  margin: 20px 0 16px;
}

.hero p.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: #d9e6ee;
  max-width: 560px;
}

.hero .cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.guest-door {
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--head);
  font-weight: 700;
  font-size: 0.92rem;
  color: #fff;
  border-bottom: 2px solid var(--happy-yellow);
  padding-bottom: 3px;
  transition: gap 0.2s;
}

.guest-door:hover {
  gap: 1rem;
}

.guest-door .pill {
  background: var(--happy-yellow);
  color: var(--blue-deep);
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.55rem;
  border-radius: 50px;
}

/* "At a glance" live panel */
.glance {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  padding: clamp(22px, 3vw, 30px);
  backdrop-filter: blur(4px);
}

.glance h4 {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--happy-yellow);
  font-weight: 700;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.countdown {
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.countdown .big {
  font-family: var(--head);
  font-weight: 900;
  font-size: 2.6rem;
  color: #fff;
  line-height: 1;
}

.countdown .cap {
  font-size: 0.92rem;
  color: #bcd2de;
}

.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 18px;
}

.stat .n {
  font-family: var(--head);
  font-weight: 900;
  font-size: 1.85rem;
  color: #fff;
  line-height: 1;
}

.stat .l {
  font-size: 0.78rem;
  color: #bcd2de;
  margin-top: 4px;
}

/* Section scaffold */
section {
  padding: clamp(52px, 7vw, 76px) 0;
}

.sec-head {
  max-width: 680px;
  margin-bottom: clamp(28px, 4vw, 40px);
}

.sec-head h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  font-weight: 800;
  color: var(--loyal-blue);
  margin: 10px 0 12px;
}

.sec-head p {
  font-size: 1.05rem;
  color: #4a5a62;
}

.sec-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: clamp(26px, 4vw, 38px);
}

/* Events */
.events {
  background: var(--gray-bg);
  border-top: 1px solid var(--gray-line);
  border-bottom: 1px solid var(--gray-line);
}

.ev-list {
  display: grid;
  gap: 12px;
}

.ev {
  display: grid;
  grid-template-columns: 92px 1fr auto;
  gap: 22px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--gray-line);
  border-radius: 12px;
  padding: 16px 22px;
  transition: transform 0.18s, box-shadow 0.18s;
}

.ev:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.ev .date {
  text-align: center;
  border-right: 1px solid var(--gray-line);
  padding-right: 16px;
}

.ev .date .m {
  font-family: var(--head);
  font-weight: 700;
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--true-maroon);
}

.ev .date .d {
  font-family: var(--head);
  font-weight: 900;
  font-size: 1.7rem;
  line-height: 1;
  color: var(--loyal-blue);
}

.ev .info h3 {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 2px;
}

.ev .info p {
  font-size: 0.88rem;
  color: #56666d;
}

.tag2 {
  font-family: var(--head);
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.7rem;
  border-radius: 50px;
  white-space: nowrap;
  background: var(--blue-tint);
  color: var(--loyal-blue);
}

.tag2.lead {
  background: rgba(119, 36, 50, 0.1);
  color: var(--true-maroon);
}

.tag2.guest {
  background: rgba(242, 223, 116, 0.35);
  color: #6b5a12;
}

/* Keep the events headline on one line at desktop widths. */
@media (min-width: 921px) {
  .events .sec-head {
    max-width: none;
  }
  .events .sec-head h2 {
    white-space: nowrap;
  }
}
/* Doorways */
.door-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.door {
  border: 1px solid var(--gray-line);
  border-radius: var(--r);
  padding: 30px;
  background: #fff;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  position: relative;
  overflow: hidden;
}

.door::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--cool-gray);
  transition: background 0.2s;
}

.door:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: transparent;
}

.door:nth-child(1):hover::before {
  background: var(--loyal-blue);
}

.door:nth-child(2):hover::before {
  background: var(--true-maroon);
}

.door:nth-child(3):hover::before {
  background: var(--happy-yellow);
}

.door .ic {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  background: var(--blue-tint);
}

.door .ic svg {
  width: 26px;
  height: 26px;
  stroke: var(--loyal-blue);
  fill: none;
  stroke-width: 1.8;
}

.door h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--loyal-blue);
  margin-bottom: 8px;
}

.door p {
  font-size: 0.95rem;
  color: #56666d;
  margin-bottom: 16px;
}

.door .links a {
  display: block;
  font-family: var(--head);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--true-maroon);
  padding: 5px 0;
  transition: padding 0.15s;
}

.door .links a::before {
  content: "→ ";
  color: var(--cool-gray);
}

.door .links a:hover {
  padding-left: 6px;
}

/* Get involved */
.involve {
  background: #fff;
}

.inv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.inv {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 24px;
  border: 1px solid var(--gray-line);
  border-radius: var(--r);
  transition: background 0.18s;
}

.inv:hover {
  background: var(--gray-bg);
}

.inv .ic {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  flex: none;
  background: var(--loyal-blue);
  display: flex;
  align-items: center;
  justify-content: center;
}

.inv .ic svg {
  width: 22px;
  height: 22px;
  stroke: var(--happy-yellow);
  fill: none;
  stroke-width: 1.8;
}

.inv h3 {
  font-size: 1.05rem;
  color: var(--loyal-blue);
  font-weight: 800;
  margin-bottom: 4px;
}

.inv p {
  font-size: 0.9rem;
  color: #56666d;
}

/* Leaders tools band */
.tools {
  background: var(--loyal-blue);
  color: #fff;
}

.tools .eyebrow {
  color: var(--happy-yellow);
}

.tools .sec-head h2 {
  color: #fff;
}

.tools .sec-head p {
  color: #cfe0ea;
}

.tool-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.tool {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 24px;
  transition: background 0.18s;
}

.tool:hover {
  background: rgba(255, 255, 255, 0.13);
}

.tool h3 {
  font-size: 1.02rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.tool p {
  font-size: 0.86rem;
  color: #bcd2de;
  margin-bottom: 12px;
}

.tool a {
  font-family: var(--head);
  font-weight: 700;
  font-size: 0.84rem;
  color: var(--happy-yellow);
}

.tool a::after {
  content: " →";
}

/* Merger */
.merge .box {
  background: linear-gradient(135deg, var(--blue-tint), #fff);
  border: 1px solid var(--gray-line);
  border-left: 6px solid var(--true-maroon);
  border-radius: var(--r);
  padding: clamp(28px, 4vw, 44px);
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(28px, 4vw, 40px);
  align-items: center;
}

.merge h2 {
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  color: var(--loyal-blue);
  font-weight: 800;
  margin: 8px 0 12px;
}

.merge p {
  color: #4a5a62;
  margin-bottom: 10px;
}

.union {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.chip {
  font-family: var(--head);
  font-weight: 900;
  color: #fff;
  background: var(--cool-gray);
  width: 84px;
  height: 84px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-direction: column;
}

.chip small {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  opacity: 0.85;
}

.chip.b1 {
  background: var(--true-maroon);
}

.chip.b2 {
  background: var(--loyal-blue);
}

.chip.new {
  background: var(--happy-yellow);
  color: var(--blue-deep);
  width: 100px;
  height: 100px;
  font-size: 1.6rem;
}

.plus, .arrow {
  font-family: var(--head);
  font-weight: 900;
  color: var(--cool-gray);
  font-size: 1.5rem;
}

.arrow {
  color: var(--true-maroon);
}

.merge-faq {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.merge-faq .faq {
  background: #fff;
  border: 1px solid var(--gray-line);
  border-radius: 12px;
  padding: 22px;
  border-top: 3px solid var(--cool-gray);
}

.merge-faq h4 {
  font-family: var(--head);
  font-weight: 800;
  color: var(--loyal-blue);
  font-size: 1rem;
  margin-bottom: 6px;
}

.merge-faq p {
  color: #56666d;
  font-size: 0.92rem;
  margin: 0;
}

/* Section background rhythm (after promoting the merger under the hero).
   Light sections alternate gray / white between the dark hero and the blue
   Tools band: merger(gray) → events(white) → doorways(gray) → involve(white).
   These rules come after the originals so they win the cascade.
   When the merger moves back down post-launch, revert this block. */
.merge {
  background: var(--gray-bg);
  border-top: 1px solid var(--gray-line);
  border-bottom: 1px solid var(--gray-line);
}

.events {
  background: #fff;
  border-top: 0;
  border-bottom: 0;
}

#doors {
  background: var(--gray-bg);
  border-top: 1px solid var(--gray-line);
  border-bottom: 1px solid var(--gray-line);
}

/* .involve stays #fff; .guestband stays gray; .tools / .contact stay dark */
/* Guest front-door band */
.guestband {
  background: var(--gray-bg);
  border-top: 1px solid var(--gray-line);
  border-bottom: 1px solid var(--gray-line);
}

.gb-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.gb-inner h2 {
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  color: var(--loyal-blue);
  font-weight: 800;
}

.gb-inner p {
  color: #4a5a62;
  margin-top: 8px;
  max-width: 560px;
}

/* Contact */
.contact {
  background: var(--true-maroon);
  color: #fff;
}

.cc-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.contact .eyebrow {
  color: var(--happy-yellow);
}

.cc-inner h2 {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 800;
  margin-top: 8px;
}

.cc-inner p {
  color: #f3d8dd;
  margin-top: 8px;
  max-width: 520px;
}

.cc-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Footer */
footer {
  background: var(--blue-deep);
  color: #aec6d3;
  padding: 60px 0 0;
  font-size: 0.9rem;
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 44px;
}

footer .logo-txt b {
  color: #fff;
}

footer .about {
  max-width: 300px;
  margin-top: 16px;
  color: #9fbac8;
  font-size: 0.9rem;
}

footer h5 {
  font-family: var(--head);
  font-weight: 700;
  color: #fff;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

footer ul {
  list-style: none;
}

footer ul li {
  margin-bottom: 9px;
}

footer ul a {
  color: #aec6d3;
  transition: color 0.15s;
}

footer ul a:hover {
  color: var(--happy-yellow);
}

.social {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.social a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.social a:hover {
  background: var(--true-maroon);
}

.social svg {
  width: 18px;
  height: 18px;
  fill: #fff;
}

.legal {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 22px 0;
  font-size: 0.78rem;
  color: #7f9bab;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.legal a {
  color: #aec6d3;
}

.disclaimer {
  background: #001d2e;
  font-size: 0.74rem;
  color: #6f8a9a;
  text-align: center;
  padding: 14px 28px;
  line-height: 1.6;
}

/* Load animation */
.fade {
  opacity: 0;
  transform: translateY(18px);
  animation: rise 0.7s ease forwards;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: none;
  }
}
.d1 {
  animation-delay: 0.05s;
}

.d2 {
  animation-delay: 0.15s;
}

.d3 {
  animation-delay: 0.25s;
}

.d4 {
  animation-delay: 0.35s;
}

.d5 {
  animation-delay: 0.45s;
}

/* Mobile drawer */
.mobile-menu {
  display: none;
}

.menu-btn span {
  transition: transform 0.2s, opacity 0.2s;
}

body.menu-open .mobile-menu {
  display: block;
  position: fixed;
  top: 82px;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  z-index: 49;
  padding: 14px clamp(20px, 4vw, 28px) 28px;
  overflow-y: auto;
}

.mobile-menu a.m-link {
  display: block;
  font-family: var(--head);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--loyal-blue);
  padding: 17px 2px;
  border-bottom: 1px solid var(--gray-line);
}

.mobile-menu .m-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 22px;
}

.mobile-menu .m-cta .btn {
  width: 100%;
  justify-content: center;
}

body.menu-open {
  overflow: hidden;
}

header.open .menu-btn span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

header.open .menu-btn span:nth-child(2) {
  opacity: 0;
}

header.open .menu-btn span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* Responsive */
@media (max-width: 920px) {
  nav, .nav-cta {
    display: none;
  }
  .menu-btn {
    display: flex;
  }
  .util .links, .util .motto {
    display: none;
  }
  .util .wrap {
    justify-content: center;
  }
  .hero .wrap {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .door-grid, .inv-grid, .tool-grid {
    grid-template-columns: 1fr 1fr;
  }
  .merge .box {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .merge-faq {
    grid-template-columns: 1fr 1fr;
  }
  .foot-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .door-grid, .inv-grid, .tool-grid, .merge-faq {
    grid-template-columns: 1fr;
  }
  .ev {
    grid-template-columns: 64px 1fr;
    gap: 14px;
  }
  .ev .tag2 {
    display: none;
  }
  .foot-grid {
    grid-template-columns: 1fr;
  }
  .hero .wrap {
    padding-top: 32px;
    padding-bottom: 42px;
    gap: 26px;
  }
  .hero h1 {
    margin: 16px 0 14px;
  }
  .hero .cta-row .btn {
    width: 100%;
    justify-content: center;
  }
  .guest-door {
    border-bottom: none;
    align-items: flex-start;
  }
  .union {
    flex-direction: column;
    gap: 12px;
  }
  .union .arrow {
    transform: rotate(90deg);
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
  .fade {
    opacity: 1;
    transform: none;
  }
}

/*# sourceMappingURL=style.css.map */
