:root {
  --bg: #ffffff;
  --text: #000000;
  --muted: #000000;
  --accent: #000000;
  --border: #000000;
  --max-width: 1200px;
  --radius: 16px;
  --shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
}

/* =========================
   Base / Reset
   ========================= */

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Saira", system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--text);
  background: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  display: grid;
  grid-template-rows: 1fr auto;
  grid-template-areas: "main" "footer";
}

/* =========================
   Layout
   ========================= */

main {
  margin: 0;
  padding: 0;
  grid-area: main;
  overflow-x: hidden;
}

.layout {
  width: min(calc(100% - 40px), var(--max-width));
  margin: 0 auto;
}

.layout--narrow {
  width: min(calc(100% - 40px), 780px);
  margin: 0 auto;
  text-align: center;
}

/* =========================
   Typography
   ========================= */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Saira", system-ui, -apple-system, "Segoe UI", sans-serif;
  letter-spacing: 0.02em;
  margin: 0 0 clamp(1rem, 2vw, 2rem);
  line-height: 1.25;
}

h1 {
  font-size: clamp(2.2rem, 3.5vw, 3.6rem);
}

h2 {
  font-size: clamp(1.6rem, 2.4vw, 2.4rem);
}

h3 {
  font-size: clamp(1.2rem, 1.6vw, 1.8rem);
}

h4 {
  font-size: clamp(1.05rem, 1.2vw, 1.4rem);
}

h5 {
  font-size: clamp(0.98rem, 1vw, 1.2rem);
}

h6 {
  font-size: clamp(0.92rem, 0.9vw, 1.05rem);
}

p {
  margin: 0 0 16px;
  color: var(--muted);
}

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

/* =========================
   Header / Navigation
   ========================= */

.header {
  padding: 0;
  background: transparent;
  border-bottom: 1px solid var(--border);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5;
  backdrop-filter: blur(6px);
}


.header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: clamp(60px, 8vw, 90px);
  gap: 16px;
}

.header__actions {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
}

.header__menu-btn {
  border: 1px solid #000000;
  background: #ffffff;
  color: #000000;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
}

.header__logo {
  font-weight: 600;
  letter-spacing: 0.04em;
}

.header__nav {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
}

.header__links {
  position: static;
  display: flex;
  align-items: center;
  gap: 18px;
  background: transparent;
  border: 0;
  padding: 0;
  box-shadow: none;
  flex-wrap: wrap;
}

.header__links a {
  font-size: 0.95rem;
  color: #000000;
  transition: background 0.2s ease, color 0.2s ease;
  padding: 8px 10px;
  border-radius: 10px;
}

.header__links a:hover {
  background: #f2f2f2;
  color: #000000;
}

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-item__link {
  font-size: 0.95rem;
  color: #000000;
}

.nav-submenu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 260px;
  background: #ffffff;
  border: 1px solid #000000;
  border-radius: 14px;
  padding: 12px;
  display: grid;
  gap: 8px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 10;
}

.nav-item--has-sub:hover .nav-submenu,
.nav-item--has-sub:focus-within .nav-submenu {
  opacity: 1;
  visibility: visible;
}

.nav-submenu__item {
  display: block;
  padding: 8px 10px;
  border-radius: 10px;
  color: #000000;
  font-size: 0.9rem;
}

.nav-submenu__item:hover {
  background: #f2f2f2;
}

.nav-submenu__sub {
  display: grid;
  gap: 6px;
  padding: 0 10px 6px 18px;
}

.nav-submenu__subitem {
  font-size: 0.85rem;
  color: #4b4b4b;
}

.nav-submenu__subitem:hover {
  color: #000000;
}


.header__morph {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: grid;
  place-items: center;
  width: min(100%, 320px);
  height: 100%;
  filter: url(#threshold) blur(0.6px);
  pointer-events: none;
  margin: 0 auto;
  overflow: hidden;
}

.header__morph #text1,
.header__morph #text2 {
  position: absolute;
  width: 100%;
  font-family: "Saira", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: clamp(22px, 3.2vw, 48px);
  text-align: center;
  user-select: none;
  color: var(--text);
  will-change: filter, opacity;
}

.menu-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 50;
}

.menu-modal--open {
  display: block;
}

.menu-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(2px);
}

