/* ============================================================
   Unreal Masterclass — Original Generation 00
   A faithful port of the Webflow homepage with light, modern
   refinements. Colours, type, radii and layout follow the
   original export (unrealmasterclass.webflow.css).
   ============================================================ */

:root {
  --ink: #212121;
  --ink-soft: #333333;
  --ink-muted: #525252;
  --grey: #787878;
  --line: #d5d7db;
  --paper: #ffffff;
  --tint: #f4f8fb;
  --card-dark: #1d1e1f;
  --coral: #fa5853;
  --pink: #f46692;
  --gold: #ffc444;
  --peach: #f3a562;
  --sky: #60aef8;
  --red: #e74c3c;
  --grad-brand: linear-gradient(to right, #fa5853, #f46692 50%, #ffc444);
  --grad-text: linear-gradient(111deg, #60aef8, #f46692 50%, #f3a562);
  --grad-line: linear-gradient(104deg, #fa5853, #f46692 51%, #f3a562);
  --radius: 20px;
  --shadow-card: 0 7px 18px -5px rgba(0, 0, 0, .19);
  --shadow-card-hover: 0 18px 34px -12px rgba(0, 0, 0, .28);
  --nav-h: 70px;
  --font-body: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-display: "Manrope", "Open Sans", system-ui, sans-serif;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  padding-top: var(--nav-h);
  color: var(--ink-soft);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.2;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; vertical-align: middle; display: inline-block; }
a { color: #303030; text-decoration: none; }
p { margin: 0 0 10px; }
strong { font-weight: 700; }
button { font: inherit; }

h1, h2, h3, h4, h5, h6 { margin: 20px 0 10px; font-weight: 700; line-height: 1.2; }

:focus-visible { outline: 3px solid var(--pink); outline-offset: 3px; border-radius: 6px; }

.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- Shared layout ---------- */
.container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 3rem 1em;
}
@media (min-width: 1280px) { .container { max-width: 1280px; } }

.section { position: relative; }
[id] { scroll-margin-top: calc(var(--nav-h) + 8px); }
.section--tint { background-color: var(--tint); }
.section--fade { background-image: linear-gradient(rgba(0, 0, 0, 0), var(--tint)); }
.container--tight { padding-top: 1.5rem; }

.text-center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.text-gradient {
  background-image: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1.2;
  margin-top: 20px;
  padding-bottom: .08em; /* keeps descenders inside the clipped box */
}
.text-gradient--sm { font-size: clamp(34px, 4.4vw, 50px); margin-bottom: 25px; }

.text-container { max-width: 50%; padding-bottom: 40px; }
.text-container--large { max-width: 80%; }
.large-text { font-size: 21px; }
.little-large-text { font-size: 20px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 130px;
  padding: 9px 20px;
  border: 0;
  border-radius: 20px;
  color: #fff;
  background-color: var(--coral);
  background-image: var(--grad-brand);
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: letter-spacing .3s, color .3s, box-shadow .3s var(--ease), transform .3s var(--ease);
}
.btn:hover {
  color: #fff;
  letter-spacing: 1px;
  box-shadow: 0 10px 22px -10px rgba(250, 88, 83, .6);
}
.btn:active { transform: translateY(1px); }

.btn--price {
  padding: 10px 44px;
  border-radius: 25px;
}
.btn--price .btn__text { font-size: 21px; }

.btn--dark {
  background-image: none;
  background-color: #141415;
  font-size: 16px;
  font-weight: 400;
  padding: 12px 34px;
  transition: background-color .2s, box-shadow .3s var(--ease), transform .3s var(--ease);
}
.btn--dark:hover { letter-spacing: 0; background-color: var(--coral); box-shadow: 0 12px 24px -10px rgba(250, 88, 83, .6); }
.btn--dark .btn__text { font-size: 20px; font-weight: 700; }

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 99;
  height: var(--nav-h);
  background-color: rgba(255, 255, 255, .88);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  backdrop-filter: saturate(160%) blur(12px);
  box-shadow: 0 1px #f1f1f1;
  transition: box-shadow .3s;
}
.nav.is-scrolled { box-shadow: 0 1px 0 #ececec, 0 8px 24px -16px rgba(0, 0, 0, .18); }

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding-top: 0;
  padding-bottom: 0;
}

.nav__brand {
  flex: none;
  margin-right: 30px;
  font-size: 30px;
  font-weight: 700;
  color: #333;
  letter-spacing: .5px;
}
.nav__spacer { flex: 1; }

.nav__menu {
  display: flex;
  align-items: center;
  flex: none;
}
.nav__link {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10px 1em;
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
  transition: color .2s;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 1em; right: 1em; bottom: 4px;
  height: 2px;
  border-radius: 2px;
  background-image: var(--grad-brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav__link:hover { color: #f95c64; }
.nav__link:hover::after, .nav__link.is-active::after { transform: scaleX(1); }

.nav__cta { display: flex; align-items: center; justify-content: flex-end; flex: 1; padding-left: .5em; }
.nav__cta .btn { min-width: 130px; }

.nav__toggle {
  display: none;
  position: absolute;
  top: 7px; right: 10px;
  width: 56px; height: 56px;
  padding: 0;
  border: 0;
  border-radius: 12px;
  background-image: linear-gradient(135deg, #fa5853, #f46692 49%, #ffc444);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: filter .2s;
}
.nav__toggle:hover { filter: brightness(1.05); }
.nav__toggle img { width: 26px; height: 26px; }

@media (max-width: 991px) {
  .nav__toggle { display: flex; }
  .nav__menu {
    position: absolute;
    top: var(--nav-h); left: 0; right: 0;
    flex-direction: column;
    align-items: center;
    padding: 1em 1em 1.25em;
    background-color: #fff;
    box-shadow: 0 2px 3px rgba(0, 0, 0, .05), 0 20px 40px -20px rgba(0, 0, 0, .25);
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .25s var(--ease), transform .25s var(--ease), visibility 0s linear .25s;
  }
  .nav.is-open .nav__menu {
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity .25s var(--ease), transform .25s var(--ease);
  }
  .nav__link { margin-bottom: .5em; font-size: 20px; font-weight: 600; }
  .nav__link::after { display: none; }
  .nav__cta { flex: 0 auto; justify-content: center; padding: .5em 0 0; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding-top: calc(3em - 10px);
  overflow: clip;
}
.hero__ellipses { position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.hero__ellipse {
  position: absolute;
  background-position: 50%;
  background-size: cover;
  background-repeat: no-repeat;
  will-change: transform;
}
.hero__ellipse--right {
  top: 0; right: -530px;
  width: 650px; height: 650px;
  background-image: url("../images/Ellipse-2.avif");
}
.hero__ellipse--left {
  top: 5em; left: -430px;
  width: 520px; height: 650px;
  background-image: url("../images/Ellipse-1_1.avif");
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  min-height: 70vh;
}
.hero__content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1070px;
  margin: 0 auto;
  padding-bottom: 60px;
  text-align: center;
}

.hero__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px; height: 100px;
  padding: 20px;
  border-radius: 50%;
  background-image: linear-gradient(349deg, #fa5853, #f46692 52%, #ffc444);
  box-shadow: 0 16px 30px -14px rgba(244, 102, 146, .7);
}
.hero__icon img { width: 175%; max-width: 175%; padding-top: 3px; }

.hero__title {
  margin: 20px 0 25px;
  font-size: clamp(44px, 6.5vw, 75px);
  line-height: 1.15;
  letter-spacing: -.01em;
  color: #333;
}

.hero__lede {
  max-width: 820px;
  margin: 0 auto;
  color: var(--ink);
  font-size: clamp(19px, 2.2vw, 24px);
  line-height: 1.3;
}

.hero__video {
  position: relative;
  width: 100%;
  max-width: 1070px;
  margin-top: 21px;
  aspect-ratio: 940 / 529;
  border-radius: 12px;
  overflow: hidden;
  background: #111;
  box-shadow: 0 14px 20px -1px rgba(223, 14, 14, .43), 0 30px 60px -30px rgba(0, 0, 0, .5);
}
.hero__video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.hero__video-poster {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: #fff;
  overflow: hidden;
}
.hero__video-poster img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.hero__video-poster::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .08), rgba(0, 0, 0, .38));
}
.hero__video-poster:hover img { transform: scale(1.03); }
.hero__play {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px; height: 64px;
  border-radius: 50%;
  background-image: linear-gradient(to right, rgba(250, 88, 83, .78), rgba(244, 102, 146, .78) 50%, rgba(255, 196, 68, .78));
  box-shadow: 0 12px 28px -10px rgba(250, 88, 83, .5);
  transition: transform .3s var(--ease);
}
.hero__play svg { display: block; width: 28px; height: 28px; flex: none; fill: #fff; }
.hero__video-poster:hover .hero__play { transform: scale(1.06); }
.hero__video-poster:focus-visible { outline-offset: -4px; }
.hero__video-label {
  position: absolute;
  left: 20px; bottom: 16px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, .45);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .02em;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.hero__actions {
  display: flex;
  margin-top: 2.2em;
  margin-bottom: .5em;
  transition: transform .2s;
}
.hero__actions:hover { transform: translateY(-2px); }
.hero__note {
  margin: 14px 0 0;
  color: var(--grey);
  font-size: 15px;
}

/* ---------- Feature grids ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 2em;
  width: 100%;
  margin-bottom: 3em;
}
.span-5 { grid-column: span 5; }
.span-4 { grid-column: span 4; }
.span-3 { grid-column: span 3; }

.card {
  position: relative;
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  border-radius: var(--radius);
  background-color: #fff;
  box-shadow: 0 20px 40px rgba(0, 0, 0, .05);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.card--shadow { box-shadow: var(--shadow-card); }
.card--shadow:hover { transform: translateY(-3px) scale(1.01); box-shadow: var(--shadow-card-hover); }
.card__image--tall { height: 300px; object-fit: cover; object-position: 50% 0; width: 100%; }
.card__image--top { width: 100%; object-fit: cover; }

.card__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  padding: 2em;
}
.card__body p:last-child { margin-bottom: 0; }
.card__center {
  flex: 1;
  width: 100%;
  margin: auto 0;
  text-align: center;
}

.heading-large {
  margin-top: 0;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  line-height: 1.3;
}
.heading-small {
  margin-top: 10px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}
.card__icon { height: 67px; width: auto; margin-bottom: .5em; }

/* ---------- Chapter cards ---------- */
.chapter {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 210px;
  overflow: hidden;
  border-radius: var(--radius);
  background-color: #1d1e1f;
  box-shadow: var(--shadow-card);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  isolation: isolate;
}
.chapter__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-position: 50%;
  background-size: cover;
  background-repeat: no-repeat;
  transition: transform .7s var(--ease);
}
.chapter:hover { transform: translateY(-2px) scale(1.01); box-shadow: var(--shadow-card-hover); }
.chapter:hover .chapter__bg { transform: scale(1.05); }
.chapter__overlay {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  padding: 2em;
  background-color: rgba(0, 0, 0, .65);
  transition: background-color .3s;
}
.chapter:hover .chapter__overlay { background-color: rgba(0, 0, 0, .58); }
.chapter__text { width: 100%; color: var(--tint); text-align: center; }
.chapter__text .heading-small { color: #fff; }
.chapter__text p { margin-bottom: 0; color: rgba(244, 248, 251, .92); }

.chapter--blueprints .chapter__bg { background-image: url("../images/tLRH3_1.avif"); }
.chapter--enviro .chapter__bg { background-image: url("../images/PreviewCliffTown_1.avif"); }
.chapter--material .chapter__bg { background-image: url("../images/Newthumbtest_1.avif"); }
.chapter--anim .chapter__bg { background-image: url("../images/AnimationBackground_1.avif"); }
.chapter--render .chapter__bg { background-image: url("../images/HighresScreenshot0991_1.avif"); }
.chapter--effects .chapter__bg { background-image: url("../images/SpecialEffectsChapter_1.avif"); }
.chapter--model .chapter__bg { background-image: url("../images/mug02_1.avif"); }
.chapter--completegame .chapter__bg { background-image: url("../images/EmailWorldBuild_1.avif"); }
.chapter--archviz .chapter__bg { background-image: url("../images/ArchFuture_1.avif"); }
.chapter--vr .chapter__bg { background-image: url("../images/VRImage_1.avif"); }
.chapter--virtualprod .chapter__bg { background-image: url("../images/VirtualProductionFuture_1.avif"); }
.chapter--code .chapter__bg { background-image: url("../images/Code-BackgroundMain2_1.avif"); }

.chapter__badge {
  position: absolute;
  top: 0; left: 0;
  z-index: 2;
  padding: 3px 13px;
  border-radius: 0 0 20px 0;
  background-color: rgba(246, 169, 61, .82);
  color: #fff;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}

/* ---------- Testimonials ---------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1em;
  width: 100%;
}
.testimonial-grid > .card { grid-column: span 2; }

.testimonial__head {
  display: flex;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 1.5em;
}
.testimonial__avatar {
  flex: none;
  width: 43px; height: 43px;
  margin-right: 15px;
  border-radius: 50%;
  object-fit: cover;
}
.testimonial__avatar--lg { width: 64px; height: 64px; }
.testimonial__meta { flex: 1; }
.testimonial__name { color: var(--ink); }
.testimonial__role { color: var(--grey); font-size: 16px; }
.testimonial__quote { margin-bottom: 0; color: var(--ink); }

.review__stars { color: #f6a93d; font-size: 15px; letter-spacing: 1px; }
.review__name { margin-top: 2px; padding-bottom: 2px; color: var(--ink); }
.review__role { color: var(--ink-muted); font-size: 17px; }
.review__quote { margin-bottom: 0; color: var(--ink); font-size: 17px; line-height: 1.3; }

/* ---------- Pricing ---------- */
.pricing {
  display: flex;
  justify-content: center;
  max-width: 880px;
  margin: 0 auto -23px;
}
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 2em;
  width: 100%;
  margin-bottom: 3em;
}
.pricing__card { grid-column: 3 / 7; }
/* Half the standard card's hover change, measured from its resting state. */
.pricing__card:hover {
  transform: translateY(-1.5px) scale(1.005);
  box-shadow: 0 12.5px 26px -8.5px rgba(0, 0, 0, .235);
}
.pricing__plan { margin-top: 0; font-size: 28px; }
.pricing__amount { margin: 6px 0 10px; font-size: 66px; line-height: 1.2; }
.pricing__intro { font-size: 20px; }
.benefit {
  margin: 23px 0;
  text-align: left;
  font-size: 18px;
}
.pricing__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 8px;
}
.pricing__cta .btn { min-width: 220px; }

.refund {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 450px;
  margin: 0 auto;
  text-align: center;
}
.refund img { width: 33px; opacity: .45; margin-bottom: 10px; }
.refund p { margin-bottom: 0; font-size: 16px; }

/* ---------- FAQ ---------- */
.faq {
  background-image: linear-gradient(var(--tint), rgba(255, 255, 255, 0) 36%);
  padding-bottom: 72px;
}
.faq .text-gradient { margin-top: 65px; font-size: clamp(36px, 4.6vw, 54px); }
.faq__list {
  max-width: 900px;
  margin: 27px auto 0;
  padding: 0 1em;
}
.faq__item {
  position: relative;
  margin: 5px 0;
  overflow: hidden;
}
.faq__question {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 20px 20px 20px 52px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  line-height: 1.35;
}
.faq__icon {
  position: absolute;
  left: 18px;
  width: 20px; height: 20px;
  transition: transform .3s var(--ease);
}
.faq__icon::before, .faq__icon::after {
  content: "";
  position: absolute;
  background: var(--ink);
  border-radius: 2px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.faq__icon::before { width: 14px; height: 2px; }
.faq__icon::after { width: 2px; height: 14px; transition: transform .3s var(--ease), opacity .2s; }
.faq__item.is-open .faq__icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq__question::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 3px;
  background-image: var(--grad-line);
}
.faq__answer {
  height: 0;
  overflow: hidden;
  transition: height .35s var(--ease);
}
.faq__answer-inner {
  padding: 20px;
  font-size: 18px;
  line-height: 25px;
  color: var(--ink-soft);
}
.highlight { color: var(--red); }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 16px;
  width: 100%;
}
.contact-card { grid-column: 2 / 10; }
.contact-card .text-gradient { margin-top: 0; text-align: left; }
.contact-card a { color: var(--coral); font-weight: 600; }

.form { width: 100%; margin: 1em 0; }
.form__label { display: block; margin: 8px 0 5px; font-weight: 400; }
.form__input, .form__textarea {
  display: block;
  width: 100%;
  margin: 0;
  padding: 10px 10px 10px 20px;
  border: 1px solid #dadada;
  border-radius: 20px;
  background-color: rgba(244, 248, 251, .25);
  color: #141415;
  font-family: var(--font-body);
  font-size: 22px;
  line-height: 1.2;
  transition: border-color .2s, box-shadow .2s;
}
.form__input { height: 70px; }
.form__textarea { min-height: 160px; resize: vertical; }
.form__input:focus, .form__textarea:focus {
  outline: none;
  border-color: var(--coral);
  box-shadow: 0 0 0 4px rgba(250, 88, 83, .12);
}
.form__input::placeholder, .form__textarea::placeholder { color: #c9c9c9; opacity: 1; }
.form__submit {
  float: right;
  width: 100px;
  min-width: 100px;
  height: 56px;
  margin-top: 29px;
  padding: 0;
  border-radius: 15px;
  background-image: url("../images/Arrow-White.svg"), var(--grad-brand);
  background-position: 50%, 0 0;
  background-repeat: no-repeat, repeat;
  transition: background-position .3s, box-shadow .3s var(--ease);
}
.form__submit:hover { background-position: 55%, 0 0; letter-spacing: 0; }
.form__submit:disabled { cursor: default; opacity: .65; }
.no-js .form__submit { display: none; }
.form__submit.is-sending { background-image: var(--grad-brand); font-size: 14px; }
.form__honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.form__privacy { clear: both; margin-top: 20px; color: var(--ink-muted); font-size: 13px; line-height: 1.5; }
.form__privacy a { text-decoration: underline; }
.form__row::after { content: ""; display: table; clear: both; }
.form__status {
  clear: both;
  display: none;
  margin-top: 16px;
  padding: 15px 20px;
  border-radius: 5px;
  font-size: 16px;
}
.form__status.is-error { display: block; color: var(--coral); background: #fee; }
.form__status.is-pending { display: block; color: var(--ink); background: var(--tint); }
.form__status.is-success {
  display: block;
  border: 1px solid var(--coral);
  background-color: var(--tint);
  color: var(--ink);
}

/* Footer shared with the current main Unreal Sensei website. */
@font-face { font-family: "Plus Jakarta Sans"; src: url("../fonts/PlusJakartaSans-Regular.ttf") format("truetype"); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: "Plus Jakarta Sans"; src: url("../fonts/PlusJakartaSans-Medium.ttf") format("truetype"); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: "Plus Jakarta Sans"; src: url("../fonts/PlusJakartaSans-Bold.ttf") format("truetype"); font-weight: 700; font-style: normal; font-display: swap; }
.site-footer {
  --bg-2: #f4f8fb; --surface: #fff; --line: #e7eaec; --line-2: #d6dce2;
  --text: #16181c; --text-2: #3b434c; --text-3: #6b7480; --text-4: #909aa3; --accent: #ff6144;
  font-family: "Plus Jakarta Sans", "Segoe UI", system-ui, sans-serif;
  font-size: 16px; line-height: 1.55; color: var(--text); text-align: left;
}
.site-footer .container-wide { width: min(1380px, 100% - 2 * clamp(18px, 4vw, 40px)); margin-inline: auto; }
.site-footer img, .site-footer svg { display: block; }
.site-footer a { color: inherit; text-decoration: none; }
.site-footer h4 { margin: 0; font-weight: 700; line-height: 1.1; }
.site-footer p, .site-footer ul { margin: 0; padding: 0; list-style: none; }
.site-footer .brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; font-size: 19px; letter-spacing: -.02em; color: var(--text); }
.site-footer .brand .mark { width: 38px; height: 38px; border-radius: 50%; }
.site-footer .brand .word { display: inline-flex; flex-direction: column; line-height: 1; }
/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line); background: var(--bg-2); padding: 56px 0 28px; }
:root[data-theme="dark"] .site-footer { background: #13151a; }
.site-footer .grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; }
.site-footer h4 { font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--text-3); margin-bottom: 14px; }
.site-footer li { margin-bottom: 9px; }
.site-footer li a { font-size: 14.5px; color: var(--text-2); font-weight: 500; }
.site-footer li a:hover { color: var(--accent); }
.site-footer .about p { color: var(--text-3); font-size: 14px; margin-top: 12px; max-width: 38ch; }
.site-footer .badge { display: inline-flex; align-items: center; gap: 10px; margin-top: 18px; padding: 8px 12px 8px 8px; border-radius: 12px; background: var(--surface); border: 1px solid var(--line); font-size: 12.5px; font-weight: 700; color: var(--text-2); }
.site-footer .badge img { height: 30px; width: auto; border-radius: 6px; }
.site-footer .bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; margin-top: 40px; padding-top: 20px; border-top: 1px solid var(--line); font-size: 13px; color: var(--text-4); }
.site-footer .social { display: flex; gap: 8px; }
.site-footer .social a { width: 36px; height: 36px; border-radius: 10px; display: grid; place-items: center; border: 1px solid var(--line); background: var(--surface); color: var(--text-2); }
.site-footer .social a:hover { color: var(--accent); border-color: var(--accent); }
.site-footer .social svg { width: 16px; height: 16px; }
.site-footer .domain-note { display: flex; gap: 10px; align-items: flex-start; padding: 12px 14px; border-radius: 12px; background: var(--surface); border: 1px dashed var(--line-2); font-size: 13px; color: var(--text-3); margin-top: 16px; }
.site-footer .domain-note, .site-footer .domain-note:hover { text-decoration: none; transform: none; transition: none; }
.site-footer .domain-note:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.site-footer .domain-note svg { width: 16px; height: 16px; flex: none; margin-top: 2px; color: var(--accent); }
.site-footer .domain-note b { color: var(--text-2); }
@media (max-width: 900px) { .site-footer .grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .site-footer .grid { grid-template-columns: 1fr; } }

