:root {
  --ink: #141414;
  --muted: #5f6570;
  --line: #dedfe3;
  --paper: #f2f1ec;
  --white: #ffffff;
  --night: #090909;
  --accent: #5f5b55;
  --accent-dark: #34312e;
  --success: #7fb56f;
  --steel: #26323a;
  --soft: #f6f6f5;
  --shadow: 0 18px 42px rgba(17, 17, 17, 0.1);
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 92px;
}

body {
  min-width: 320px;
  margin: 0;
}

.struxia-loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 46%, rgba(37, 99, 235, 0.14), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f4f7fb 74%);
  animation: loader-hide 900ms ease 2800ms forwards;
}

.logo-stage {
  --orbit-radius: 270px;
  position: relative;
  display: grid;
  place-items: center;
  gap: 76px;
  isolation: isolate;
  animation: stage-in 700ms ease-out both;
}

.mark {
  position: relative;
  display: grid;
  place-items: center;
}

.mark::before,
.mark::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  z-index: -1;
}

.mark::before {
  width: min(560px, 94vw);
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.28), rgba(37, 99, 235, 0.12) 34%, transparent 66%);
  filter: blur(10px);
  animation: halo-breathe 4s ease-in-out infinite;
}

.mark::after {
  width: min(500px, 88vw);
  aspect-ratio: 1;
  border: 1px solid rgba(37, 99, 235, 0.18);
  animation: ring-pulse 3.2s ease-out infinite;
}

.orb {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #2563eb;
  box-shadow: 0 0 22px rgba(37, 99, 235, 0.72);
  z-index: 1;
  pointer-events: none;
  animation: orbit 7s linear infinite;
}

.orb.secondary {
  width: 6px;
  height: 6px;
  opacity: 0.72;
  animation-duration: 10s;
  animation-direction: reverse;
}

.logo {
  position: relative;
  z-index: 2;
  display: block;
  width: min(430px, 84vw);
  height: auto;
  border-radius: 8px;
  animation: logo-breathe 4.2s ease-in-out infinite;
  will-change: transform;
}

.status {
  margin: 0;
  color: #0d1726;
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: clamp(15px, 2.4vw, 18px);
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px clamp(16px, 4vw, 46px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(9, 9, 9, 0.96);
  color: var(--white);
}

.nav-links {
  display: flex;
  justify-content: flex-start;
  gap: clamp(20px, 4vw, 46px);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover {
  color: #ded6cb;
}

.header-cta,
.submit-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 46px;
  border: 0;
  border-radius: 6px;
  background: var(--accent);
  color: var(--white);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
}

.header-cta {
  padding: 0 22px;
}

.header-cta:hover,
.submit-button:hover {
  background: var(--accent-dark);
}

.icon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
}

.icon svg,
.calendar-nav svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.booking-hero {
  display: grid;
  min-height: clamp(430px, 54vh, 620px);
  padding: clamp(22px, 4vw, 48px);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.75) 33%, rgba(0, 0, 0, 0.28) 62%, rgba(0, 0, 0, 0.08) 100%),
    url(".assets/barber-hero.png") 68% 24% / cover no-repeat;
  color: var(--white);
}

.hero-panel {
  display: grid;
  align-items: center;
  width: min(100%, 1180px);
  margin: 0 auto;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 12px;
  color: #e6ded2;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-panel h1 {
  max-width: 660px;
  margin: 0 0 18px;
  font-size: clamp(46px, 7vw, 92px);
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
  text-shadow: 0 22px 36px rgba(0, 0, 0, 0.62);
}

.hero-panel p {
  max-width: 560px;
  margin: 0;
  font-size: clamp(18px, 2vw, 23px);
  font-weight: 800;
  line-height: 1.36;
}

.booking-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 22px;
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 34px 20px 70px;
}

.booking-main,
.booking-side {
  display: grid;
  gap: 20px;
  min-width: 0;
}

.booking-side {
  align-content: start;
}

.step-section,
.customer-card,
.side-card {
  min-width: 0;
}

.step-heading,
.scheduler-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.step-heading {
  justify-content: flex-start;
  margin-bottom: 12px;
}

.step-heading span {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--night);
  color: var(--white);
  font-size: 14px;
  font-weight: 900;
}

h2 {
  margin: 0;
  font-size: clamp(21px, 2.1vw, 28px);
  line-height: 1.1;
}