.menu-modal__panel {
  position: absolute;
  top: 76px;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  width: min(94vw, 1100px);
  max-height: calc(100vh - 120px);
  overflow: auto;
  background: #ffffff;
  border: 1px solid #000000;
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.menu-modal__close {
  border: 1px solid #000000;
  background: #ffffff;
  color: #000000;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
}

.menu-modal__nav {
  margin-top: 14px;
  display: grid;
  gap: 8px;
}

.menu-modal__link,
.menu-modal__subitem {
  color: #000000;
  padding: 12px 12px;
  border-radius: 10px;
  transition: background 0.2s ease;
  min-height: 48px;
  display: flex;
  align-items: center;
}

.menu-modal__link:hover,
.menu-modal__subitem:hover {
  background: #f2f2f2;
}

.menu-modal__group {
  display: grid;
  gap: 8px;
  padding: 6px 0 6px 6px;
  border-left: 2px solid #000000;
}

.menu-modal__label {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: #000000;
  padding: 4px 10px 0;
}

.menu-modal__subgroup {
  display: grid;
  gap: 6px;
  padding: 4px 0 4px 12px;
  border-left: 1px solid #000000;
}

.menu-modal__sublabel {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: #000000;
  padding: 2px 10px 0;
}

.menu-mega {
  padding: clamp(16px, 3vw, 26px);
}

.menu-mega__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.menu-mega__title {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-mega__body {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(16px, 3vw, 28px);
  align-items: start;
}

.menu-mega__tabs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 6px;
}

.menu-mega__tab {
  border: 1px solid #000000;
  background: #ffffff;
  color: #000000;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}

.menu-mega__tab.is-active {
  background: #000000;
  color: #ffffff;
  border-color: #000000;
}

.menu-mega__content {
  min-width: 0;
}

.menu-mega__panel {
  display: none;
}

.menu-mega__panel.is-active {
  display: block;
}

.menu-mega__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(12px, 2.4vw, 20px);
}

.menu-mega__card {
  border: 1px solid #000000;
  border-radius: 18px;
  padding: 16px;
  background: #ffffff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  min-height: 120px;
}

.menu-mega__card h4 {
  font-size: 1.05rem;
  margin: 0 0 8px;
}

.menu-mega__card p {
  margin: 0;
  color: #4b4b4b;
  font-size: 0.92rem;
  line-height: 1.4;
}

.menu-mega__card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.menu-mega__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  font-weight: 600;
}

.menu-mega__cta::after {
  content: "→";
  font-size: 1.1rem;
}

.menu-mega__footer {
  border-top: 1px solid #000000;
  margin-top: 18px;
  padding-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.9rem;
}

.menu-mega__footer a {
  padding: 6px 10px;
  border-radius: 999px;
  transition: background 0.2s ease;
}

.menu-mega__footer a:hover {
  background: #f2f2f2;
}






.header__subnav {
  border-top: 1px solid var(--border);
  background: #ffffff;
}

.header__subnav-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  padding: 10px 0;
  font-size: 0.9rem;
}

.header__subnav-inner a {
  color: #000000;
  padding: 4px 8px;
  border-radius: 999px;
  transition: background 0.2s ease;
}

.header__subnav-inner a:hover {
  background: #f2f2f2;
}

.svg-filter {
  position: absolute;
  width: 0;
  height: 0;
  pointer-events: none;
}

/* =========================
   Hero
   ========================= */

.hero {
  padding: clamp(6rem, 14vw, 10rem) 0 clamp(3rem, 8vw, 6rem) 0;
  text-align: center;
  background: var(--bg);
  margin: 0;
}

.hero__inner {
  display: block;
}

.hero__text {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding-top: clamp(1rem, 6vw, 3rem);
}

.hero__media {
  position: relative;
  width: 100%;
  height: clamp(96px, 14vh, 180px);
  display: block;
  padding: 0;
  overflow: hidden;
  margin-bottom: 24px;
  border: none;
  border-radius: 0;
  background: transparent;
}

.hero__animation {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
}

.hero__animation canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  color: var(--accent);
  margin-bottom: 20px;
}

.hero__eyebrow--secondary {
  color: var(--muted);
  letter-spacing: 0.12em;
  margin-top: -10px;
}

.hero__lead {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 620px;
  margin: clamp(1rem, 4vw, 2.5rem) auto clamp(1.5rem, 5vw, 3rem);
}

.hero__cta {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

/* =========================
   Buttons
   ========================= */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 500;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  position: relative;
  overflow: hidden;
}

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


.button > * {
  position: relative;
  z-index: 2;
}

.button--primary {
  background: var(--text);
  color: #ffffff;
  box-shadow: var(--shadow);
}

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

.button--secondary {
  border-color: var(--border);
  color: var(--text);
}

.auth {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
  position: relative;
  overflow: hidden;
  width: min(100%, 900px);
  min-height: 760px;
  margin: 0 auto;
}

