/* Caner Güngör — homepage editorial system */
:root {
  --home-gold: #f4c95d;
  --home-gold-deep: #b78324;
  --home-cream: #f2ecdc;
  --home-ink: #050607;
  --home-panel: #0b0d10;
  --home-panel-soft: #101318;
  --home-line: rgba(255, 255, 255, 0.1);
  --home-copy: rgba(255, 255, 255, 0.72);
  --home-dim: rgba(255, 255, 255, 0.52);
  --home-radius: 22px;
}

.home-hero,
.home-section,
.start-panel,
.closing-section {
  position: relative;
  isolation: isolate;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 1rem;
  color: var(--home-gold);
  font: 700 0.7rem/1.2 var(--font-body);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 1px;
  background: currentColor;
  content: "";
}

.home-hero {
  min-height: 100svh;
  overflow: hidden;
  padding: 9.5rem 0 6.5rem;
  background:
    radial-gradient(circle at 14% 28%, rgba(244, 201, 93, 0.09), transparent 29rem),
    radial-gradient(circle at 88% 66%, rgba(120, 91, 40, 0.14), transparent 31rem),
    linear-gradient(125deg, #020303 0%, #080a0d 55%, #020303 100%);
}

.home-hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.25;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
  content: "";
}

.home-hero::after {
  position: absolute;
  right: -12vw;
  bottom: -36vw;
  z-index: -1;
  width: 72vw;
  height: 72vw;
  border: 1px solid rgba(244, 201, 93, 0.09);
  border-radius: 50%;
  box-shadow:
    0 0 0 8vw rgba(244, 201, 93, 0.012),
    0 0 0 16vw rgba(244, 201, 93, 0.01);
  content: "";
}

.hero-orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(244, 201, 93, 0.11);
  border-radius: 50%;
  pointer-events: none;
}

.hero-orbit--one {
  top: 21%;
  right: 4%;
  width: 42rem;
  height: 42rem;
}

.hero-orbit--two {
  top: 34%;
  right: 10%;
  width: 28rem;
  height: 28rem;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero-copy h1 {
  max-width: 710px;
  margin: 0 0 1.5rem;
  color: #fff;
  font-size: clamp(3.6rem, 6.5vw, 6.9rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.94;
}

.hero-copy h1 em,
.section-intro h2 em,
.method-intro h2 em,
.promise-heading h2 em,
.faq-intro h2 em,
.closing-card h2 em {
  color: var(--home-gold);
  font-weight: 500;
  font-style: italic;
}

.hero-lead {
  max-width: 620px;
  margin: 0 0 1.5rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  line-height: 1.75;
}

.hero-assurances {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1.2rem;
  margin: 0 0 2rem;
}

.hero-assurances li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.82rem;
}

.hero-assurances i {
  display: grid;
  width: 1.25rem;
  height: 1.25rem;
  place-items: center;
  border: 1px solid rgba(244, 201, 93, 0.35);
  border-radius: 50%;
  color: var(--home-gold);
  font-size: 0.54rem;
}

.hero-actions,
.closing-actions,
.promise-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
}

.home-hero .btn,
.home-hero .btn-ghost,
.closing-section .btn,
.closing-section .btn-ghost {
  min-height: 52px;
}

.hero-metrics {
  display: flex;
  max-width: 580px;
  margin: 2.6rem 0 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--home-line);
}

.hero-metrics div {
  min-width: 0;
  padding: 0 1.5rem;
  border-right: 1px solid var(--home-line);
}

.hero-metrics div:first-child {
  padding-left: 0;
}

.hero-metrics div:last-child {
  border-right: 0;
}

.hero-metrics dt {
  color: #fff;
  font: 500 clamp(1.55rem, 3vw, 2.15rem)/1 var(--font-heading);
}

.hero-metrics dd {
  margin-top: 0.35rem;
  color: var(--home-dim);
  font-size: 0.7rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  justify-self: end;
  width: min(100%, 440px);
}

.hero-photo-shell {
  position: relative;
  overflow: hidden;
  aspect-ratio: 0.75;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 220px 220px 22px 22px;
  background: var(--home-panel);
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.55);
}

.hero-photo-shell::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to top, rgba(1, 2, 3, 0.92), transparent 38%),
    linear-gradient(135deg, rgba(244, 201, 93, 0.13), transparent 45%);
  content: "";
  pointer-events: none;
}

