/* =============================================================================
   Duplicator Cloud — landing page
   Single, clean stylesheet. Visually identical to the cleanup-fresh-start v17
   mockup, rebuilt from one organized cascade instead of ~33 stacked override
   files. Authored against the *resolved* computed styles of v17, so the render
   is reproduced exactly while the source stays semantic and flat.

   Structure
     1. Fonts
     2. Design tokens (:root)
     3. Reset & base
     4. Layout primitives (container, section)
     5. Typography scale
     6. Buttons
     7. Tooltip
     8. Site header
     9. Hero
    10. Trust strip
    11. Why Duplicator Cloud
    12. Feature pillars (Store / Monitor / Restore flow)
    13. Comparison
    14. Security
    15. FAQ
    16. Final CTA
    17. Site footer
    18. Reveal animation & reduced motion
============================================================================= */

/* 1. Fonts ----------------------------------------------------------------- */

/* @import must precede every other rule (CSS spec), so the remote serif import
   leads the file; Satoshi is self-hosted from /fonts/satoshi/. */
@import url("https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&display=swap");

@font-face {
  font-family: "Satoshi-Variable";
  src: url("/fonts/satoshi/Satoshi-Variable.woff2") format("woff2");
  font-weight: 300 900;
  font-display: swap;
  font-style: normal;
}

/* 2. Design tokens --------------------------------------------------------- */