.auth .auth__panel {
  position: absolute;
  top: 0;
  height: 100%;
  transition: all 0.6s ease-in-out;
  width: 100%;
  left: 0;
}

.auth .auth__panel--signin {
  left: 0;
  width: 100%;
  z-index: 2;
}

.auth.right-panel-active .auth__panel--signin {
  transform: translateY(110%);
}

.auth .auth__panel--signup {
  left: 0;
  width: 100%;
  opacity: 1;
  z-index: 1;
}

.auth.right-panel-active .auth__panel--signup {
  transform: translateY(0);
  opacity: 1;
  z-index: 5;
  animation: show 0.6s;
}

.auth form {
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 0 clamp(1.5rem, 6vw, 3rem);
  height: 100%;
  text-align: center;
  gap: 12px;
}

.auth h1 {
  font-weight: 700;
  margin: 0;
}

.auth span {
  font-size: 12px;
}

.auth a {
  color: #000000;
  font-size: 14px;
  text-decoration: none;
  margin: 15px 0;
}

.auth button {
  border-radius: 20px;
  border: 1px solid #000000;
  background-color: #000000;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  padding: 12px 45px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: transform 80ms ease-in;
  cursor: pointer;
}

.auth button:active {
  transform: scale(0.95);
}

.auth button:focus {
  outline: none;
}

.auth button.auth__ghost-btn {
  background-color: transparent;
  border-color: #000000;
  color: #000000;
}

/* =========================
   Contact / Forms
   ========================= */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(16px, 4vw, 32px);
  align-items: start;
}

.contact-form {
  border: 1px solid #000000;
  border-radius: 24px;
  padding: 20px;
  background: #ffffff;
  box-shadow: none;
}

.contact-form__header {
  text-align: left;
  margin-bottom: clamp(1rem, 3vw, 2rem);
}

.contact-form__header p {
  margin: 8px 0 0;
  color: var(--muted);
}

.contact-form__body {
  display: grid;
  gap: 16px;
}

.contact-form__row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-size: 0.95rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #000000;
  border-radius: 14px;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 1rem;
  background: #ffffff;
  color: #000000;
}

.contact-form textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-form__hp {
  display: none;
}

/* Modal */
.message-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(20px, 5vw, 48px);
  background: rgba(0, 0, 0, 0.55);
  z-index: 999;
}

.message-modal.is-open {
  display: flex;
}

.message-modal:target {
  display: flex;
}

.message-modal__panel {
  width: min(640px, 100%);
  padding: clamp(24px, 6vw, 48px);
  background: #ffffff;
  border: 1px solid #000000;
  border-radius: 24px;
  text-align: center;
  display: grid;
  gap: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.message-modal__panel p {
  color: var(--muted);
}

.message-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.callout-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  gap: 24px;
  border: 1px solid #000000;
  border-radius: 20px;
  background: #ffffff;
  margin-bottom: clamp(20px, 4vw, 36px);
  width: 100%;
}

.call-left {
  max-width: 600px;
}

.call-right {
  flex-shrink: 0;
}

.callout-card p {
  margin: 6px 0 0 0;
  color: var(--muted);
}

/* =========================
   Responsive
   ========================= */

@media (max-width: 720px) {
  .message-modal__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .callout-card {
    flex-direction: column;
    align-items: flex-start;
    padding: clamp(16px, 6vw, 32px);
  }

  .contact-form__header {
    text-align: center;
  }

  .contact-form__actions {
    align-items: center;
  }

  .method__number {
    align-self: center;
    width: auto;
    margin: 12px auto 0;
    padding-top: 8px;
    border-top: 1px solid #000000;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 64px;
    min-height: 48px;
  }

  .method__card-inner {
    overflow: visible;
  }

  .method__card {
    overflow: visible;
  }

  .morph-number {
    position: relative;
    min-height: 48px;
  }
}

.contact-form__consent label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.85rem;
  line-height: 1.4;
}

.contact-form__consent input[type="checkbox"] {
  width: auto;
  margin-top: 3px;
}

.contact-form__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}

.contact-form__actions .button {
  align-self: center;
}

.contact-form__note {
  font-size: 0.85rem;
  color: var(--muted);
  text-align: center;
  width: 100%;
}

.contact-info {
  display: grid;
  gap: 20px;
}

.contact-info__card {
  background: #ffffff;
  border: 1px solid #000000;
  border-radius: 24px;
  padding: 18px;
}

.onepage-card {
  width: 620px;
  height: auto;
  margin: 0 auto;
}