.service-list,
.calendar-card,
.customer-card,
.side-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background-color: var(--white);
  background-image:
    radial-gradient(circle at 1px 1px, rgba(20, 20, 20, 0.055) 1px, transparent 1.2px),
    linear-gradient(135deg, rgba(255, 255, 255, 0.97), rgba(247, 245, 241, 0.94));
  background-size: 13px 13px, 100% 100%;
  box-shadow: var(--shadow);
}

.service-list {
  overflow: hidden;
}

.service-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.service-row > div {
  min-width: 0;
}

.service-row:last-child {
  border-bottom: 0;
}

.service-row.selected {
  background:
    linear-gradient(90deg, rgba(255, 246, 247, 0.96), rgba(255, 255, 255, 0.82)),
    radial-gradient(circle at 1px 1px, rgba(175, 16, 35, 0.08) 1px, transparent 1.2px);
  background-size: 100% 100%, 12px 12px;
}

.service-row h3 {
  margin: 0 0 6px;
  font-size: 16px;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.service-category {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--accent-dark);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.service-row p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.service-description {
  margin-bottom: 7px;
  line-height: 1.4;
}

.choose-service {
  min-width: 78px;
  min-height: 36px;
  border: 0;
  border-radius: 6px;
  background: var(--night);
  color: var(--white);
  font-weight: 900;
  cursor: pointer;
}

.service-row.selected .choose-service {
  background: var(--accent);
}

.calendar-controls {
  display: flex;
  gap: 8px;
}

.calendar-nav {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background:
    radial-gradient(circle at 1px 1px, rgba(20, 20, 20, 0.06) 1px, transparent 1.2px),
    var(--white);
  background-size: 10px 10px, 100% 100%;
  color: var(--accent);
  cursor: pointer;
}

.calendar-card {
  padding: 18px;
  overflow: auto;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(112px, 1fr));
  gap: 10px;
  min-width: 820px;
}

.calendar-day {
  display: grid;
  grid-template-rows: auto minmax(220px, 390px);
  min-width: 0;
}

.day-heading {
  display: grid;
  gap: 4px;
  min-height: 56px;
  padding: 4px 4px 12px;
  text-align: center;
}

.day-heading strong {
  font-size: 15px;
  text-transform: lowercase;
}

.day-heading span {
  color: var(--muted);
  font-size: 14px;
}

.slot-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 390px;
  overflow: auto;
  padding: 0 2px 4px;
}

.slot-button,
.no-slot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  border: 0;
  border-radius: 4px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(242, 242, 240, 0.92)),
    radial-gradient(circle at 1px 1px, rgba(20, 20, 20, 0.045) 1px, transparent 1.2px);
  background-size: 100% 100%, 10px 10px;
  color: var(--ink);
  font-size: 15px;
}

.slot-button {
  cursor: pointer;
}

.slot-button:hover,
.slot-button.selected {
  background: var(--accent);
  color: var(--white);
}

.no-slot {
  min-height: 50px;
  padding: 8px;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.slot-note,
.form-status {
  min-height: 22px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.customer-card,
.side-card {
  padding: 22px;
}

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

.form-row {
  display: grid;
  gap: 8px;
}

label {
  font-size: 14px;
  font-weight: 900;
}

input {
  width: 100%;
  min-height: 46px;
  border: 1px solid #d2d4d9;
  border-radius: 5px;
  background: var(--white);
  color: var(--ink);
  font: 500 15px/1 Arial, Helvetica, sans-serif;
  padding: 0 14px;
  outline: none;
}

input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(95, 91, 85, 0.16);
}

.booking-summary {
  min-height: 46px;
  display: flex;
  align-items: center;
  margin-top: 16px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background:
    radial-gradient(circle at 1px 1px, rgba(20, 20, 20, 0.045) 1px, transparent 1.2px),
    #fbfbfb;
  background-size: 12px 12px, 100% 100%;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}

.submit-button {
  width: 100%;
  min-height: 56px;
  margin-top: 14px;
}

.submit-button:disabled {
  opacity: 0.7;
  cursor: progress;
}

.form-status.success {
  color: #166534;
}

.form-status.error {
  color: #9f1239;
  font-weight: 800;
}

.side-card h2 {
  margin-bottom: 14px;
  font-size: 20px;
}

.project-brief {
  position: relative;
  overflow: hidden;
  border-color: rgba(240, 221, 189, 0.35);
  background:
    linear-gradient(145deg, rgba(9, 9, 9, 0.97), rgba(38, 50, 58, 0.94)),
    radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.09) 1px, transparent 1.2px);
  background-size: 100% 100%, 13px 13px;
  color: var(--white);
}