:root {
  /* Type families */
  --font-sans: "Satoshi-Variable", system-ui, sans-serif;
  --font-serif: "Instrument Serif", "Iowan Old Style", Georgia, serif;
  --font-mono: ui-monospace, "JetBrains Mono", "Geist Mono", "SF Mono", Menlo, monospace;

  /* Brand & ink palette */
  --brand: #fe4715;
  --brand-strong: #e23a0c;
  --brand-soft: #ff9568;
  --brand-tint: #ffbda3;
  --brand-wash: #ffd9cc;
  --plum: #3a032d;            /* dark accent / "us" column */
  --ink: #2a2330;             /* primary warm ink */
  --ink-cool: #1f2937;        /* cool ink used by header/buttons/summary */
  --ink-body: #374151;        /* body copy */
  --ink-muted: #5a4f57;       /* eyebrows / captions */

  /* Surfaces */
  --paper: #faf7f1;           /* page ground */
  --paper-soft: #fdfbf6;      /* why section / faq card */
  --cream: #f5efe6;
  --cream-warm: #efe6d9;

  /* Hairlines (plum-tinted, warm) */
  --hairline: rgba(58, 3, 45, 0.08);
  --hairline-strong: rgba(58, 3, 45, 0.14);
  --hairline-card: rgba(82, 28, 48, 0.07);
  --hairline-on-dark: rgba(255, 255, 255, 0.12);

  /* Radius — deliberately squared language, pill only for true pills */
  --radius: 4px;
  --radius-round: 999px;

  /* Rhythm */
  --section-py: 96px;
  --container-max: 1240px;
  --container-pad: 1.5rem;

  /* Motion */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --dur-press: 75ms;
  --dur-hover: 200ms;

  /* Shadows */
  --shadow-cta:
    0 0 0 1px rgba(254, 71, 21, 0.3),
    0 2px 6px rgba(58, 3, 45, 0.15),
    0 16px 40px -8px rgba(58, 3, 45, 0.25),
    0 40px 80px -20px rgba(58, 3, 45, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  --shadow-faq:
    0 0 0 1px rgba(58, 3, 45, 0.06),
    0 2px 6px rgba(58, 3, 45, 0.04),
    0 12px 30px -8px rgba(58, 3, 45, 0.08),
    0 40px 80px -24px rgba(58, 3, 45, 0.12),
    inset 0 0.5px 0.5px rgba(255, 255, 255, 0.6),
    inset 0 -0.5px 0.5px rgba(58, 3, 45, 0.04);
  --shadow-shell:
    0 0 0 1px rgba(58, 3, 45, 0.08),
    0 18px 46px -28px rgba(58, 3, 45, 0.42),
    0 46px 90px -52px rgba(58, 3, 45, 0.55);
  --shadow-window: 0 18px 48px rgba(68, 48, 32, 0.11);
}

/* 3. Reset & base ---------------------------------------------------------- */

/* ---------------------------------------------------------------------------
   VENDOR — Tailwind v4 Preflight (@layer base).
   This is the framework's default reset; in the real Laravel + Tailwind app it
   is emitted by Tailwind itself, NOT hand-authored. It is inlined here only so
   the standalone export shares the exact same base as the live mockup. Do not
   edit. Page-level rules live below, unlayered, so they always win over it.
   --------------------------------------------------------------------------- */
@layer base {

  *,
  :after,
  :before,
  ::backdrop {
    box-sizing: border-box;
    border: 0 solid;
    margin: 0;
    padding: 0
  }

  ::file-selector-button {
    box-sizing: border-box;
    border: 0 solid;
    margin: 0;
    padding: 0
  }

  html,
  :host {
    -webkit-text-size-adjust: 100%;
    tab-size: 4;
    line-height: 1.5;
    font-family: var(--default-font-family, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");
    font-feature-settings: var(--default-font-feature-settings, normal);
    font-variation-settings: var(--default-font-variation-settings, normal);
    -webkit-tap-highlight-color: transparent
  }

  hr {
    height: 0;
    color: inherit;
    border-top-width: 1px
  }

  abbr:where([title]) {
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-size: inherit;
    font-weight: inherit
  }

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

  b,
  strong {
    font-weight: bolder
  }

  code,
  kbd,
  samp,
  pre {
    font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);
    font-feature-settings: var(--default-mono-font-feature-settings, normal);
    font-variation-settings: var(--default-mono-font-variation-settings, normal);
    font-size: 1em
  }

  small {
    font-size: 80%
  }

  sub,
  sup {
    vertical-align: baseline;
    font-size: 75%;
    line-height: 0;
    position: relative
  }

  sub {
    bottom: -.25em
  }

  sup {
    top: -.5em
  }

  table {
    text-indent: 0;
    border-color: inherit;
    border-collapse: collapse
  }

  :-moz-focusring {
    outline: auto
  }

  progress {
    vertical-align: baseline
  }

  summary {
    display: list-item
  }

  ol,
  ul,
  menu {
    list-style: none
  }

  img,
  svg,
  video,
  canvas,
  audio,
  iframe,
  embed,
  object {
    vertical-align: middle;
    display: block
  }

  img,
  video {
    max-width: 100%;
    height: auto
  }

  button,
  input,
  select,
  optgroup,
  textarea {
    font: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    letter-spacing: inherit;
    color: inherit;
    opacity: 1;
    background-color: #0000;
    border-radius: 0
  }

  :where(select:is([multiple], [size])) optgroup {
    font-weight: bolder
  }

  :where(select:is([multiple], [size])) optgroup option {
    padding-inline-start: 20px
  }

  ::placeholder {
    opacity: 1
  }

  @supports (not ((-webkit-appearance:-apple-pay-button))) or (contain-intrinsic-size:1px) {
    ::placeholder {
      color: currentColor
    }

    @supports (color:color-mix(in lab, red, red)) {
      ::placeholder {
        color: color-mix(in oklab, currentcolor 50%, transparent)
      }
    }
  }

  textarea {
    resize: vertical
  }

  button,
  input:where([type=button], [type=reset], [type=submit]) {
    appearance: button
  }

  [hidden]:where(:not([hidden=until-found])) {
    display: none !important
  }
}

/* Page base — unlayered, wins over Preflight without extra specificity. */

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

em {
  font-style: italic;
}

:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}

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