.hero-photo-shell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 45%;
  filter: grayscale(100%) contrast(1.06);
  transform: scale(1.01);
}

.hero-photo-caption {
  position: absolute;
  right: 1.6rem;
  bottom: 1.5rem;
  left: 1.6rem;
  z-index: 2;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}

.hero-photo-caption span {
  color: #fff;
  font: 500 1.25rem/1.1 var(--font-heading);
}

.hero-photo-caption small {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.64rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-method-card {
  position: absolute;
  right: -2.5rem;
  bottom: 18%;
  z-index: 3;
  display: grid;
  gap: 0.35rem;
  width: min(290px, 78%);
  padding: 1rem 1.2rem;
  border: 1px solid rgba(244, 201, 93, 0.28);
  border-radius: 12px;
  background: rgba(8, 10, 12, 0.84);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(18px);
}

.hero-method-card span {
  color: var(--home-gold);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-method-card strong {
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
}

.hero-scroll-cue {
  position: absolute;
  right: 2.5rem;
  bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  align-items: center;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-scroll-cue i {
  color: var(--home-gold);
  animation: homeBounce 1.8s ease-in-out infinite;
}

@keyframes homeBounce {
  50% { transform: translateY(5px); }
}

.start-panel {
  padding: 4.5rem 0 2rem;
  background: #050607;
}

.start-panel-head,
.section-intro--split,
.promise-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: end;
}

.start-panel-head {
  margin-bottom: 1.5rem;
}

.start-panel-head h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 500;
  letter-spacing: -0.04em;
}

.start-panel-head p {
  justify-self: end;
  margin: 0 0 0.4rem;
  color: var(--home-dim);
}

.start-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid var(--home-line);
  border-radius: var(--home-radius);
}

.start-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
  min-height: 150px;
  padding: 1.6rem;
  border-right: 1px solid var(--home-line);
  background: rgba(255, 255, 255, 0.018);
  transition: background-color 0.25s ease, color 0.25s ease;
}

.start-card:last-child {
  border-right: 0;
}

.start-card:hover {
  background: rgba(244, 201, 93, 0.07);
}

.start-card > i {
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border: 1px solid rgba(244, 201, 93, 0.25);
  border-radius: 50%;
  color: var(--home-gold);
}