.project-brief::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, #f0ddbd, var(--success));
}

.project-label {
  display: inline-block;
  margin: 8px 0 12px;
  color: #f0ddbd;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.project-brief h2 {
  margin-bottom: 10px;
  color: var(--white);
  line-height: 1.05;
}

.project-brief-intro {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
}

.hours {
  display: grid;
  margin: 0;
}

.hours div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.hours div:last-child {
  border-bottom: 0;
}

.hours dt,
.hours dd {
  margin: 0;
  font-size: 14px;
}

.hours dd {
  font-weight: 900;
  text-align: right;
}

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

.feature-list li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.42;
}

.feature-list li::before {
  content: "";
  position: absolute;
  top: 0.52em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 4px rgba(127, 181, 111, 0.16);
}

.project-brief .feature-list li {
  color: rgba(255, 255, 255, 0.82);
}

.project-brief .feature-list li::before {
  background: #f0ddbd;
  box-shadow: 0 0 0 4px rgba(240, 221, 189, 0.14);
}

.project-visual {
  display: grid;
  grid-template-columns: minmax(260px, 0.58fr) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: center;
  width: min(100% - 40px, 1180px);
  margin: 0 auto 74px;
  padding: clamp(18px, 3vw, 26px);
  border: 1px solid rgba(20, 20, 20, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(238, 242, 239, 0.92)),
    radial-gradient(circle at 1px 1px, rgba(38, 50, 58, 0.08) 1px, transparent 1.2px);
  background-size: 100% 100%, 13px 13px;
  box-shadow: var(--shadow);
}

.project-visual.project-brief {
  grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1fr);
  align-items: center;
  border-color: rgba(240, 221, 189, 0.35);
  background:
    linear-gradient(145deg, rgba(9, 9, 9, 0.97), rgba(38, 50, 58, 0.94)),
    radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.09) 1px, transparent 1.2px);
  background-size: 100% 100%, 13px 13px;
  color: var(--white);
}

.project-visual-copy {
  min-width: 0;
}

.project-visual h2 {
  margin-bottom: 12px;
  color: var(--steel);
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1;
  text-transform: uppercase;
}

.project-visual.project-brief h2 {
  max-width: 440px;
  color: var(--white);
  font-size: clamp(28px, 3.2vw, 46px);
  text-transform: none;
}

.project-visual p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.45;
}

.project-visual.project-brief .project-brief-intro {
  max-width: 520px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(16px, 1.6vw, 22px);
}

.project-visual.project-brief .feature-list {
  max-width: 560px;
}

.project-visual.project-brief .feature-list li {
  font-size: 16px;
}

.project-visual img {
  display: block;
  width: 100%;
  min-width: 0;
  aspect-ratio: 16 / 9;
  border-radius: 6px;
  object-fit: cover;
  box-shadow: 0 18px 44px rgba(9, 9, 9, 0.2);
}

.project-visual.project-brief img {
  align-self: center;
  min-height: 0;
  object-fit: contain;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.42);
}

.business-types {
  width: min(100% - 40px, 1180px);
  margin: 0 auto 76px;
}

.business-types-heading {
  display: grid;
  gap: 12px;
  max-width: 780px;
  margin-bottom: 22px;
}

.business-types-heading .project-label {
  margin: 0;
  color: var(--accent-dark);
}

.business-types h2 {
  color: var(--steel);
  font-size: clamp(30px, 3.5vw, 52px);
  line-height: 1;
}

.business-types-heading p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: 800;
  line-height: 1.45;
}

.business-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.business-card {
  min-width: 0;
  border: 1px solid rgba(20, 20, 20, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(246, 246, 245, 0.9)),
    radial-gradient(circle at 1px 1px, rgba(38, 50, 58, 0.065) 1px, transparent 1.2px);
  background-size: 100% 100%, 13px 13px;
  box-shadow: 0 14px 32px rgba(17, 17, 17, 0.07);
  padding: 18px;
}

.business-card span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--night);
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
}

.business-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.16;
}

.business-card p {
  margin: 11px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.email-examples {
  width: min(100% - 40px, 1180px);
  margin: 0 auto 76px;
}

.email-examples-heading {
  margin-bottom: 18px;
}

.email-examples h2 {
  color: var(--steel);
  font-size: clamp(28px, 3.2vw, 46px);
  line-height: 1;
  text-transform: uppercase;
}

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

.email-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(20, 20, 20, 0.14);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.email-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 18px;
  background: var(--night);
  color: var(--white);
}