.icon-sm {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.icon-lg {
  width: 28px;
  height: 28px;
}

/* 4. Layout primitives ----------------------------------------------------- */

.container {
  position: relative;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.container-narrow {
  max-width: 880px;
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.section {
  position: relative;
  padding-block: var(--section-py);
  overflow: hidden;
}

@media (min-width: 1024px) {
  .container {
    padding-inline: 2rem;
  }

  .container-narrow {
    padding-inline: 2rem;
  }
}

/* 5. Typography scale ------------------------------------------------------- */

.h-section {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin-block-end: 40px;
}

.h-card {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-block-end: 24px;
}

.h-feature {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
}

.lead {
  max-width: 620px;
  font-size: 18px;
  line-height: 1.55;
  letter-spacing: -0.012em;
  color: #3a2f38;
}

.body-text {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(55, 65, 81, 0.85);
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.italic {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
}

@media (min-width: 768px) {
  .h-section {
    font-size: 56px;
  }

  .h-card {
    font-size: 40px;
  }

  .lead {
    font-size: 20px;
  }
}

@media (min-width: 1280px) {
  .h-section {
    font-size: 72px;
  }
}

/* Bullet list (pillar feature lists) */
.bullet-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
  font-size: 16px;
}

.bullet-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.bullet-list li::before {
  content: "";
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  margin-top: 0.55rem;
  border-radius: var(--radius-round);
  background: var(--brand);
}

.bullet-list strong {
  font-weight: 800;
}

/* Step header (badge + eyebrow above pillar headings) */
.step-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.step-badge {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  background: var(--brand);
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  box-shadow: 0 12px 28px -14px rgba(254, 71, 21, 0.85);
}

.link-external {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

/* 6. Buttons --------------------------------------------------------------- */

.btn-primary,
.btn-secondary,
.btn-light,
.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: inherit;
  font-weight: 700;
  cursor: pointer;
  border: 0;
}

.btn-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

.btn-icon--sm {
  width: 16px;
  height: 16px;
}

/* Primary — flattened in the hero (v17): squared, no shadow, no hover lift */
.btn-primary {
  padding: 12px 24px;
  border-radius: var(--radius);
  background: var(--brand);
  color: #fff;
  transition: background var(--dur-press) var(--ease);
}

.btn-primary:hover {
  background: var(--brand-strong);
}

/* Secondary — squared, with hairline ring */
.btn-secondary {
  padding: 11px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--hairline-strong);
  background: #fff;
  color: var(--ink-cool);
  box-shadow:
    0 1px 2px rgba(58, 3, 45, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  transition:
    background var(--dur-press) var(--ease),
    color var(--dur-press) var(--ease),
    border-color var(--dur-press) var(--ease),
    box-shadow var(--dur-press) var(--ease),
    transform var(--dur-press) var(--ease);
}

.btn-secondary:hover {
  background: var(--ink-cool);
  border-color: var(--ink-cool);
  color: #fff;
  box-shadow: none;
}

.btn-secondary:active {
  transform: scale(0.97);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 14px;
}

/* Light & outline buttons (final CTA, on the orange card) */
.btn-light {
  padding: 12px 24px;
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink-cool);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.15),
    0 2px 4px rgba(42, 2, 32, 0.2),
    0 12px 30px -12px rgba(42, 2, 32, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition:
    box-shadow var(--dur-press) var(--ease),
    transform var(--dur-press) var(--ease);
}

.btn-light:hover {
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.2),
    0 4px 8px rgba(42, 2, 32, 0.25),
    0 20px 44px -12px rgba(42, 2, 32, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.btn-light:active {
  transform: scale(0.97);
}

.btn-outline-dark {
  padding: 11px 24px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  color: #fff;
  transition:
    background var(--dur-press) var(--ease),
    color var(--dur-press) var(--ease),
    border-color var(--dur-press) var(--ease),
    transform var(--dur-press) var(--ease);
}

.btn-outline-dark:hover {
  background: #fff;
  border-color: #fff;
  color: var(--plum);
}

.btn-outline-dark:active {
  transform: scale(0.97);
}

/* 7. Tooltip --------------------------------------------------------------- */

.tooltip-wrap {
  position: relative;
  display: inline-flex;
}

.tooltip-bubble {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 50;
  width: max-content;
  max-width: 280px;
  white-space: normal;
  padding: 8px 12px;
  border-radius: var(--radius);
  background: var(--ink-cool);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px -6px rgba(31, 41, 55, 0.35);
  transition: opacity 0.15s, transform 0.15s, visibility 0s linear 0.15s;
}

.tooltip-bubble::before {
  content: "";
  position: absolute;
  top: -12px;
  right: 16px;
  border: 6px solid transparent;
  border-bottom-color: var(--ink-cool);
}

.tooltip-bubble--left {
  right: auto;
  left: 0;
}

.tooltip-bubble--left::before {
  right: auto;
  left: 16px;
}

.tooltip-bubble__brand {
  color: var(--brand);
  font-weight: 700;
}

.tooltip-wrap:hover .tooltip-bubble,
.tooltip-wrap:focus-within .tooltip-bubble {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 0s;
}

/* 8. Site header ----------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(250, 247, 241, 0.918);
  border-bottom: 1px solid rgba(255, 237, 229, 0.6);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-max);
  height: 68px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.site-header__brand {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.site-header__brand img {
  height: 28px;
  width: auto;
}

.site-header__brand-name {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: var(--brand);
}

.site-header__nav {
  display: none;
  align-items: center;
  gap: 2rem;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
  color: var(--ink-body);
}

.site-header__nav a:hover {
  color: var(--brand);
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  white-space: nowrap;
}

@media (min-width: 1024px) {
  .site-header__inner {
    padding-inline: 2rem;
  }

  .site-header__nav {
    display: flex;
  }
}

/* 9. Hero ------------------------------------------------------------------ */

.hero {
  position: relative;
  padding-block: 112px 120px;
  background: var(--paper);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(90deg, rgba(58, 3, 45, 0.078) 1px, transparent 1px),
    linear-gradient(rgba(58, 3, 45, 0.078) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(at 50% 40%, #000 50%, transparent 95%);
  mask-image: radial-gradient(at 50% 40%, #000 50%, transparent 95%);
}

.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
}

.hero__title {
  max-width: 1120px;
  font-size: 42px;
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: var(--ink);
}

.hero__line {
  display: block;
}

.hero__line em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--brand);
}

.hero__mark {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}

.hero__mark > span {
  position: relative;
  z-index: 1;
}

.hero__mark svg {
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 14px;
}

.hero__lead {
  max-width: 720px;
  font-size: 20px;
  line-height: 1.55;
  letter-spacing: -0.012em;
  color: var(--ink-body);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero__visual {
  align-self: start;
}

.hero__image {
  width: 100%;
}

/* Raster window screenshot treatment (shared with pillar media) */
.browser-window-raster {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: var(--shadow-window);
}

/* Hero screenshot lifts 2px to sit optically centred against the headline. */
.hero__image {
  transform: translateY(-2px);
}

@media (min-width: 1024px) {
  .hero__inner {
    grid-template-columns: minmax(0, 2fr) minmax(320px, 1fr);
    grid-template-areas:
      "headline headline"
      "body visual";
    column-gap: 64px;
    row-gap: 24px;
    align-items: center;
  }

  .hero__headline {
    grid-area: headline;
    align-self: end;
  }

  .hero__body {
    grid-area: body;
    align-self: start;
  }

  .hero__visual {
    grid-area: visual;
    align-self: center;
  }

  .hero__title {
    max-width: none;
    font-size: 56px;
  }

  .hero__lead {
    max-width: none;
  }
}

@media (min-width: 1280px) {
  .hero__title {
    font-size: 61px;
  }
}

/* 10. Trust strip ---------------------------------------------------------- */

.trust-strip {
  padding: 34px 0;
  background: linear-gradient(
    180deg,
    rgba(255, 245, 234, 0.55) 0%,
    rgba(253, 251, 246, 0.85) 100%
  );
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

.trust-strip__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: 24px;
}

.trust-strip__count {
  display: flex;
  align-items: center;
  gap: 12px;
}

.trust-strip__count-number {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--ink);
}

.trust-strip__count-label {
  max-width: 22ch;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.35;
  text-transform: uppercase;
  color: rgba(42, 35, 48, 0.6);
}

.trust-strip__claims {
  display: flex;
  flex-wrap: wrap;
  gap: 22px 34px;
  font-size: 15px;
  font-weight: 700;
  color: rgba(42, 35, 48, 0.84);
}

.trust-strip__claim {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.005em;
}

.trust-strip__claim::before {
  content: "";
  flex-shrink: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand);
  opacity: 0.85;
}

.trust-strip__claim--price strong {
  color: var(--brand);
}

@media (min-width: 900px) {
  .trust-strip__inner {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 56px;
  }

  .trust-strip__claims {
    justify-content: flex-end;
  }
}

/* 11. Why Duplicator Cloud ------------------------------------------------- */

.why-dedicated {
  padding-block: var(--section-py);
  background: var(--paper-soft);
}

/* No side padding: the why-card grid runs the full 1180px width, matching the
   other sections' visual measure. */
.why-dedicated__inner {
  max-width: 1180px;
  margin-inline: auto;
}

.why-dedicated__eyebrow {
  margin-bottom: 18px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  color: var(--brand);
}

.why-dedicated__title {
  max-width: 34ch;
  margin: 0 auto 12px;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-align: center;
  color: var(--ink);
}

.why-dedicated__title .italic {
  font-size: 1.08em;
}

.why-dedicated__lead {
  max-width: 78ch;
  margin: 0 auto 56px;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.55;
  text-align: center;
  color: rgba(42, 35, 48, 0.72);
}

.why-dedicated__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 20px;
}

.why-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--hairline-card);
  border-radius: var(--radius);
  box-shadow: 0 1px 0 rgba(82, 28, 48, 0.02);
  transition: box-shadow var(--dur-hover) cubic-bezier(0.22, 1, 0.36, 1);
}