.onepage-grid {
  display: grid;
  gap: 24px;
}

.onepage-grid .onepage-card {
  width: 100%;
}

@media (max-width: 520px) {
  .onepage-card {
    width: 100%;
    height: auto;
  }
}

@media (min-width: 980px) {
  .onepage-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    align-items: start;
  }
}

@media (min-width: 980px) {
  .contact-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.7fr);
    align-items: start;
  }
}


.contact-info__card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.contact-info__card p {
  margin: 0;
  font-size: 1rem;
}

.contact-info__card a {
  color: #1f40ff;
}

.contact-info__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  color: #4b4b4b;
}

.contact-info__icon {
  display: inline-flex;
  width: 24px;
  margin-right: 8px;
  color: #000000;
  font-weight: 700;
}

.contact-info__icon--off {
  color: #000000;
}



.auth input {
  background-color: #eeeeee;
  border: none;
  padding: 12px 15px;
  margin: 8px 0;
  width: 100%;
}

.auth .auth__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 45%;
  overflow: hidden;
  transition: transform 0.6s ease-in-out;
  z-index: 100;
}

.auth.right-panel-active .auth__overlay {
  transform: translateX(-100%);
}

.auth .auth__overlay-inner {
  background: #ffffff;
  color: #000000;
  position: relative;
  left: 0;
  height: 100%;
  width: 100%;
  transform: translateX(0);
  transition: transform 0.6s ease-in-out;
}

.auth.right-panel-active .auth__overlay-inner {
  transform: translateX(50%);
}

.auth .auth__overlay-panel {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: clamp(1rem, 3vw, 2.5rem);
  text-align: center;
  top: 0;
  height: 100%;
  width: 100%;
  transform: translateX(0);
  transition: transform 0.6s ease-in-out;
}

.auth .auth__overlay-panel--left {
  transform: translateX(0);
}

.auth.right-panel-active .auth__overlay-panel--left {
  transform: translateX(0);
}

.auth .auth__overlay-panel--right {
  right: 0;
  transform: translateX(0);
}

.auth.right-panel-active .auth__overlay-panel--right {
  transform: translateX(20%);
}

.auth .auth__social {
  margin: 20px 0;
}

.auth__social-link {
  border: 1px solid #000000;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin: 0 5px;
  height: 40px;
  width: 40px;
  font-weight: 700;
}





.section {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: var(--bg);
}

/* =========================
   Marquee
   ========================= */

.marquee {
  position: relative;
  height: 40px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin: 60px 0;
}

.marquee::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: #ddd;
  top: 50%;
  transform: translateY(-50%);
}

.marquee__text {
  position: absolute;
  background: white;
  padding: 0.5rem 1.5rem;
  font-weight: bold;
  font-size: 1rem;
  white-space: nowrap;
  animation: slideLeft 19s linear infinite;
  z-index: 1;
}

.marquee--reverse .marquee__text {
  animation-name: slideRight;
}

@keyframes slideLeft {
  from {
    left: 100%;
  }
  to {
    left: -100%;
  }
}

@keyframes slideRight {
  from {
    left: -100%;
  }
  to {
    left: 100%;
  }
}

.band {
  position: relative;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: clamp(24px, 6vw, 48px) 0;
}

.band::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: #ddd;
  top: 50%;
  transform: translateY(-50%);
}

.band__label {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  padding: 0.8% 2%;
  font-weight: bold;
  font-size: 1rem;
  z-index: 1;
}

.band__text {
  font-weight: bold;
  font-size: clamp(16px, 2.4vw, 32px);
  line-height: 1;
}

.band__number {
  position: relative;
  width: clamp(26px, 3.6vw, 44px);
  height: clamp(26px, 3.6vw, 44px);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: clamp(16px, 2.4vw, 32px);
  line-height: 1;
  color: #000000;
}

.band__morph {
  display: grid;
  place-items: center;
  width: clamp(22ch, 46vw, 36ch);
  height: 1.6em;
  line-height: 1.1;
  font-size: clamp(22px, 3.2vw, 48px);
  text-align: center;
}

@property --angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: true;
}

@keyframes shift {
  from {
    --angle: 0deg;
  }
  to {
    --angle: 360deg;
  }
}

/* =========================
   Utilities
   ========================= */