@media (prefers-reduced-motion: reduce) {
  .card, .chapter, .btn, .hero__actions, .chapter__bg { transition: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
  .hero { padding-top: 1em; }
  .hero__inner { padding: 0 1em; }
  .hero__ellipse--right { right: -560px; }
  .hero__ellipse--left { left: -450px; }
  .text-container { max-width: 70%; }
  .testimonial-grid { grid-template-columns: repeat(4, 1fr); }
  .contact-card { grid-column: 1 / -1; }
}

@media (max-width: 767px) {
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .feature-grid > * { grid-column: span 2; }
  .text-container, .text-container--large { max-width: 100%; }
  .testimonial-grid { grid-template-columns: 1fr 1fr; }
  .testimonial-grid > .card { grid-column: span 2; }
  .pricing__grid { grid-template-columns: 1fr 1fr; }
  .pricing__card { grid-column: span 2; }
  .btn--price .btn__text { font-size: 27px; }
  .hero__actions { flex-direction: column; align-items: center; width: 100%; }
  .hero__actions .btn { width: 100%; }
  .form__submit { float: none; width: 100%; margin-top: 12px; }
}

@media (max-width: 479px) {
  .container { padding-left: .75em; padding-right: .75em; }
  .hero__icon { width: 80px; height: 80px; }
  .hero__ellipse--right { width: 350px; height: 350px; top: 30%; left: 75vw; right: auto; }
  .hero__ellipse--left { width: 320px; height: 350px; top: 30%; left: -60%; }
  .hero__video { width: calc(100% + 2em); max-width: none; border-radius: 8px; }
  .hero__play { width: 52px; height: 52px; }
  .hero__play svg { width: 24px; height: 24px; }
  .card__body { padding: 1.5em 1em; }
  .chapter__overlay { padding: 1.5em 1em; }
  .form__input, .form__textarea { border-radius: 10px; font-size: 18px; }
  .form__input { height: 60px; }
  .form__submit { border-radius: 10px; height: 50px; }
  .faq__list { padding: 0; }
}