.why-card:hover {
  box-shadow: 0 8px 24px -12px rgba(82, 28, 48, 0.12);
}

.why-card__visual--split {
  display: flex;
  align-items: stretch;
  aspect-ratio: 2 / 1;
  overflow: hidden;
  background: #fdf6ee;
  border-bottom: 1px solid var(--hairline-card);
}

.why-card__half {
  flex: 1 1 50%;
  min-width: 0;
  width: 50%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.why-card__divider {
  position: relative;
  flex: 0 0 0;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.why-card__divider::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  transform: translateX(-50%);
  background: linear-gradient(
    to bottom,
    rgba(82, 28, 48, 0) 0%,
    rgba(82, 28, 48, 0.14) 30%,
    rgba(82, 28, 48, 0.14) 70%,
    rgba(82, 28, 48, 0) 100%
  );
}

.why-card__arrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fff;
  color: var(--brand);
  box-shadow:
    0 0 0 1px var(--hairline-card),
    0 6px 16px -6px rgba(82, 28, 48, 0.25);
}

.why-card__arrow svg {
  display: block;
}

.why-card__copy {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  padding: 24px 24px 26px;
}

.why-card__title {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--ink);
}

.why-card__body {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
  color: rgba(42, 35, 48, 0.7);
}

@media (min-width: 820px) {
  .why-dedicated__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
  }
}