.start-index {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: rgba(255, 255, 255, 0.28);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.start-copy {
  display: grid;
  gap: 0.35rem;
}

.start-copy strong {
  color: #fff;
  font: 500 1.25rem/1.2 var(--font-heading);
}

.start-copy small {
  color: var(--home-dim);
  font-size: 0.76rem;
  line-height: 1.5;
}

.start-arrow {
  align-self: end;
  color: var(--home-gold);
  font-size: 1rem;
  transition: transform 0.25s ease;
}

.start-card:hover .start-arrow {
  transform: translate(3px, -3px);
}

.home-section {
  overflow: hidden;
  padding: clamp(5.5rem, 9vw, 9rem) 0;
  background: #050607;
}

.home-section + .home-section {
  border-top: 1px solid rgba(255, 255, 255, 0.055);
}

.section-intro {
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.section-intro h2,
.method-intro h2,
.promise-heading h2,
.faq-intro h2,
.closing-card h2 {
  max-width: 760px;
  margin: 0;
  color: #fff;
  font-size: clamp(2.7rem, 5.5vw, 5rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1;
}

.section-intro > p,
.section-intro-action > p,
.method-intro > p,
.promise-copy > p,
.faq-intro > p {
  max-width: 560px;
  margin: 0;
  color: var(--home-copy);
  font-size: 1rem;
  line-height: 1.8;
}

.section-intro--split > p,
.section-intro-action {
  justify-self: end;
}

.section-intro-action {
  display: grid;
  gap: 1.2rem;
}

.text-link,
.card-link {
  display: inline-flex;
  gap: 0.65rem;
  align-items: center;
  width: fit-content;
  color: var(--home-gold);
  font-size: 0.82rem;
  font-weight: 700;
}

.text-link i,
.card-link i {
  transition: transform 0.25s ease;
}

.text-link:hover i,
.card-link:hover i {
  transform: translateX(4px);
}

.services-section {
  background:
    radial-gradient(circle at 80% 20%, rgba(244, 201, 93, 0.055), transparent 26rem),
    #050607;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  overflow: visible;
  border: 0;
  background: none;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 360px;
  padding: clamp(1.8rem, 4vw, 3.2rem);
  overflow: hidden;
  border: 1px solid var(--home-line);
  border-radius: var(--home-radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.04), transparent 60%),
    var(--home-panel);
  box-shadow: none;
  content-visibility: visible;
  contain: none;
  backdrop-filter: none;
  transition: transform 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
}

.service-card--featured {
  grid-row: span 2;
  min-height: 736px;
  background:
    radial-gradient(circle at 90% 10%, rgba(244, 201, 93, 0.18), transparent 18rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), transparent 55%),
    #0a0c0f;
}

.service-card::before {
  position: absolute;
  right: -10rem;
  bottom: -10rem;
  width: 23rem;
  height: 23rem;
  border: 1px solid rgba(244, 201, 93, 0.1);
  border-radius: 50%;
  background: none;
  opacity: 1;
  content: "";
}

.service-card::after {
  position: absolute;
  right: 3rem;
  bottom: 3rem;
  left: auto;
  width: 4rem;
  height: 1px;
  background: var(--home-gold);
  content: "";
}

.service-card:hover {
  border-color: rgba(244, 201, 93, 0.3);
  background-color: #101318;
  box-shadow: none;
  transform: translateY(-5px);
}

.card-index {
  position: absolute;
  top: 1.5rem;
  right: 1.6rem;
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.card-icon {
  display: grid;
  width: 3.2rem;
  height: 3.2rem;
  margin-bottom: auto;
  place-items: center;
  border: 1px solid rgba(244, 201, 93, 0.27);
  border-radius: 50%;
  color: var(--home-gold);
  font-size: 1.1rem;
}

.service-card--featured .card-icon {
  width: 4.4rem;
  height: 4.4rem;
  font-size: 1.4rem;
}

.service-card-copy {
  position: relative;
  z-index: 1;
  margin-top: 2rem;
}

.card-kicker {
  margin-bottom: 0.8rem !important;
  color: var(--home-gold) !important;
  font-size: 0.65rem !important;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-card h3 {
  max-width: 520px;
  margin-bottom: 0.9rem;
  color: #fff;
  font-size: clamp(1.65rem, 3.2vw, 2.6rem);
  font-weight: 500;
  letter-spacing: -0.035em;
}

.service-card--featured h3 {
  font-size: clamp(2.3rem, 4.2vw, 4rem);
}

.service-card p {
  max-width: 580px;
  margin: 0;
  color: var(--home-copy);
  font-size: 0.92rem;
  line-height: 1.75;
}

.card-link {
  position: relative;
  z-index: 1;
  margin-top: 1.8rem;
}

.method-section {
  background:
    linear-gradient(90deg, rgba(244, 201, 93, 0.03), transparent 45%),
    #080a0c;
}

.method-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(3rem, 8vw, 8rem);
}

.method-intro {
  position: sticky;
  top: 8rem;
  align-self: start;
}

.method-intro h2 {
  margin-bottom: 1.5rem;
}

.method-intro .text-link {
  margin-top: 1.5rem;
}

.method-list {
  counter-reset: method;
}

.method-list li {
  display: grid;
  grid-template-columns: 4.2rem 1fr;
  gap: 1.5rem;
  padding: 2.2rem 0;
  border-top: 1px solid var(--home-line);
}

.method-list li:last-child {
  border-bottom: 1px solid var(--home-line);
}

.method-list > li > span {
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border: 1px solid rgba(244, 201, 93, 0.25);
  border-radius: 50%;
  color: var(--home-gold);
  font-size: 0.68rem;
  font-weight: 700;
}

.method-list h3 {
  margin: 0 0 0.65rem;
  color: #fff;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-weight: 500;
}

.method-list p {
  max-width: 620px;
  margin: 0;
  color: var(--home-copy);
  font-size: 0.9rem;
  line-height: 1.75;
}

.tools-section {
  background:
    radial-gradient(circle at 12% 75%, rgba(244, 201, 93, 0.06), transparent 25rem),
    #050607;
}

.tools-showcase {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.tool-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  min-height: 300px;
  padding: clamp(1.8rem, 4vw, 2.8rem);
  overflow: hidden;
  border: 1px solid var(--home-line);
  border-radius: var(--home-radius);
  background: var(--home-panel);
  transition: border-color 0.3s ease, transform 0.3s ease, background-color 0.3s ease;
}

.tool-card--atlas {
  grid-row: span 2;
  min-height: 616px;
  background:
    radial-gradient(circle at 50% 100%, rgba(244, 201, 93, 0.13), transparent 22rem),
    var(--home-panel);
}

.tool-card::after {
  position: absolute;
  right: -7rem;
  bottom: -7rem;
  width: 17rem;
  height: 17rem;
  border: 1px solid rgba(244, 201, 93, 0.11);
  border-radius: 50%;
  box-shadow: 0 0 0 3rem rgba(244, 201, 93, 0.018);
  content: "";
}

.tool-card:hover {
  border-color: rgba(244, 201, 93, 0.32);
  background-color: #111419;
  transform: translateY(-4px);
}

.tool-number {
  position: absolute;
  top: 1.2rem;
  right: 1.4rem;
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
}

.tool-icon {
  display: grid;
  width: 3.4rem;
  height: 3.4rem;
  place-items: center;
  border: 1px solid rgba(244, 201, 93, 0.26);
  border-radius: 50%;
  color: var(--home-gold);
}

.tool-card--atlas .tool-icon {
  width: 4.8rem;
  height: 4.8rem;
  font-size: 1.5rem;
}

.tool-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: end;
}

.tool-card--atlas .tool-content {
  grid-column: 1 / -1;
}

.tool-content small {
  margin-bottom: 0.75rem;
  color: var(--home-gold);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.tool-content strong {
  margin-bottom: 0.8rem;
  color: #fff;
  font: 500 clamp(1.8rem, 4vw, 3rem)/1.05 var(--font-heading);
  letter-spacing: -0.035em;
}

.tool-card--atlas .tool-content strong {
  font-size: clamp(2.8rem, 6vw, 5rem);
}

.tool-content > span {
  max-width: 520px;
  color: var(--home-copy);
  font-size: 0.86rem;
  line-height: 1.65;
}

.tool-content b {
  margin-top: 1rem;
  padding: 0.3rem 0.65rem;
  border: 1px solid rgba(244, 201, 93, 0.22);
  border-radius: 999px;
  color: var(--home-gold);
  font-size: 0.67rem;
}

.tool-open {
  position: absolute;
  right: 1.6rem;
  bottom: 1.5rem;
  z-index: 2;
  color: var(--home-gold);
  font-size: 0.72rem;
  font-weight: 700;
}

.tool-quick-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}

.tool-quick-list a {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1.25rem 1.35rem;
  border: 1px solid var(--home-line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.018);
}

.tool-quick-list a:hover {
  border-color: rgba(244, 201, 93, 0.28);
  background: rgba(244, 201, 93, 0.05);
}

.tool-quick-list i,
.tool-quick-list b {
  color: var(--home-gold);
}

.tool-quick-list span {
  display: grid;
  gap: 0.2rem;
}

.tool-quick-list strong {
  color: #fff;
  font-size: 0.86rem;
}

.tool-quick-list small {
  color: var(--home-dim);
  font-size: 0.68rem;
}

.promise-section {
  background:
    radial-gradient(circle at 80% 0%, rgba(244, 201, 93, 0.08), transparent 28rem),
    #090b0e;
}

.promise-layout {
  margin-bottom: 3.5rem;
  align-items: start;
}

.promise-copy {
  display: grid;
  gap: 1.7rem;
  justify-self: end;
}

.promise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--home-line);
  border-radius: var(--home-radius);
  background: var(--home-line);
}