.email-toolbar span,
.email-toolbar strong {
  min-width: 0;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.email-toolbar strong {
  color: #e6ded2;
  text-align: right;
}

.email-meta,
.email-body {
  padding: 18px;
}

.email-meta {
  display: grid;
  gap: 8px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 1px 1px, rgba(20, 20, 20, 0.045) 1px, transparent 1.2px),
    #fbfbfb;
  background-size: 12px 12px, 100% 100%;
}

.email-meta p,
.email-body p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.email-body {
  display: grid;
  gap: 14px;
}

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

.email-body dl {
  display: grid;
  gap: 8px;
  margin: 0;
}

.email-body dl div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.email-body dl div:last-child {
  border-bottom: 0;
}

.email-body dt,
.email-body dd {
  margin: 0;
  font-size: 14px;
}

.email-body dt {
  color: var(--muted);
}

.email-body dd {
  color: var(--ink);
  font-weight: 900;
  text-align: right;
}

.email-card-confirmation {
  border-top: 5px solid var(--success);
}

.email-card-cancel {
  border-top: 5px solid #b85757;
}

@media (max-width: 1040px) {
  .hero-panel,
  .booking-section {
    grid-template-columns: 1fr;
  }

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

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

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

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

@media (max-width: 700px) {
  .site-header {
    grid-template-columns: auto;
    justify-content: end;
    gap: 10px;
    padding: 13px 16px;
  }

  .nav-links {
    display: none;
  }

  .header-cta {
    width: 44px;
    padding: 0;
    overflow: hidden;
    color: transparent;
  }

  .header-cta .icon {
    color: var(--white);
  }

  .booking-hero {
    min-height: 520px;
    padding: 32px 16px;
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.56) 40%, rgba(0, 0, 0, 0.18) 100%),
      url(".assets/barber-hero.png") 70% 24% / cover no-repeat;
  }

  .hero-panel p {
    font-size: 17px;
  }

  .booking-side {
    grid-template-columns: 1fr;
  }

  .booking-section {
    padding: 26px 14px 48px;
  }

  .step-heading span {
    width: 28px;
    height: 28px;
  }

  .service-row {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .choose-service {
    width: 100%;
  }

  .scheduler-heading {
    align-items: flex-end;
  }

  .calendar-card {
    padding: 14px;
  }

  .calendar-grid {
    min-width: 760px;
  }

  .customer-card,
  .side-card {
    padding: 18px;
  }

  .submit-button {
    font-size: 13px;
  }

  .project-visual {
    grid-template-columns: 1fr;
    width: min(100% - 28px, 1180px);
    margin-bottom: 48px;
  }

  .project-visual.project-brief {
    grid-template-columns: 1fr;
  }

  .project-visual h2 {
    font-size: 28px;
  }

  .project-visual.project-brief h2 {
    font-size: 24px;
  }

  .project-visual.project-brief .project-brief-intro,
  .project-visual.project-brief .feature-list li {
    font-size: 14px;
  }

  .project-visual.project-brief img {
    min-height: 0;
  }

  .email-examples {
    width: min(100% - 28px, 1180px);
    margin-bottom: 48px;
  }

  .business-types {
    width: min(100% - 28px, 1180px);
    margin-bottom: 48px;
  }

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

  .email-examples h2 {
    font-size: 28px;
  }

  .email-toolbar,
  .email-body dl div {
    align-items: flex-start;
    flex-direction: column;
  }

  .email-toolbar strong,
  .email-body dd {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .logo-stage {
    --orbit-radius: 44vw;
    gap: 58px;
  }
}

@keyframes stage-in {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes halo-breathe {
  0%,
  100% {
    opacity: 0.52;
    transform: scale(0.9);
  }

  50% {
    opacity: 0.9;
    transform: scale(1.06);
  }
}

@keyframes ring-pulse {
  0% {
    opacity: 0;
    transform: scale(0.82);
  }

  20% {
    opacity: 0.62;
  }

  100% {
    opacity: 0;
    transform: scale(1.18);
  }
}

@keyframes orbit {
  from {
    transform: rotate(0deg) translateX(var(--orbit-radius)) rotate(0deg);
  }

  to {
    transform: rotate(360deg) translateX(var(--orbit-radius)) rotate(-360deg);
  }
}

@keyframes logo-breathe {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.025);
  }
}

@keyframes loader-hide {
  to {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}