/* 12. Feature pillars ------------------------------------------------------ */

/* Connected Store / Monitor / Restore flow. Each band carries a warm vertical
   gradient; consecutive bands tuck 1px together to read as one surface. */
.dc-flow-section {
  position: relative;
  padding-block: var(--section-py);
  overflow: hidden;
  background: linear-gradient(180deg, #fbf5ec 0%, #f6ecdf 100%);
}

.dc-flow-section + .dc-flow-section {
  margin-top: -1px;
}

.dc-flow-section--monitor {
  background: linear-gradient(180deg, #f6ecdf 0%, #f2e6d7 100%);
}

.dc-flow-section--restore {
  background: linear-gradient(180deg, #f2e6d7 0%, #fbf5ec 100%);
}

.dc-flow-section--restore + .comparison {
  padding-top: 104px;
}

.dc-flow-intro {
  margin-bottom: 70px;
}

.dc-flow-intro .lead {
  margin-top: 24px;
}

/* Centered Store intro (features heading + lead) */
.dc-flow-section--store .dc-flow-intro {
  text-align: center;
}

.dc-flow-section--store .dc-flow-intro .lead {
  margin-inline: auto;
}

.dc-pillar {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.dc-pillar__text {
  width: 100%;
  max-width: 640px;
}

.dc-pillar .eyebrow {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink-muted);
}

.dc-pillar__media {
  position: relative;
  width: 100%;
  max-width: 520px;
}

.dc-pillar__image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow:
    0 1px 0 rgba(58, 3, 45, 0.06),
    0 22px 52px -36px rgba(58, 3, 45, 0.72);
}

/* Tilted brand frame behind each screenshot; mirrored on the reversed band */
.dc-pillar__media::before {
  content: "";
  position: absolute;
  inset: 22px -22px -22px 22px;
  z-index: -1;
  border: 1px solid rgba(254, 71, 21, 0.3);
  border-radius: var(--radius);
  transform: rotate(-1.5deg);
}

.dc-flow-section--monitor .dc-pillar__media::before {
  inset: 22px 22px -22px -22px;
  transform: rotate(1.5deg);
}

/* Step badge sits above the connecting center line */
.dc-flow-section .step-badge {
  position: relative;
  z-index: 2;
}

/* Per-band vertical nudge of the media for the fluid, staggered feel */
.dc-flow-section--store .dc-pillar__media {
  transform: translateY(-10px);
}

.dc-flow-section--monitor .dc-pillar__media {
  transform: translateY(4px);
}

.dc-flow-section--restore .dc-pillar__media {
  transform: translateY(-6px);
}

@media (min-width: 1024px) {
  .dc-pillar {
    flex-direction: row;
    align-items: center;
    gap: 120px;
  }

  .dc-pillar__text {
    flex: 1 1 0;
    min-width: 0;
    max-width: none;
  }

  .dc-pillar__media {
    flex: 0 0 520px;
    max-width: 520px;
  }

  /* Coral center line threading the three bands together */
  .dc-flow-section::before {
    content: "";
    position: absolute;
    top: -36px;
    bottom: -36px;
    left: 50%;
    width: 2px;
    transform: translateX(-50%);
    background: linear-gradient(
      180deg,
      rgba(254, 71, 21, 0) 0%,
      rgba(254, 71, 21, 0) 8%,
      rgba(254, 71, 21, 0.22) 22%,
      rgba(254, 71, 21, 0.65) 50%,
      rgba(254, 71, 21, 0.22) 78%,
      rgba(254, 71, 21, 0) 92%,
      rgba(254, 71, 21, 0) 100%
    );
  }

  .dc-flow-section--store::before {
    top: 360px;
  }
}

@media (max-width: 767px) {
  .dc-pillar__media {
    transform: none;
  }

  .dc-pillar__media::before {
    inset: 12px -10px -12px 10px;
  }

  .dc-flow-section--restore + .comparison {
    padding-top: 88px;
  }
}

/* 13. Comparison ----------------------------------------------------------- */

.comparison {
  position: relative;
  padding-block: var(--section-py);
  overflow: hidden;
  color: #fff;
}

/* Decision framing: light gradient ground instead of the solid orange band */
.comparison--decision {
  padding-top: 96px;
  background: linear-gradient(180deg, #fbf5ec 0%, #fffaf3 38%, #ffffff 100%);
}

.comparison-dots {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.32;
  background-image: radial-gradient(#fff 1px, transparent 1px);
  background-size: 28px 28px;
}

.comparison__intro {
  max-width: 880px;
  margin: 0 auto 38px;
  text-align: center;
}

.comparison__intro h2 {
  max-width: 820px;
  margin: 0 auto 12px;
  font-size: 38px;
  font-weight: 750;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.comparison__intro h2 .italic {
  font-size: 1.08em;
}

.comparison__intro p {
  max-width: 720px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.5;
  color: rgba(42, 35, 48, 0.72);
}

.comparison__shell {
  max-width: 1160px;
  margin-inline: auto;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-shell);
}

.cmp {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 18px;
  font-weight: 700;
}

.cmp th,
.cmp td {
  padding: 23px 32px;
  text-align: left;
  color: var(--ink-cool);
  background: #fff;
  border-right: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

.cmp th:first-child,
.cmp td:first-child {
  border-left: 1px solid var(--hairline);
}

.cmp th:last-child,
.cmp td:last-child {
  border-right: 0;
}

.cmp tbody tr:last-child td {
  border-bottom: 0;
}

.cmp thead th {
  font-size: 18px;
  color: var(--ink-body);
  border-top: 0;
}

.cmp tbody td:nth-child(2),
.cmp tbody td:nth-child(3),
.cmp thead th:nth-child(2),
.cmp thead th:nth-child(3) {
  text-align: center;
}

/* "Duplicator Cloud" column — plum spotlight */
.cmp .col-us,
.cmp .col-us-head {
  background: var(--plum);
  color: #fff;
}

.cmp .col-us {
  box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.08);
}

.cmp-feature {
  display: flex;
  align-items: center;
  gap: 14px;
}

.cmp-feature__icon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(254, 71, 21, 0.16);
  border-radius: 8px;
  background: rgba(254, 71, 21, 0.07);
  color: var(--brand);
}

.cmp-feature__icon svg {
  width: 21px;
  height: 21px;
}

.cmp .check {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: var(--radius-round);
  background: rgba(254, 71, 21, 0.08);
  color: var(--brand);
  font-weight: 800;
}

.cmp .col-us .check {
  background: rgba(254, 71, 21, 0.95);
  color: #fff;
}

.cmp .dash,
.cmp .manual {
  color: var(--ink-cool);
  font-weight: 600;
}

.cmp .one-click {
  display: inline-block;
  padding: 5px 14px;
  border-radius: var(--radius-round);
  background: rgba(254, 71, 21, 0.95);
  color: #fff;
  font-size: 17px;
  font-weight: 800;
}

@media (max-width: 767px) {
  .cmp {
    font-size: 16px;
  }

  .cmp th,
  .cmp td {
    padding: 18px;
  }

  .cmp-feature {
    gap: 10px;
  }

  .cmp-feature__icon {
    flex-basis: 34px;
    width: 34px;
    height: 34px;
  }

  .comparison--decision .comparison__intro {
    margin-bottom: 28px;
  }

  .comparison--decision .comparison__intro h2 {
    font-size: 32px;
  }

  .comparison--decision .comparison__intro p {
    font-size: 17px;
  }
}

/* 14. Security ------------------------------------------------------------- */

.security {
  position: relative;
  padding-block: var(--section-py);
  overflow: hidden;
  color: #fff;
  background: var(--plum);
}

.security-dots {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.07;
  background-image: radial-gradient(#fff 1px, transparent 1px);
  background-size: 22px 22px;
}

.security .h-section {
  color: #fff;
}

.text-brand-400 {
  color: var(--brand-soft);
}

/* "vault" serif italic accent inside the dark heading */
.security .h-section .text-brand-400 {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 0.98em;
  letter-spacing: -0.005em;
}

.security__grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 4rem;
}

.security-card {
  padding: 2rem;
  border: 1px solid var(--hairline-on-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.05),
    inset 0 0.5px 0.5px rgba(255, 255, 255, 0.24),
    inset 0 -0.5px 0.5px rgba(255, 255, 255, 0.24);
  transition:
    background var(--dur-hover) var(--ease),
    border-color var(--dur-hover) var(--ease),
    box-shadow var(--dur-hover) var(--ease);
}

.security-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow:
    0 12px 32px -12px rgba(0, 0, 0, 0.4),
    inset 0 1px rgba(255, 255, 255, 0.08),
    inset 0 0.5px 0.5px rgba(255, 255, 255, 0.32),
    inset 0 -0.5px 0.5px rgba(255, 255, 255, 0.28);
}

.security-card__icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 1.25rem;
  border-radius: var(--radius);
  background: rgba(254, 71, 21, 0.2);
  color: var(--brand-soft);
}

.security-card .h-feature {
  color: #fff;
}

.security-card__body {
  margin-top: 0.5rem;
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.7);
}

