:root {
  --navy: #0f172a;
  --blue: #2563eb;
  --blue-dark: #1d4ed8;
  --green: #059669;
  --green-dark: #047857;
  --ink: #0f172a;
  --text: #334155;
  --muted: #64748b;
  --line: #e2e8f0;
  --paper: #ffffff;
  --canvas: #f8fafc;
  --shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
  --header-h: 76px;
  --radius: 18px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--canvas);
  line-height: 1.6;
  padding-bottom: calc(78px + env(safe-area-inset-bottom));
}

h1,
h2,
h3,
p,
ul {
  margin: 0;
}

ul {
  padding: 0;
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

img {
  max-width: 100%;
  display: block;
}

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
}

::selection {
  background: #bfdbfe;
  color: var(--navy);
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 100;
  background: var(--blue);
  color: #fff;
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 700;
}

.skip-link:focus {
  top: 12px;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.site-header.is-scrolled {
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  margin-right: auto;
}

.logo-mark {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--navy);
  color: #fff;
  font-size: 18px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
  line-height: 1.15;
}

.logo-name {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: var(--navy);
}

.logo-sub {
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
}

.nav-toggle {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--navy);
  font-size: 18px;
  cursor: pointer;
}

.nav-toggle .icon-close {
  display: none;
}

.nav-toggle[aria-expanded="true"] .icon-open {
  display: none;
}

.nav-toggle[aria-expanded="true"] .icon-close {
  display: inline;
}

.nav-list {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  flex-direction: column;
  gap: 4px;
  padding: 10px 20px 16px;
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.06);
}

.nav-list.is-open {
  display: flex;
}

.nav-link {
  display: block;
  padding: 12px 8px;
  border-radius: 10px;
  color: #475569;
  font-size: 15px;
  font-weight: 600;
}

.nav-link.is-active,
.nav-link:hover {
  color: var(--blue);
  background: #eff6ff;
}

.header-call {
  display: none;
}