.text--rainbow[data-text] {
  position: relative;
  padding-inline: 0.05em;
  font-weight: 500;
  color: transparent;
  background: linear-gradient(
    90deg,
    rgb(0, 214, 255),
    rgb(88, 101, 242),
    rgb(195, 54, 244),
    rgb(255, 120, 219),
    rgb(255, 159, 67),
    rgb(109, 255, 203),
    rgb(0, 214, 255)
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  animation: rainbow-slide 12s linear infinite;
}

@keyframes rainbow-slide {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}

/* =========================
   Services / Cards
   ========================= */

.services__grid {
  width: min(calc(100% - 40px), 1100px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding: clamp(16px, 4vw, 32px);
  justify-content: center;
  justify-items: center;
  margin-top: 32px;
}




.services__card {
  width: 100%;
  max-width: 360px;
  min-height: 220px;
  background: white;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid #000000;
  box-shadow: none;
  transition: all 0.3s ease;
  cursor: pointer;
  padding: 24px;
  text-align: center;
}

.services__card .services__content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0.5rem;
  color: black;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.services__card h3,
.services__card p {
  opacity: 1;
  transform: translateY(0);
}

.services__card h3 {
  font-size: 1.25rem;
  font-weight: 600;
}

.services__card p {
  font-size: 1rem;
}

.services__card:hover {
  transform: scale(1.02);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
}

.services__card::after {
  content: '';
  position: absolute;
  inset: 4px;
  background: white;
  border-radius: 16px;
  z-index: 2;
}

.services__actions {
  margin-top: auto;
  padding-top: 16px;
  display: flex;
  justify-content: center;
}


@keyframes show {
  0%,
  49.99% {
    opacity: 0;
    z-index: 1;
  }
  50%,
  100% {
    opacity: 1;
    z-index: 5;
  }
}

@keyframes bubble-size {
  0%,
  75% {
    width: var(--size, 4rem);
    height: var(--size, 4rem);
  }
  100% {
    width: 0rem;
    height: 0rem;
  }
}

@keyframes bubble-move {
  0% {
    bottom: -4rem;
  }
  100% {
    bottom: var(--distance, 10rem);
  }
}







.method {
  width: 100%;
  display: grid;
  place-items: center;
}



/* =========================
   Method / Steps
   ========================= */

.method__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  width: min(100%, 820px);
  margin: 0 auto;
  padding-inline: 16px;
}

.method__actions {
  margin-top: 18px;
  display: flex;
  justify-content: center;
}

.method__card {
  position: relative;
  background: #ffffff;
  border: 1px solid #000000;
  border-radius: 50px;
  padding: 0;
  cursor: default;
  overflow: visible;
  opacity: 1;
  transform: translateX(0);
}

.method__card-inner {
  position: relative;
  padding: 16px 18px 16px 56px;
  display: flex;
  align-items: flex-start;
  gap: 0;
  overflow: hidden;
  border-radius: 28px;
  background: #ffffff;
  flex-direction: column;
}

.method__card:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 28px;
  bottom: -48px;
  width: 1px;
  height: 48px;
  background: #000000;
  z-index: 3;
  opacity: 1;
}

.method__indicator {
  position: absolute;
  left: 28px;
  top: 28%;
  transform: translate(-50%, -50%);
  min-width: 10px;
  height: 10px;
  background: #000000;
  border-radius: 50%;
  z-index: 2;
  opacity: 1;
}

.method__content {
  flex: 1;
  z-index: 2;
  position: relative;
}

.method__title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 5px;
}

.method__description {
  font-size: 1rem;
  color: #666666;
  line-height: 1.6;
  opacity: 1;
}

.method__number {
  position: static;
  font-size: clamp(24px, 6vw, 50px);
  font-weight: 800;
  color: #000000;
  z-index: 2;
  opacity: 1;
  transform: scale(1) rotate(0deg);
  width: auto;
  height: auto;
  align-self: flex-end;
}

.morph-number {
  display: grid;
  place-items: center;
  filter: url(#threshold) blur(0.6px);
}

.morph-number__text {
  position: absolute;
  inset: 0;
  text-align: center;
  font-family: "Saira", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 800;
  color: currentColor;
  user-select: none;
  will-change: filter, opacity;
}



.text--muted {
  color: #000000;
  font-size: 0.95rem;
}

.services-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 1.5rem auto 0;
  text-align: left;
  background: #ffffff;
  border: 1px solid #000000;
  border-radius: 16px;
  overflow: hidden;
}

.services-table th,
.services-table td {
  padding: 14px 16px;
  border-right: 1px solid #000000;
  border-bottom: 1px solid #000000;
  vertical-align: top;
}

.services-table th {
  vertical-align: middle;
}

.services-table tbody tr:last-child th,
.services-table tbody tr:last-child td {
  border-bottom: 0;
}

.services-table tr th:last-child,
.services-table tr td:last-child {
  border-right: 0;
}