@media (min-width: 768px) {
  .security__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* 15. FAQ ------------------------------------------------------------------ */

.faq-section {
  position: relative;
  padding-block: var(--section-py);
  overflow: hidden;
  background: var(--paper);
}

.faq-section .h-section {
  text-align: center;
}

.faq-list {
  margin-top: 1.5rem;
  padding: 0.5rem 1.75rem;
  background: var(--paper-soft);
  border-radius: var(--radius);
  box-shadow: var(--shadow-faq);
}

details.faq {
  border-top: 1px solid rgba(58, 3, 45, 0.1);
}

details.faq:first-of-type {
  border-top-color: transparent;
}

details.faq:last-of-type {
  border-bottom: 1px solid rgba(58, 3, 45, 0.1);
}

details.faq > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 22px 4px;
  font-size: 18px;
  font-weight: 700;
  color: var(--ink-cool);
  list-style: none;
  cursor: pointer;
}

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

details.faq .plus {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: var(--radius-round);
  background: var(--paper);
  color: var(--brand);
  font-weight: 900;
  transition:
    transform var(--dur-hover) var(--ease),
    background var(--dur-hover) var(--ease);
}

details.faq[open] .plus {
  background: var(--brand);
  color: #fff;
  transform: rotate(45deg);
}

details.faq .body {
  max-width: 58ch;
  padding: 0 4px 24px;
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--ink-body);
}