.promise-card {
  position: relative;
  min-height: 310px;
  padding: 2.2rem;
  background: #0b0d10;
}

.promise-card > span {
  position: absolute;
  top: 1.2rem;
  right: 1.3rem;
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.64rem;
  letter-spacing: 0.12em;
}

.promise-card > i {
  margin: 1rem 0 5rem;
  color: var(--home-gold);
  font-size: 1.5rem;
}

.promise-card h3 {
  margin-bottom: 0.8rem;
  color: #fff;
  font-size: 1.55rem;
  font-weight: 500;
}

.promise-card p {
  margin: 0;
  color: var(--home-copy);
  font-size: 0.86rem;
  line-height: 1.7;
}

.articles-section {
  background: #050607;
}

.articles-section .blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.articles-section .blog-card {
  overflow: hidden;
  border: 1px solid var(--home-line);
  border-radius: 18px;
  background: var(--home-panel);
  contain: none;
  content-visibility: visible;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.articles-section .blog-card:hover {
  border-color: rgba(244, 201, 93, 0.3);
  transform: translateY(-4px);
}

.articles-footer {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--home-line);
}

.articles-footer p {
  margin: 0;
  color: var(--home-dim);
}

.articles-footer strong {
  color: #fff;
}

.faq-section {
  background:
    linear-gradient(120deg, rgba(244, 201, 93, 0.025), transparent 45%),
    #080a0c;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(3rem, 8vw, 8rem);
}