.header-calls {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  border: 0;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.btn-primary {
  background: var(--blue);
  color: #fff;
}

.btn-primary:hover {
  background: var(--blue-dark);
}

.btn-whatsapp {
  background: var(--green);
  color: #fff;
}

.btn-whatsapp:hover {
  background: var(--green-dark);
}

.btn:active {
  transform: scale(0.98);
}

.hero {
  position: relative;
  overflow: hidden;
  color: #e2e8f0;
  background:
    radial-gradient(900px 420px at 100% -10%, rgba(37, 99, 235, 0.45), transparent 60%),
    radial-gradient(680px 360px at -10% 110%, rgba(5, 150, 105, 0.22), transparent 55%),
    var(--navy);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at 30% 40%, #000 20%, transparent 78%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 36px;
  padding: 48px 0 56px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-bottom: 16px;
  padding: 6px 12px 6px 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #f8fafc;
  font-size: 13px;
  font-weight: 600;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(5, 150, 105, 0.25);
}

.hero h1 {
  max-width: 16ch;
  color: #fff;
  font-size: clamp(2rem, 5vw, 3.35rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.12;
  text-wrap: balance;
}

.hero-lead {
  max-width: 38rem;
  margin-top: 16px;
  color: #cbd5e1;
  font-size: 1.05rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero-number {
  margin-top: 14px;
}

.hero-number a {
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.hero-number a:hover {
  color: #bfdbfe;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-top: 22px;
}

.hero-points li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #e2e8f0;
  font-size: 14px;
  font-weight: 500;
}

.hero-points i {
  color: #34d399;
  font-size: 12px;
}

.partner-contacts {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.partner-card {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.28);
}

.partner-name {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
}

.partner-phone {
  margin-top: 4px;
}

.partner-phone a {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.partner-phone a:hover {
  color: #bfdbfe;
}

.partner-card .hero-actions {
  margin-top: 12px;
}

.partner-card .btn {
  min-height: 42px;
  padding: 10px 14px;
  font-size: 14px;
}

.partner-contacts-cta {
  margin-top: 0;
}

.partner-card-dark {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

.bar-btn.bar-call-alt {
  background: var(--navy);
  color: #fff;
}

@media (min-width: 560px) {
  .partner-contacts {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-panel {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.panel-kicker {
  color: #93c5fd;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.panel-title {
  margin: 6px 0 16px;
  color: #fff;
  font-size: 1.35rem;
  font-weight: 700;
}

.panel-list {
  display: grid;
  gap: 10px;
}

.panel-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px;
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.38);
}

.panel-list strong,
.panel-list small {
  display: block;
}

.panel-list strong {
  color: #fff;
  font-size: 15px;
}

.panel-list small {
  margin-top: 2px;
  color: #cbd5e1;
  font-size: 13px;
  line-height: 1.45;
}

.panel-icon {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(37, 99, 235, 0.22);
  color: #bfdbfe;
}

.panel-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  color: #cbd5e1;
  font-size: 13px;
  font-weight: 600;
}

.panel-note i {
  color: #34d399;
}

.section {
  padding: 64px 0;
  scroll-margin-top: 88px;
}

.section-services,
.section-areas,
.section-trust {
  background: var(--paper);
}

.section-works {
  background: var(--canvas);
}

.section-head {
  max-width: 40rem;
  margin-bottom: 28px;
}

.section-head-center {
  margin-inline: auto;
  text-align: center;
}

.section-head h2 {
  color: var(--ink);
  font-size: clamp(1.7rem, 3vw, 2.15rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.section-head p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 1.02rem;
}

.card-grid {
  display: grid;
  gap: 16px;
}

.info-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-top: 3px solid var(--blue);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.trust-card {
  border-top-color: var(--green);
}

.card-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 14px;
  background: #eff6ff;
  color: var(--blue);
  font-size: 20px;
}

.card-icon-green {
  background: #ecfdf5;
  color: var(--green);
}

.info-card h3 {
  color: var(--ink);
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.info-card p {
  margin-top: 8px;
  color: var(--text);
  font-size: 0.96rem;
  line-height: 1.65;
}

.chip-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border: 1px solid #dbe3ef;
  border-radius: 999px;
  background: #fff;
  color: var(--navy);
  font-weight: 600;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.chip i {
  color: var(--blue);
}

.work-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: min(84vw, 320px);
  gap: 12px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
  scrollbar-width: thin;
  scrollbar-color: #cbd5e1 transparent;
}

.work-card {
  margin: 0;
  overflow: hidden;
  scroll-snap-align: start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.work-open {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 400px;
  padding: 12px;
  border: 0;
  background: linear-gradient(180deg, #f8fafc 0%, #e8eef5 100%);
  cursor: zoom-in;
}

.work-open img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.work-card figcaption {
  padding: 14px 16px 16px;
  color: var(--ink);
  font-weight: 700;
}

.lightbox {
  width: min(520px, calc(100% - 24px));
  max-height: calc(100vh - 24px);
  margin: auto;
  padding: 12px;
  border: 0;
  border-radius: 18px;
  background: var(--navy);
  color: #fff;
}

.lightbox::backdrop {
  background: rgba(15, 23, 42, 0.78);
}

.lightbox img {
  display: block;
  width: 100%;
  max-height: calc(100vh - 96px);
  object-fit: contain;
  border-radius: 12px;
  background: #020617;
}

.lightbox-close {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin: 0 0 8px auto;
  border: 0;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}

.footer-phone a {
  color: #fff;
  font-weight: 700;
}

.footer-phone a:hover {
  color: #bfdbfe;
}

.section-trust {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.cta-band {
  background:
    radial-gradient(700px 240px at 90% 0%, rgba(37, 99, 235, 0.35), transparent 60%),
    var(--navy);
  color: #cbd5e1;
}

.cta-inner {
  display: grid;
  gap: 22px;
  padding: 48px 0;
}

.cta-inner h2 {
  color: #fff;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.cta-inner p {
  max-width: 38rem;
  margin-top: 8px;
}

.site-footer {
  background: #0b1220;
  color: #94a3b8;
  padding: 36px 0 28px;
}

.footer-inner {
  display: grid;
  gap: 10px;
}

.footer-brand {
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.footer-areas,
.footer-copy {
  font-size: 14px;
}

.mobile-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.08);
}

.bar-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  border-radius: 12px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.bar-call {
  background: var(--blue);
}

.bar-wa {
  background: var(--green);
}

.bar-call:hover {
  background: var(--blue-dark);
}

.bar-wa:hover {
  background: var(--green-dark);
}

@media (hover: hover) {
  .info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.09);
  }
}

@media (min-width: 720px) {
  .card-grid-3,
  .card-grid-4 {
    grid-template-columns: 1fr 1fr;
  }

  .work-grid {
    grid-auto-flow: row;
    grid-auto-columns: auto;
    grid-template-columns: repeat(3, 1fr);
    overflow: visible;
  }

  .work-open {
    height: 440px;
  }
}

@media (min-width: 860px) {
  body {
    padding-bottom: 0;
  }

  .nav-toggle {
    display: none;
  }

  .nav-list,
  .nav-list.is-open {
    display: flex;
    position: static;
    flex-direction: row;
    align-items: center;
    gap: 6px;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .nav-link {
    padding: 8px 12px;
  }

  .nav-link:hover,
  .nav-link.is-active {
    background: transparent;
  }

  .header-calls {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 0 0 auto;
  }

  .header-call {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1px;
    min-height: 44px;
    padding: 6px 12px;
    border-radius: 12px;
    background: var(--blue);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.15;
  }

  .header-call-top {
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }

  .header-call-name {
    font-size: 10px;
    font-weight: 600;
  }

  .header-call:hover {
    background: var(--blue-dark);
  }

  .mobile-bar {
    display: none;
  }
}

@media (min-width: 980px) {
  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 56px;
    align-items: center;
    padding: 72px 0 80px;
  }

  .card-grid-3,
  .work-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .card-grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }

  .cta-inner {
    grid-template-columns: 1fr;
    align-items: start;
    padding: 56px 0;
    gap: 24px;
  }

  .partner-contacts-cta {
    width: 100%;
  }

  .footer-inner {
    grid-template-columns: 1.4fr auto;
    align-items: end;
  }

  .footer-copy {
    grid-column: 1 / -1;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .site-intro {
    display: none !important;
  }

  html.play-intro .hero-copy > *,
  html.play-intro .hero-panel {
    opacity: 1 !important;
    transform: none !important;
  }
}

a.info-card {
  display: block;
  color: inherit;
}

.bilgi-chips {
  margin-top: 22px;
}

.faq-list {
  display: grid;
  gap: 10px;
  max-width: 46rem;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  padding: 12px 14px;
}

.faq-item summary {
  color: var(--ink);
  font-weight: 700;
  cursor: pointer;
}

.faq-item p {
  margin-top: 8px;
}

.faq-item a,
.prose a {
  color: var(--blue);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumb a:hover {
  color: var(--blue);
}

.article-main {
  padding-top: 28px;
  background: var(--canvas);
}

.article-summary {
  max-width: 42rem;
  margin-top: 12px;
  color: var(--text);
  font-size: 1.05rem;
}

.prose h2 {
  margin-top: 28px;
  color: var(--ink);
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.prose h3 {
  margin-top: 18px;
  color: var(--ink);
  font-size: 1.05rem;
}

.prose p,
.prose ul,
.prose ol {
  margin-top: 10px;
}

.prose ul,
.prose ol {
  padding-left: 1.2rem;
  list-style: disc;
}

.prose li + li {
  margin-top: 6px;
}

.notice {
  margin-top: 16px;
  padding: 14px 16px;
  border: 1px solid #bfdbfe;
  border-radius: 14px;
  background: #eff6ff;
  color: var(--ink);
}

.notice-warn {
  border-color: #fcd34d;
  background: #fffbeb;
}

.code-card {
  margin-top: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-top: 3px solid var(--blue);
  border-radius: var(--radius);
  background: #fff;
}

.code-card h3 {
  color: var(--ink);
}

.code-label {
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.prose .related-list,
.prose .hub-list,
.related-list {
  display: grid;
  gap: 8px;
  list-style: none;
  padding-left: 0;
}

.related-list a {
  display: block;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  font-weight: 600;
}

.related-list a:hover {
  border-color: #bfdbfe;
  color: var(--blue);
}

.hub-list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.article-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

/* —— Site giriş animasyonu —— */
.site-intro {
  display: none;
}

html.play-intro:not(.is-ready) body {
  overflow: hidden;
}

html.play-intro .site-intro {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  background:
    radial-gradient(720px 360px at 70% 18%, rgba(37, 99, 235, 0.28), transparent 62%),
    radial-gradient(520px 300px at 18% 88%, rgba(5, 150, 105, 0.16), transparent 58%),
    var(--navy);
  color: #fff;
  transition: opacity 0.55s ease, visibility 0.55s ease;
}

html.play-intro .site-intro.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.site-intro-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px;
}

.site-intro-mark {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 28px;
  opacity: 0;
  transform: scale(0.86) translateY(10px);
}

.site-intro-brand {
  margin-top: 18px;
  font-size: clamp(1.35rem, 3.6vw, 1.9rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #fff;
  opacity: 0;
  transform: translateY(12px);
}

.site-intro-sub {
  margin-top: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  color: #94a3b8;
  opacity: 0;
  transform: translateY(10px);
}

.site-intro-line {
  display: block;
  width: 72px;
  height: 2px;
  margin-top: 22px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  transform: scaleX(0);
  transform-origin: center;
  opacity: 0;
}

html.play-intro .site-intro-mark {
  animation: intro-rise 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.08s forwards;
}

html.play-intro .site-intro-brand {
  animation: intro-rise 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.22s forwards;
}

html.play-intro .site-intro-sub {
  animation: intro-rise 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.34s forwards;
}

html.play-intro .site-intro-line {
  animation: intro-line 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.48s forwards;
}

@keyframes intro-rise {
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes intro-line {
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

html.play-intro .hero-copy > *,
html.play-intro .hero-panel {
  opacity: 0;
  transform: translateY(18px);
}

html.is-ready.play-intro .hero-copy > *:nth-child(1) {
  transition: opacity 0.55s ease 0.05s, transform 0.55s ease 0.05s;
}
html.is-ready.play-intro .hero-copy > *:nth-child(2) {
  transition: opacity 0.55s ease 0.14s, transform 0.55s ease 0.14s;
}
html.is-ready.play-intro .hero-copy > *:nth-child(3) {
  transition: opacity 0.55s ease 0.22s, transform 0.55s ease 0.22s;
}
html.is-ready.play-intro .hero-copy > *:nth-child(4) {
  transition: opacity 0.55s ease 0.3s, transform 0.55s ease 0.3s;
}
html.is-ready.play-intro .hero-copy > *:nth-child(5) {
  transition: opacity 0.55s ease 0.36s, transform 0.55s ease 0.36s;
}
html.is-ready.play-intro .hero-copy > *:nth-child(6) {
  transition: opacity 0.55s ease 0.42s, transform 0.55s ease 0.42s;
}
html.is-ready.play-intro .hero-panel {
  transition: opacity 0.65s ease 0.2s, transform 0.65s ease 0.2s;
}

html.is-ready .hero-copy > *,
html.is-ready .hero-panel {
  opacity: 1;
  transform: none;
}