details.faq .body a {
  color: var(--brand);
  font-weight: 600;
}

/* 16. Final CTA ------------------------------------------------------------ */

.cta-card {
  position: relative;
  overflow: hidden;
  padding: 2.5rem;
  border-radius: var(--radius);
  color: #fff;
  background:
    radial-gradient(80% 100% at 15% 90%, rgba(255, 149, 104, 0.55) 0%, rgba(255, 149, 104, 0) 60%),
    radial-gradient(60% 80% at 90% 10%, rgba(255, 217, 204, 0.35) 0%, rgba(255, 217, 204, 0) 65%),
    linear-gradient(160deg, var(--brand) 0%, var(--brand-strong) 100%);
  box-shadow: var(--shadow-cta);
}

.cta-card__halo {
  position: absolute;
  pointer-events: none;
  border-radius: var(--radius-round);
  background: rgba(255, 255, 255, 0.1);
}

.cta-card__halo--tr {
  top: -5rem;
  right: -5rem;
  width: 26rem;
  height: 26rem;
}

.cta-card__halo--br {
  right: -2.5rem;
  bottom: -6rem;
  width: 17.5rem;
  height: 17.5rem;
}

.cta-card .relative {
  position: relative;
}

.cta-card__title {
  max-width: 24ch;
  font-size: 36px;
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.cta-card__title .italic {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1em;
}

.text-white\/80 {
  color: rgba(255, 255, 255, 0.8);
}

.cta-card__lead {
  margin-top: 1.5rem;
  font-size: 19px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
}

.cta-card__row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2.5rem;
}