.services-table th {
  width: clamp(180px, 28vw, 260px);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.services-table td {
  color: #4b4b4b;
}

.services-table thead th {
  border-bottom: 1px solid #000000;
}

.services-table + p {
  margin-top: 20px;
}

/* =========================
   Icon Lists
   ========================= */

.icon-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 20px;
}

.icon-list__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.icon-list__icon {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #000000;
  color: transparent;
  flex: 0 0 12px;
  margin-top: 10px;
  display: inline-block;
}

.icon-list__content h3 {
  margin: 0 0 6px;
  font-size: clamp(1.05rem, 1.4vw, 1.35rem);
}

.icon-list__content p {
  margin: 0;
  color: #4b4b4b;
}

.identity-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(16px, 4vw, 32px);
  justify-items: center;
}

.identity-grid .contact-info__card {
  width: 100%;
  max-width: 620px;
  height: auto;
}

@media (min-width: 768px) {
  .identity-grid {
    grid-template-columns: 1fr;
  }
}

.livrables-card {
  width: 620px;
  height: auto;
  margin: 0 auto;
}

.about-card {
  width: 100%;
  max-width: 620px;
  height: auto;
  margin: 0 auto;
}

.about-studio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(16px, 4vw, 32px);
  justify-content: center;
}

.about-studio-grid__media {
  width: min(100%, 620px);
  margin: 0 auto;
  border: 1px solid #000000;
  border-radius: 24px;
  overflow: hidden;
  background: #ffffff;
}

.about-studio-grid__media img {
  width: 100%;
  height: auto;
  max-height: 400px;
  display: block;
  object-fit: contain;
}

@media (min-width: 768px) {
  .about-studio-grid {
    grid-template-columns: repeat(2, minmax(0, 620px));
  }
}

.about-approach-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(16px, 4vw, 32px);
  justify-content: center;
}

.about-approach-media {
  display: grid;
  place-items: center;
  padding: 18px;
}

.about-approach-media img {
  width: 100%;
  height: auto;
  max-height: 400px;
  display: block;
  object-fit: contain;
}

@media (min-width: 768px) {
  .about-approach-grid {
    grid-template-columns: repeat(2, minmax(0, 620px));
  }
}

.about-values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(16px, 4vw, 32px);
  justify-content: center;
}

.about-values-grid__empty {
  display: none;
}

.about-values-media {
  display: none;
  place-items: center;
  padding: 18px;
}

.about-values-media img {
  width: 100%;
  height: auto;
  max-height: 400px;
  display: block;
  object-fit: contain;
}

@media (min-width: 768px) {
  .about-values-grid {
    grid-template-columns: repeat(2, minmax(0, 620px));
  }

  .about-values-media {
    display: grid;
  }
}

.service-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(16px, 4vw, 32px);
  justify-content: center;
}

.service-split--single {
  grid-template-columns: 1fr;
}

.service-card__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(14px, 3vw, 22px);
  text-align: left;
}

.service-card {
  display: grid;
  grid-template-rows: 1fr auto;
}

.service-card__actions {
  margin-top: clamp(14px, 3vw, 18px);
  display: flex;
  justify-content: flex-end;
}

.button--sm {
  min-height: 44px;
  padding: 0.7rem 1.4rem;
  font-size: 0.9rem;
}

.service-card__col--detail {
  border-top: 1px solid #000000;
  padding-top: clamp(14px, 3vw, 18px);
}

/* FAQ (keeps SB Web Studio DA: black/white, thin borders, Saira) */
/* =========================
   FAQ
   ========================= */

.faq {
  width: min(calc(100% - 40px), 780px);
  margin: 0 auto;
}

.faq__tag {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: #4b4b4b;
  margin-bottom: 14px;
}

.faq__title {
  margin: 0 0 10px;
}

.faq__subtitle {
  margin: 0 0 24px;
  color: #4b4b4b;
}

.faq-list {
  border-top: 1px solid #000000;
  border-bottom: 1px solid #000000;
}

.faq-item {
  border-top: 1px solid #000000;
}

.faq-item:first-child {
  border-top: 0;
}