.faq-intro {
  align-self: start;
}

.faq-intro h2 {
  margin-bottom: 1.4rem;
}

.faq-intro .text-link {
  margin-top: 1.5rem;
}

.faq-list {
  border-top: 1px solid var(--home-line);
}

.faq-item {
  border-bottom: 1px solid var(--home-line);
}

.faq-item summary {
  display: grid;
  grid-template-columns: 2.4rem 1fr auto;
  gap: 1rem;
  align-items: center;
  min-height: 92px;
  padding: 1rem 0;
  cursor: pointer;
  list-style: none;
}

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

.faq-item summary > span {
  color: var(--home-gold);
  font-size: 0.65rem;
  font-weight: 700;
}

.faq-item summary strong {
  color: #fff;
  font: 500 clamp(1.05rem, 2vw, 1.35rem)/1.35 var(--font-heading);
}

.faq-item summary i {
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border: 1px solid rgba(244, 201, 93, 0.24);
  border-radius: 50%;
  color: var(--home-gold);
  font-size: 0.65rem;
  transition: transform 0.25s ease;
}

.faq-item[open] summary i {
  transform: rotate(45deg);
}

.faq-item > p {
  max-width: 680px;
  margin: -0.25rem 3rem 1.8rem 3.4rem;
  color: var(--home-copy);
  font-size: 0.9rem;
  line-height: 1.75;
}

.closing-section {
  padding: 1rem 0 clamp(5rem, 8vw, 8rem);
  overflow: hidden;
  background: #080a0c;
}

.closing-card {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 8vw, 7rem);
  border: 1px solid rgba(244, 201, 93, 0.2);
  border-radius: 30px;
  background:
    radial-gradient(circle at 90% 10%, rgba(244, 201, 93, 0.18), transparent 28rem),
    linear-gradient(130deg, #111418, #080a0c 70%);
  text-align: center;
}

.closing-card::before,
.closing-card::after {
  position: absolute;
  border: 1px solid rgba(244, 201, 93, 0.12);
  border-radius: 50%;
  content: "";
}

.closing-card::before {
  top: -16rem;
  right: -10rem;
  width: 32rem;
  height: 32rem;
}

.closing-card::after {
  right: -4rem;
  bottom: -18rem;
  width: 28rem;
  height: 28rem;
}

.closing-card > * {
  position: relative;
  z-index: 1;
}

.closing-card h2 {
  max-width: 850px;
  margin: 0 auto 1.4rem;
}

.closing-card > p {
  max-width: 650px;
  margin: 0 auto 2rem;
  color: var(--home-copy);
  font-size: 1rem;
  line-height: 1.75;
}

.closing-actions {
  justify-content: center;
}

.closing-card > small {
  display: block;
  margin-top: 1.5rem;
  color: var(--home-dim);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
}

.closing-card > small i {
  margin-right: 0.35rem;
  color: var(--home-gold);
}

.blog-empty-state {
  grid-column: 1 / -1;
  padding: 4rem 2rem;
  border: 1px solid var(--home-line);
  border-radius: var(--home-radius);
  color: var(--home-copy);
  text-align: center;
}