@media (min-width: 768px) {
  .cta-card {
    padding: 4rem;
  }

  .cta-card__title {
    max-width: 22ch;
    font-size: 60px;
  }

  .cta-card__lead {
    font-size: 22px;
  }
}

@media (min-width: 1180px) {
  .cta-card__title {
    max-width: 25ch;
  }
}

/* 17. Site footer ---------------------------------------------------------- */

.site-footer {
  background: var(--paper);
  border-top: 1px solid rgba(255, 237, 229, 0.6);
}

.site-footer__inner {
  max-width: var(--container-max);
  margin-inline: auto;
  padding: 4rem 1.5rem;
}

.site-footer__grid {
  display: grid;
  gap: 2.5rem;
}

.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 1rem;
}

.site-footer__brand img {
  height: 28px;
  width: auto;
}

.site-footer__tagline {
  max-width: 24rem;
  color: rgba(55, 65, 81, 0.75);
}

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

.site-footer__col-title {
  margin-bottom: 1rem;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-body);
}

.site-footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.site-footer__col a {
  font-size: 14px;
  font-weight: 600;
  color: rgba(55, 65, 81, 0.75);
}

.site-footer__col a:hover {
  color: var(--brand);
}

.site-footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--hairline);
  font-size: 15px;
  color: rgba(55, 65, 81, 0.85);
}

.site-footer__legal {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.site-footer__copyright {
  margin: 0;
}

.site-footer__legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.site-footer__legal-links a:hover {
  color: var(--brand);
}

.site-footer__badges {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-footer__badge {
  width: auto;
  height: 48px;
}

.site-footer__badge--wp {
  height: 40px;
}

@media (min-width: 640px) {
  .site-footer__links {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .site-footer__grid {
    grid-template-columns: 5fr 7fr;
  }

  .site-footer__bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (min-width: 1024px) {
  .site-footer__inner {
    padding-inline: 2rem;
  }
}

/* 18. Reveal animation & reduced motion ------------------------------------ */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s, transform 0.7s;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .reveal.in {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* =============================================================================
   SSO error toast (top-right, Filament-style)
   Shown on the landing page after a failed/denied SSO sign-in.
   ============================================================================= */

.sso-toast {
  position: fixed;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 100;
  max-width: 380px;
  width: calc(100% - 2.5rem);
  background: #fff;
  border: 1px solid #fecaca;
  border-left: 4px solid #dc2626;
  border-radius: 8px;
  padding: 0.875rem 1rem;
  box-shadow:
    0 10px 25px -5px rgba(31, 41, 55, 0.2),
    0 8px 10px -6px rgba(31, 41, 55, 0.15);
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  color: #1f2937;
  animation: ssoToastIn 0.25s ease-out;
}

.sso-toast.is-hiding {
  animation: ssoToastOut 0.2s ease-in forwards;
}

.sso-toast__icon {
  flex-shrink: 0;
  color: #dc2626;
  margin-top: 0.0625rem;
}

.sso-toast__icon svg {
  width: 20px;
  height: 20px;
}

.sso-toast__body {
  flex: 1;
  min-width: 0;
}

.sso-toast__title {
  font-weight: 700;
  font-size: 0.9375rem;
  line-height: 1.3;
  color: #1f2937;
}

.sso-toast__message {
  margin-top: 0.125rem;
  font-size: 0.875rem;
  line-height: 1.4;
  color: #4b5563;
  word-wrap: break-word;
}

.sso-toast__close {
  flex-shrink: 0;
  background: transparent;
  border: none;
  padding: 0.25rem;
  cursor: pointer;
  color: #9ca3af;
  border-radius: 4px;
  line-height: 0;
}

.sso-toast__close:hover {
  color: #1f2937;
  background: rgba(31, 41, 55, 0.06);
}

@keyframes ssoToastIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes ssoToastOut {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(20px);
  }
}