.faq-item details {
  width: 100%;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-q {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.faq-num {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  color: #666666;
  flex-shrink: 0;
}

.faq-text {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.35;
}

.faq-icon {
  width: 28px;
  height: 28px;
  border: 1px solid #000000;
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: background 0.2s ease, color 0.2s ease;
  font-weight: 700;
  line-height: 1;
}

.faq-icon::before {
  content: "+";
}

.faq-item details[open] .faq-icon {
  background: #000000;
  color: #ffffff;
}

.faq-item details[open] .faq-icon::before {
  content: "−";
}

.faq-answer {
  padding: 0 0 18px 0;
  color: #4b4b4b;
  line-height: 1.8;
  max-width: 66ch;
}

.faq-cta {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 18px;
  border: 1px solid #000000;
  border-radius: 18px;
  background: #ffffff;
}

.faq-cta p {
  margin: 0;
  color: #000000;
  font-weight: 600;
}

.faq-cta .button {
  white-space: nowrap;
}

.faq-page {
  width: min(calc(100% - 40px), 1100px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(18px, 4vw, 32px);
  align-items: start;
}

.faq-page[data-faq-tabs="true"] .faq-block {
  display: none;
}

.faq-page[data-faq-tabs="true"] .faq-block.is-active {
  display: block;
}

.faq-menu {
  border: 1px solid #000000;
  border-radius: 18px;
  padding: 16px;
  background: #ffffff;
  display: grid;
  gap: 6px;
  position: sticky;
  top: 110px;
}

.faq-menu a.is-active {
  background: #000000;
  color: #ffffff;
}

.faq-menu a {
  display: block;
  padding: 8px 10px;
  border-radius: 10px;
  color: #000000;
  font-size: 0.95rem;
}

.faq-menu a:hover {
  background: #f2f2f2;
}

.faq-block {
  margin-bottom: clamp(22px, 4vw, 36px);
}

.faq-block h3 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  margin-bottom: 12px;
}

@media (min-width: 900px) {
  .faq-page {
    grid-template-columns: minmax(220px, 260px) minmax(0, 1fr);
  }
}

.service-card__col--lead p:last-child,
.service-card__col--detail p:last-child {
  margin-bottom: 0;
}

.service-copy {
  padding: 18px;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.service-copy p:last-child {
  margin-bottom: 0;
}

.service-split__empty {
  display: none;
}

@media (min-width: 768px) {
  .service-split {
    grid-template-columns: repeat(2, minmax(0, 620px));
  }

  .service-split--single {
    grid-template-columns: 1fr;
  }

  .service-card__grid {
    grid-template-columns: minmax(0, 360px) minmax(0, 1fr);
    align-items: start;
  }

  .service-card__col--detail {
    border-left: 1px solid #000000;
    border-top: 0;
    padding-left: clamp(16px, 3vw, 26px);
    padding-top: 0;
  }

  .service-split__empty {
    display: block;
  }
}

/* =========================
   Footer
   ========================= */

.footer {
  z-index: 1;
  --footer-background: #000000;
  display: grid;
  position: relative;
  grid-area: footer;
  min-height: 12rem;
  margin-top: clamp(7rem, 16vw, 12rem);
}

.footer--map {
  --footer-background: #ffffff;
  background: #ffffff;
  color: #000000;
  border-top: 1px solid #d9d9d9;
}

.footer--map .bubbles {
  display: none;
}

.footer__top {
  position: relative;
  width: min(calc(100% - 40px), 1200px);
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  display: grid;
  gap: clamp(24px, 5vw, 48px);
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.footer__top::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(#d9d9d9 1px, transparent 1px);
  background-size: 12px 12px;
  opacity: 0.5;
  pointer-events: none;
  mask-image: radial-gradient(circle at 70% 50%, rgba(0, 0, 0, 1) 0%, transparent 60%);
}

.footer__col {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  align-content: start;
}

.footer__col h3 {
  font-size: 1.05rem;
  margin: 0 0 4px;
  color: #000000;
}

.footer__col a,
.footer__col p {
  color: #4b4b4b;
  font-size: 0.95rem;
}

.footer__col a:hover {
  color: #000000;
}

.footer__bottom {
  width: min(calc(100% - 40px), 1200px);
  margin: 0 auto;
  padding: 18px 0 28px;
  border-top: 1px solid #d9d9d9;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  color: #4b4b4b;
  font-size: 0.9rem;
}

.footer__social {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.footer__social span {
  color: #000000;
  font-weight: 600;
}

.footer__social a {
  color: #4b4b4b;
}

.footer__social a:hover {
  color: #000000;
}

.scroll-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid #000000;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(6px);
  color: #000000;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 80;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.scroll-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.scroll-top:hover {
  background: #ffffff;
}

.scroll-top:focus-visible {
  outline: 2px solid #000000;
  outline-offset: 3px;
}

.footer .bubbles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1rem;
  background: var(--footer-background);
  filter: url("#blob");
}

.footer .bubble {
  position: absolute;
  left: var(--position, 50%);
  background: var(--footer-background);
  border-radius: 100%;
  animation: bubble-size var(--time, 4s) ease-in infinite var(--delay, 0s),
    bubble-move var(--time, 4s) ease-in infinite var(--delay, 0s);
  transform: translate(-50%, 100%);
}

.footer .content {
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-gap: 4rem;
  padding: 2rem;
  background: var(--footer-background);
}

.footer .content a,
.footer .content p {
  color: #f5f7fa;
  text-decoration: none;
}

.footer .content b {
  color: #ffffff;
}

.footer .content p {
  margin: 0;
  font-size: 0.75rem;
}

.footer .content > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.footer .content > div > div {
  margin: 0.25rem 0;
}

.footer .content > div > div > * {
  margin-right: 0.5rem;
}


.footer__content p {
  margin: 0;
  font-size: 0.75rem;
}

.footer__content > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.footer__content > div > div {
  margin: 0.25rem 0;
}

.footer__content > div > div > * {
  margin-right: 0.5rem;
}

.footer__content .image {
  align-self: center;
  width: 4rem;
  height: 4rem;
  margin: 0.25rem 0;
  background-size: cover;
  background-position: center;
}

@media (min-width: 768px) {
  .header__morph {
    width: min(100%, 420px);
  }

  .menu-modal__panel {
    top: 90px;
  }

  .menu-mega__body {
    grid-template-columns: minmax(200px, 260px) minmax(0, 1fr);
  }

  .menu-mega__tabs {
    display: grid;
    overflow-x: visible;
    padding-bottom: 0;
  }

  .menu-mega__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero__text {
    padding-top: clamp(0.5rem, 2vw, 1.5rem);
  }

  .hero__media {
    height: clamp(110px, 18vh, 220px);
    margin-bottom: 32px;
  }

  .hero__cta {
    flex-direction: row;
    justify-content: center;
  }

  .services__grid {
    grid-template-columns: repeat(2, minmax(260px, 420px));
    justify-content: center;
  }

  .contact-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  }

  .contact-form {
    padding: clamp(16px, 4vw, 32px);
  }

  .method__list {
    padding-inline: 0;
  }

  .method__card-inner {
    padding: clamp(16px, 3vw, 28px) clamp(16px, 4vw, 32px) clamp(16px, 3vw, 28px) 88px;
    align-items: center;
    flex-direction: row;
    border-radius: 50px;
  }

  .method__indicator {
    min-width: 16px;
    height: 16px;
    left: 40px;
    top: 50%;
  }

  .method__card:not(:last-child)::after {
    left: 40px;
  }

  .method__number {
    position: absolute;
    right: 24px;
    font-size: clamp(22px, 3.2vw, 48px);
    width: 72px;
    height: 72px;
    display: grid;
    place-items: center;
  }
}

@media (min-width: 1024px) {
  .services__grid {
    grid-template-columns: repeat(3, minmax(280px, 360px));
    justify-content: center;
  }

  .services__grid--three {
    grid-template-columns: repeat(3, minmax(260px, 1fr));
  }

  .services__grid--four {
    grid-template-columns: repeat(4, minmax(220px, 1fr));
  }

  .auth {
    min-height: 520px;
  }

  .auth .auth__panel {
    width: 50%;
    left: 0;
  }

  .auth .auth__panel--signin {
    width: 50%;
  }

  .auth.right-panel-active .auth__panel--signin {
    transform: translateX(100%);
  }

  .auth .auth__panel--signup {
    width: 50%;
    opacity: 0;
  }

  .auth.right-panel-active .auth__panel--signup {
    transform: translateX(100%);
    opacity: 1;
  }

  .auth form {
    padding: 0 50px;
  }

  .auth .auth__overlay {
    left: 50%;
    width: 50%;
    height: 100%;
  }

  .auth .auth__overlay-inner {
    left: -100%;
    width: 200%;
  }

  .auth.right-panel-active .auth__overlay-inner {
    transform: translateX(50%);
  }

  .auth .auth__overlay-panel {
    padding: 0 40px;
    width: 50%;
  }

  .auth .auth__overlay-panel--left {
    transform: translateX(-20%);
  }

  .auth.right-panel-active .auth__overlay-panel--left {
    transform: translateX(0);
  }

  .auth .auth__overlay-panel--right {
    right: 0;
  }

  .auth.right-panel-active .auth__overlay-panel--right {
    transform: translateX(20%);
  }
}

@media (min-width: 1440px) {
  .menu-modal__panel {
    width: min(94vw, 1200px);
  }
}