@media (max-width: 1080px) {
  .hero-layout {
    grid-template-columns: minmax(0, 1fr) 350px;
    gap: 3rem;
  }

  .hero-method-card {
    right: -1rem;
  }

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

  .start-card {
    min-height: 120px;
    border-right: 0;
    border-bottom: 1px solid var(--home-line);
  }

  .start-card:last-child {
    border-bottom: 0;
  }

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

@media (min-width: 861px) and (max-height: 800px) {
  .home-hero {
    padding: 7rem 0 3.5rem;
  }

  .hero-copy h1 {
    margin-bottom: 1.1rem;
    font-size: clamp(3.4rem, 5.6vw, 5.7rem);
  }

  .hero-lead {
    margin-bottom: 1.1rem;
    font-size: 1.02rem;
  }

  .hero-assurances {
    margin-bottom: 1.35rem;
  }

  .hero-metrics {
    margin-top: 1.6rem;
    padding-top: 1rem;
  }

  .hero-visual {
    width: min(100%, 380px);
  }
}

@media (max-width: 860px) {
  .home-hero {
    min-height: auto;
    padding-top: 8rem;
  }

  .hero-layout,
  .method-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: none;
    text-align: center;
  }

  .hero-copy h1,
  .hero-lead {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-assurances,
  .hero-actions {
    justify-content: center;
  }

  .hero-metrics {
    justify-content: center;
    margin-right: auto;
    margin-left: auto;
  }

  .hero-visual {
    justify-self: center;
    width: min(100%, 390px);
  }

  .hero-method-card {
    right: -1rem;
  }

  .hero-scroll-cue {
    display: none;
  }

  .section-intro--split,
  .start-panel-head,
  .promise-layout {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .section-intro--split > p,
  .section-intro-action,
  .start-panel-head p,
  .promise-copy {
    justify-self: start;
  }

  .services-grid,
  .tools-showcase {
    grid-template-columns: 1fr;
  }

  .service-card--featured,
  .tool-card--atlas {
    grid-row: auto;
    min-height: 500px;
  }

  .method-intro {
    position: static;
  }

  .tool-quick-list,
  .promise-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .home-hero {
    padding: 7.5rem 0 4.5rem;
  }

  .hero-copy h1 {
    font-size: clamp(3.1rem, 14vw, 4.5rem);
  }

  .hero-assurances {
    display: grid;
    justify-content: start;
    width: fit-content;
    margin-right: auto;
    margin-left: auto;
    text-align: left;
  }

  .hero-actions,
  .closing-actions,
  .promise-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .hero-actions .btn,
  .hero-actions .btn-ghost,
  .closing-actions .btn,
  .closing-actions .btn-ghost,
  .promise-actions .btn,
  .promise-actions .btn-ghost {
    width: 100%;
    white-space: normal;
    text-align: center;
  }

  .hero-metrics div {
    padding: 0 0.8rem;
  }

  .hero-metrics dd {
    font-size: 0.6rem;
  }

  .hero-photo-shell {
    border-radius: 180px 180px 18px 18px;
  }

  .hero-method-card {
    right: 0.6rem;
    bottom: 16%;
  }

  .start-panel {
    padding-top: 3.5rem;
  }

  .start-card {
    grid-template-columns: auto 1fr;
    min-height: 135px;
  }

  .start-arrow {
    display: none;
  }

  .section-intro h2,
  .method-intro h2,
  .promise-heading h2,
  .faq-intro h2,
  .closing-card h2 {
    font-size: clamp(2.45rem, 11vw, 3.6rem);
  }

  .service-card,
  .service-card--featured {
    min-height: 430px;
    padding: 1.6rem;
  }

  .service-card--featured h3 {
    font-size: 2.5rem;
  }

  .method-list li {
    grid-template-columns: 3rem 1fr;
    gap: 1rem;
  }

  .method-list > li > span {
    width: 2.5rem;
    height: 2.5rem;
  }

  .tool-card,
  .tool-card--atlas {
    min-height: 420px;
    padding: 1.5rem;
  }

  .tool-card--atlas .tool-content strong {
    font-size: 3.2rem;
  }

  .tool-open {
    right: 1.25rem;
    bottom: 1.2rem;
  }

  .promise-card {
    min-height: auto;
  }

  .promise-card > i {
    margin-bottom: 3.5rem;
  }

  .articles-section .blog-grid {
    grid-template-columns: 1fr;
  }

  .articles-footer {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .articles-footer .btn-ghost {
    width: 100%;
  }

  .faq-item summary {
    grid-template-columns: 1.8rem 1fr auto;
  }

  .faq-item > p {
    margin-right: 0;
    margin-left: 2.8rem;
  }

  .closing-card {
    padding: 3.5rem 1.4rem;
    border-radius: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-scroll-cue i {
    animation: none;
  }

  .service-card,
  .tool-card,
  .articles-section .blog-card,
  .start-arrow {
    transition: none;
  }
}
