:root {
      --ink: #18233d;
      --ink-soft: #3f465c;
      --muted: #73778a;
      --violet: #9975eb;
      --violet-dark: #7f5dd8;
      --violet-soft: #f4efff;
      --violet-wash: #faf8ff;
      --peach: #fff6ee;
      --peach-strong: #ffefe4;
      --yellow: #fbbf35;
      --pink: #ff7fa5;
      --line: #ebe8f1;
      --line-strong: #ded9e9;
      --white: #fff;
      --shadow: 0 16px 46px rgba(47, 35, 77, .08);
      --shadow-soft: 0 8px 24px rgba(47, 35, 77, .06);
      --radius-xl: 28px;
      --radius-lg: 20px;
      --radius-md: 14px;
      --container: 1180px;
      --serif: Georgia, "Times New Roman", Times, serif;
      --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    }

    * { box-sizing: border-box; }

    html {
      scroll-behavior: smooth;
      background: var(--white);
    }

    body {
      margin: 0;
      color: var(--ink);
      background:
        radial-gradient(circle at 78% 1%, rgba(245, 237, 255, .55), transparent 24rem),
        #fff;
      font-family: var(--sans);
      font-size: 16px;
      line-height: 1.5;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }

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

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

    button,
    input,
    textarea,
    select {
      font: inherit;
    }

    .container {
      width: min(var(--container), calc(100% - 48px));
      margin-inline: auto;
    }

    .section {
      padding: 56px 0;
      scroll-margin-top: 90px;
    }

    .section--compact { padding: 36px 0; }

    .section-title {
      margin: 0;
      font-family: var(--serif);
      font-size: clamp(32px, 3.2vw, 48px);
      line-height: 1.08;
      letter-spacing: -.035em;
    }

    .section-title--center { text-align: center; }

    .section-kicker {
      margin: 0 0 8px;
      color: var(--violet-dark);
      font-size: 13px;
      font-weight: 800;
      letter-spacing: .08em;
      text-transform: uppercase;
    }

    .section-head {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 24px;
      margin-bottom: 24px;
    }

    .text-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--violet-dark);
      font-size: 14px;
      font-weight: 750;
      white-space: nowrap;
    }

    .text-link::after {
      content: "→";
      font-size: 18px;
      transform: translateY(-1px);
    }

    .icon {
      width: 24px;
      height: 24px;
      fill: none;
      stroke: currentColor;
      stroke-width: 1.7;
      stroke-linecap: round;
      stroke-linejoin: round;
      flex: 0 0 auto;
    }

    .icon--sm { width: 19px; height: 19px; }
    .icon--lg { width: 34px; height: 34px; }

    .site-header {
      position: relative;
      z-index: 20;
      padding: 22px 0;
      background: rgba(255, 255, 255, .9);
      border-bottom: 1px solid rgba(235, 232, 241, .65);
      backdrop-filter: blur(16px);
    }

    .header-row {
      display: grid;
      grid-template-columns: 170px 1fr auto;
      align-items: center;
      gap: 28px;
    }

    .logo {
      position: relative;
      display: inline-flex;
      flex-direction: column;
      width: max-content;
      color: var(--ink);
    }

    .logo__name {
      font-family: var(--serif);
      font-size: 23px;
      font-weight: 700;
      line-height: 1;
      letter-spacing: -.035em;
    }

    .logo__name::after {
      content: "✦";
      position: absolute;
      top: -8px;
      right: -14px;
      color: var(--yellow);
      font-family: var(--sans);
      font-size: 15px;
      transform: rotate(9deg);
    }

    .logo__tagline {
      margin-top: 4px;
      font-size: 8px;
      font-weight: 700;
      letter-spacing: .035em;
    }

    .main-nav {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: clamp(20px, 2.2vw, 36px);
    }

    .main-nav a {
      position: relative;
      color: var(--ink-soft);
      font-size: 14px;
      font-weight: 650;
      transition: color .2s ease;
    }

    .main-nav a::after {
      content: "";
      position: absolute;
      left: 0;
      right: 100%;
      bottom: -8px;
      height: 2px;
      border-radius: 99px;
      background: var(--violet);
      transition: right .2s ease;
    }

    .main-nav a:hover,
    .main-nav a:focus-visible { color: var(--violet-dark); }

    .main-nav a:hover::after,
    .main-nav a:focus-visible::after { right: 0; }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .language {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      color: var(--violet-dark);
      font-size: 13px;
      font-weight: 750;
      padding: 10px 8px;
    }

    .language::after {
      content: "⌄";
      font-size: 15px;
      transform: translateY(-2px);
    }

    .button {
      min-height: 48px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 0 22px;
      border: 1px solid transparent;
      border-radius: 12px;
      cursor: pointer;
      font-size: 14px;
      font-weight: 800;
      transition: background-color .18s ease, border-color .18s ease, color .18s ease;
    }

    .button:hover { transform: none; }
    .button:focus-visible { outline: 3px solid rgba(153, 117, 235, .26); outline-offset: 3px; }

    .button--ghost {
      color: var(--violet-dark);
      background: var(--violet-wash);
    }

    .button--primary {
      color: #fff;
      background: #8064dc;
      box-shadow: none;
    }

    .button--primary:hover {
      background: #7053cf;
      box-shadow: none;
    }

    .button--wide { min-width: 320px; }

    .hero {
      position: relative;
      display: grid;
      grid-template-columns: minmax(0, .86fr) minmax(480px, 1.14fr);
      align-items: center;
      gap: 30px;
      padding: 50px 0 26px;
      overflow: hidden;
    }

    .hero-copy {
      position: relative;
      z-index: 2;
      padding-left: 28px;
    }

    .eyebrow {
      width: max-content;
      max-width: 100%;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 16px;
      padding: 7px 12px;
      color: var(--violet-dark);
      background: var(--violet-soft);
      border-radius: 99px;
      font-size: 12px;
      font-weight: 700;
    }

    .eyebrow::before {
      content: "♡";
      font-size: 15px;
      line-height: 1;
    }

    .hero h1 {
      max-width: 590px;
      margin: 0 0 18px;
      font-family: var(--serif);
      font-size: clamp(48px, 5.2vw, 76px);
      line-height: .98;
      letter-spacing: -.052em;
    }

    .hero-lead {
      max-width: 520px;
      margin: 0;
      color: var(--ink-soft);
      font-size: 17px;
      line-height: 1.65;
    }

    .hero-mini-features {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 14px;
      margin: 28px 0 22px;
    }

    .hero-mini-feature {
      display: grid;
      justify-items: start;
      gap: 7px;
      color: var(--ink-soft);
      font-size: 11px;
      font-weight: 700;
      line-height: 1.25;
    }

    .hero-mini-feature .icon { color: var(--violet); }

    .hero-offer {
      display: flex;
      align-items: flex-end;
      gap: 28px;
      margin-bottom: 17px;
    }

    .hero-price {
      display: flex;
      align-items: baseline;
      gap: 8px;
      font-family: var(--serif);
      font-weight: 700;
    }

    .hero-price span { font-size: 18px; }
    .hero-price strong {
      font-size: 42px;
      line-height: 1;
      letter-spacing: -.04em;
    }

    .hero-time {
      padding-bottom: 3px;
      color: var(--ink-soft);
      font-size: 12px;
      line-height: 1.35;
    }

    .hero-time strong {
      display: block;
      color: var(--ink);
      font-size: 13px;
    }

    .hero-note {
      margin-top: 11px;
      color: var(--muted);
      font-size: 11px;
    }

    .hero-visual {
      position: relative;
      z-index: 1;
      min-width: 0;
      transform: translateY(8px);
    }

    .hero-visual img {
      width: 100%;
      filter: drop-shadow(0 22px 30px rgba(56, 39, 68, .08));
    }

    .trust-strip {
      padding: 6px 0 0;
    }

    .trust-grid {
      display: grid;
      grid-template-columns: repeat(6, minmax(0, 1fr));
      gap: 0;
      padding: 28px 24px;
      background:
        radial-gradient(circle at 80% 50%, rgba(252, 236, 219, .7), transparent 28%),
        linear-gradient(100deg, #fffaf6 0%, #fff7f1 100%);
      border-radius: var(--radius-xl);
    }

    .trust-item {
      position: relative;
      min-width: 0;
      padding: 0 16px;
      text-align: center;
    }

    .trust-item:not(:last-child)::after {
      content: "";
      position: absolute;
      top: 8%;
      right: 0;
      width: 1px;
      height: 84%;
      background: rgba(227, 217, 210, .58);
    }

    .trust-item .icon {
      color: var(--violet);
      margin-bottom: 10px;
    }

    .trust-item strong {
      display: block;
      margin-bottom: 6px;
      font-size: 13px;
      line-height: 1.25;
    }

    .trust-item p {
      margin: 0;
      color: var(--ink-soft);
      font-size: 11px;
      line-height: 1.5;
    }

    .process-wrap {
      margin-top: 30px;
    }

    .process-grid {
      display: grid;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      gap: 22px;
    }

    .process-step {
      position: relative;
      min-width: 0;
      text-align: center;
    }

    .process-step:not(:last-child)::after {
      content: "→";
      position: absolute;
      top: 36px;
      right: -17px;
      color: #c9b5f2;
      font-size: 26px;
      font-weight: 400;
    }

    .step-visual {
      position: relative;
      width: 84px;
      height: 84px;
      display: grid;
      place-items: center;
      margin: 0 auto 16px;
      color: var(--ink);
      background: var(--peach-strong);
      border-radius: 50%;
    }

    .step-number {
      position: absolute;
      top: -3px;
      left: -2px;
      width: 24px;
      height: 24px;
      display: grid;
      place-items: center;
      color: #fff;
      background: var(--violet);
      border: 3px solid #fff;
      border-radius: 50%;
      font-size: 10px;
      font-weight: 850;
    }

    .process-step h3 {
      margin: 0 0 8px;
      font-size: 14px;
      line-height: 1.25;
    }

    .process-step p {
      margin: 0;
      color: var(--ink-soft);
      font-size: 12px;
      line-height: 1.55;
    }

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

    .example-card {
      min-width: 0;
    }

    .example-image {
      overflow: hidden;
      aspect-ratio: 1.58 / 1;
      background: #f7f3ef;
      border-radius: 13px;
      box-shadow: var(--shadow-soft);
    }

    .example-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .example-card h3 {
      margin: 12px 0 2px;
      font-size: 13px;
      line-height: 1.3;
    }

    .example-card p {
      margin: 0;
      color: var(--muted);
      font-size: 11px;
    }

    .carousel-dots {
      display: flex;
      justify-content: center;
      gap: 7px;
      margin-top: 18px;
    }

    .carousel-dots span {
      width: 7px;
      height: 7px;
      background: #d9d3e7;
      border-radius: 50%;
    }

    .carousel-dots span:first-child {
      width: 9px;
      height: 9px;
      background: var(--violet);
      transform: translateY(-1px);
    }

    .product-layout {
      display: grid;
      grid-template-columns: 150px minmax(0, 1fr) 230px;
      gap: 18px;
      align-items: stretch;
    }

    .product-intro {
      padding-top: 20px;
    }

    .product-intro .section-title {
      font-size: 36px;
    }

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

    .product-card {
      position: relative;
      padding: 12px 12px 20px;
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 16px;
      text-align: center;
      box-shadow: 0 8px 22px rgba(47, 35, 77, .035);
    }

    .product-card--featured {
      border: 2px solid #b99bf3;
      box-shadow: 0 14px 32px rgba(132, 96, 210, .11);
    }

    .product-badge {
      position: absolute;
      top: 10px;
      right: 10px;
      z-index: 2;
      padding: 4px 7px;
      color: #fff;
      background: linear-gradient(135deg, #ffcb4f, #a87ce8);
      border-radius: 99px;
      font-size: 8px;
      font-weight: 800;
    }

    .product-image {
      overflow: hidden;
      aspect-ratio: 1.55 / 1;
      background: #fbfaf8;
      border-radius: 10px;
    }

    .product-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .product-card h3 {
      margin: 12px 0 4px;
      font-size: 13px;
    }

    .product-card .price {
      margin: 0;
      color: var(--violet-dark);
      font-family: var(--serif);
      font-size: 18px;
      font-weight: 700;
    }

    .product-card .price strong {
      font-size: 25px;
    }

    .product-card .description {
      margin: 8px 0 0;
      color: var(--ink-soft);
      font-size: 10px;
      line-height: 1.45;
    }

    .product-specs {
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 13px;
      padding: 22px 20px;
      background:
        linear-gradient(145deg, rgba(255, 246, 236, .98), rgba(255, 250, 245, .98));
      border-radius: 16px;
    }

    .spec {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      color: var(--ink-soft);
      font-size: 12px;
      line-height: 1.35;
    }

    .spec .icon {
      width: 18px;
      height: 18px;
      color: var(--ink);
    }

    .product-specs .text-link {
      margin-top: 6px;
      font-size: 12px;
    }

    .feature-row {
      display: grid;
      grid-template-columns: 185px repeat(5, minmax(0, 1fr));
      align-items: start;
      gap: 0;
    }

    .feature-row__title {
      padding-right: 24px;
    }

    .feature-row__title .section-title {
      font-size: 36px;
    }

    .feature-item {
      position: relative;
      min-height: 88px;
      padding: 0 18px;
    }

    .feature-item:not(:last-child)::after {
      content: "";
      position: absolute;
      top: 4px;
      right: 0;
      width: 1px;
      height: 82px;
      border-right: 1px dashed #d9d2e4;
    }

    .feature-item strong {
      display: block;
      margin-bottom: 7px;
      font-size: 13px;
      line-height: 1.3;
    }

    .feature-item p {
      margin: 0;
      color: var(--ink-soft);
      font-size: 11px;
      line-height: 1.5;
    }

    .why-grid {
      display: grid;
      grid-template-columns: 185px repeat(4, minmax(0, 1fr)) 245px;
      align-items: center;
      gap: 0;
    }

    .why-title {
      padding-right: 26px;
    }

    .why-title .section-title { font-size: 36px; }

    .why-item {
      display: grid;
      justify-items: center;
      gap: 9px;
      padding: 0 14px;
      text-align: center;
    }

    .why-item .icon {
      width: 43px;
      height: 43px;
      color: var(--violet);
    }

    .why-item:nth-child(2) .icon { color: var(--yellow); }
    .why-item:nth-child(4) .icon { color: var(--pink); }

    .why-item strong {
      font-size: 12px;
      line-height: 1.35;
    }

    .why-image {
      align-self: end;
      min-width: 0;
    }

    .why-image img { width: 100%; }

    .privacy-card {
      display: grid;
      grid-template-columns: 1.2fr 190px 1fr;
      align-items: center;
      gap: 38px;
      padding: 28px 34px;
      background:
        radial-gradient(circle at 54% 50%, rgba(204, 184, 255, .25), transparent 25%),
        linear-gradient(100deg, #fbf9ff 0%, #f4efff 100%);
      border-radius: 22px;
    }

    .privacy-card h2 {
      margin: 0 0 14px;
      font-family: var(--serif);
      font-size: 30px;
      line-height: 1.08;
      letter-spacing: -.025em;
    }

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

    .check-list li {
      display: flex;
      align-items: flex-start;
      gap: 9px;
      color: var(--ink-soft);
      font-size: 12px;
    }

    .check-list li::before {
      content: "✓";
      color: var(--violet);
      font-size: 16px;
      font-weight: 900;
      line-height: 1;
    }

    .privacy-icon {
      width: 118px;
      height: 118px;
      display: grid;
      place-items: center;
      margin-inline: auto;
      color: var(--violet-dark);
      background: radial-gradient(circle, #ebe2ff 0 46%, rgba(238, 230, 255, .35) 47% 70%, transparent 71%);
      border-radius: 50%;
    }

    .privacy-icon .icon {
      width: 54px;
      height: 54px;
    }

    .privacy-copy {
      color: var(--ink-soft);
      font-size: 13px;
      line-height: 1.55;
    }

    .privacy-copy p {
      margin: 0 0 12px;
    }

    .delivery-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
      margin-top: 22px;
    }

    .delivery-card {
      display: grid;
      grid-template-columns: 48px 1fr;
      gap: 14px;
      align-items: start;
      padding: 22px;
      border: 1px solid var(--line);
      border-radius: 14px;
      background: #fff;
    }

    .delivery-icon {
      width: 48px;
      height: 48px;
      display: grid;
      place-items: center;
      color: var(--violet);
      background: var(--violet-wash);
      border-radius: 12px;
    }

    .delivery-card h3 {
      margin: 0 0 5px;
      font-size: 13px;
    }

    .delivery-card p {
      margin: 0;
      color: var(--ink-soft);
      font-size: 11px;
      line-height: 1.5;
    }

    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 16px;
    }

    .review-card {
      position: relative;
      overflow: hidden;
      min-height: 176px;
      padding: 22px 154px 22px 22px;
      background: linear-gradient(135deg, #fffaf7, #fffdfb);
      border: 1px solid #f1e8e2;
      border-radius: 17px;
    }

    .review-person {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 10px;
    }

    .avatar {
      width: 36px;
      height: 36px;
      display: grid;
      place-items: center;
      color: #6f4a39;
      background: linear-gradient(135deg, #f9d3bd, #fff);
      border-radius: 50%;
      font-family: var(--serif);
      font-weight: 700;
    }

    .review-person strong {
      display: block;
      font-size: 12px;
    }

    .stars {
      color: var(--yellow);
      font-size: 12px;
      letter-spacing: 2px;
    }

    .review-card blockquote {
      margin: 0;
      color: var(--ink-soft);
      font-size: 11px;
      line-height: 1.55;
    }

    .review-photo {
      position: absolute;
      right: 14px;
      bottom: 14px;
      width: 122px;
      height: 86px;
      overflow: hidden;
      background: #f5f1ee;
      border-radius: 11px;
      transform: rotate(-4deg);
      box-shadow: 0 9px 20px rgba(49, 38, 61, .1);
    }

    .review-photo img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }

    .review-card:nth-child(2) .review-photo { transform: rotate(3deg); }
    .review-card:nth-child(3) .review-photo { transform: rotate(-3deg); }

    .faq-row {
      display: grid;
      grid-template-columns: 175px repeat(4, minmax(0, 1fr));
      gap: 12px;
      align-items: stretch;
    }

    .faq-title {
      display: flex;
      align-items: center;
      font-family: var(--serif);
      font-size: 24px;
      font-weight: 700;
    }

    .faq-item {
      border: 1px solid var(--line);
      border-radius: 14px;
      background: #fff;
    }

    .faq-item summary {
      min-height: 58px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 14px 16px;
      cursor: pointer;
      list-style: none;
      font-size: 11px;
      font-weight: 750;
      line-height: 1.35;
    }

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

    .faq-item summary::after {
      content: "+";
      color: var(--violet);
      font-size: 20px;
      font-weight: 400;
    }

    .faq-item[open] summary::after { content: "−"; }

    .faq-item p {
      margin: 0;
      padding: 0 16px 16px;
      color: var(--ink-soft);
      font-size: 11px;
      line-height: 1.55;
    }

    .final-cta {
      display: grid;
      grid-template-columns: 270px 1fr 280px;
      align-items: center;
      gap: 28px;
      min-height: 154px;
      padding: 18px 36px 18px 16px;
      background:
        radial-gradient(circle at 87% 30%, rgba(255, 255, 255, .75), transparent 18%),
        linear-gradient(100deg, #f1ebff, #f8f5ff 65%, #eee6ff);
      border-radius: 22px;
    }

    .cta-image {
      align-self: end;
      min-width: 0;
    }

    .cta-image img { width: 100%; }

    .final-cta h2 {
      margin: 0 0 13px;
      font-family: var(--serif);
      font-size: 30px;
      line-height: 1.08;
      letter-spacing: -.025em;
    }

    .cta-points {
      display: flex;
      flex-wrap: wrap;
      gap: 14px 22px;
      color: var(--ink-soft);
      font-size: 11px;
      font-weight: 650;
    }

    .cta-points span {
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .cta-points .icon {
      width: 17px;
      height: 17px;
      color: var(--violet);
    }

    .cta-action {
      text-align: center;
    }

    .cta-action .button {
      width: 100%;
    }

    .cta-action p {
      margin: 9px 0 0;
      color: var(--muted);
      font-size: 9px;
    }

    .site-footer {
      padding: 24px 0 32px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.35fr repeat(4, 1fr);
      gap: 34px;
      padding-top: 10px;
    }

    .footer-brand p {
      max-width: 210px;
      margin: 14px 0 0;
      color: var(--muted);
      font-size: 10px;
      line-height: 1.55;
    }

    .footer-column h3 {
      margin: 0 0 10px;
      color: var(--muted);
      font-size: 10px;
      font-weight: 800;
    }

    .footer-column a,
    .footer-column span {
      display: block;
      margin: 6px 0;
      color: var(--ink-soft);
      font-size: 10px;
    }

    .socials {
      display: flex;
      gap: 8px;
      margin-top: 12px;
    }

    .socials a {
      width: 28px;
      height: 28px;
      display: grid;
      place-items: center;
      margin: 0;
      color: var(--violet-dark);
      background: var(--violet-wash);
      border-radius: 50%;
      font-size: 11px;
      font-weight: 850;
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      gap: 20px;
      margin-top: 24px;
      padding-top: 18px;
      border-top: 1px solid var(--line);
      color: var(--muted);
      font-size: 9px;
    }

    .mobile-header-cta { display: none; }

    @media (max-width: 1120px) {
      .header-row {
        grid-template-columns: 150px 1fr auto;
        gap: 18px;
      }

      .main-nav { gap: 17px; }

      .main-nav a { font-size: 12px; }

      .hero {
        grid-template-columns: minmax(0, .95fr) minmax(420px, 1.05fr);
      }

      .hero h1 { font-size: 58px; }

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

      .trust-item:nth-child(3)::after { display: none; }

      .trust-item:nth-child(-n+3) {
        padding-bottom: 22px;
        margin-bottom: 22px;
        border-bottom: 1px solid rgba(227, 217, 210, .58);
      }

      .product-layout {
        grid-template-columns: 150px minmax(0, 1fr);
      }

      .product-specs {
        grid-column: 2;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .feature-row {
        grid-template-columns: 180px repeat(3, minmax(0, 1fr));
        row-gap: 24px;
      }

      .feature-item:nth-child(n+5) {
        grid-column: span 1;
      }

      .why-grid {
        grid-template-columns: 180px repeat(4, minmax(0, 1fr));
      }

      .why-image {
        grid-column: 2 / -1;
        justify-self: end;
        width: 280px;
      }

      .final-cta {
        grid-template-columns: 230px 1fr 240px;
      }
    }

    @media (max-width: 920px) {
      .container { width: min(100% - 32px, 760px); }

      .site-header { padding: 16px 0; }

      .header-row {
        grid-template-columns: 1fr auto;
      }

      .main-nav,
      .header-actions { display: none; }

      .mobile-header-cta {
        min-height: 42px;
        display: inline-flex;
        padding-inline: 15px;
        font-size: 12px;
      }

      .hero {
        grid-template-columns: 1fr;
        gap: 16px;
        padding-top: 34px;
      }

      .hero-copy {
        padding-left: 0;
      }

      .hero h1 {
        max-width: 680px;
        font-size: clamp(46px, 10vw, 68px);
      }

      .hero-lead { max-width: 640px; }

      .hero-visual {
        max-width: 680px;
        margin-inline: auto;
      }

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

      .trust-item:nth-child(3)::after { display: block; }
      .trust-item:nth-child(even)::after { display: none; }

      .trust-item:nth-child(-n+4) {
        padding-bottom: 22px;
        margin-bottom: 22px;
        border-bottom: 1px solid rgba(227, 217, 210, .58);
      }

      .process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px 22px;
      }

      .process-step:not(:last-child)::after { display: none; }

      .process-step:last-child {
        grid-column: 1 / -1;
        max-width: 320px;
        justify-self: center;
      }

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

      .product-layout { grid-template-columns: 1fr; }

      .product-intro { padding-top: 0; }

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

      .product-specs {
        grid-column: auto;
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .feature-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px 0;
      }

      .feature-row__title { grid-column: 1 / -1; }

      .feature-item:nth-child(even)::after { display: none; }

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

      .why-title { grid-column: 1 / -1; }

      .why-image {
        grid-column: 1 / -1;
        width: 300px;
      }

      .privacy-card {
        grid-template-columns: 1fr 140px;
      }

      .privacy-copy {
        grid-column: 1 / -1;
      }

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

      .review-card { min-height: 155px; }

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

      .faq-title { grid-column: 1 / -1; }

      .final-cta {
        grid-template-columns: 210px 1fr;
      }

      .cta-action {
        grid-column: 2;
      }

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

      .footer-brand { grid-column: 1 / -1; }
    }

    @media (max-width: 640px) {
      body { font-size: 15px; }

      .container { width: min(100% - 24px, 520px); }

      .section { padding: 42px 0; }
      .section--compact { padding: 30px 0; }

      .logo__name { font-size: 20px; }

      .mobile-header-cta {
        min-height: 40px;
        border-radius: 10px;
      }

      .hero {
        padding-top: 26px;
      }

      .eyebrow {
        font-size: 10px;
      }

      .hero h1 {
        margin-bottom: 14px;
        font-size: clamp(42px, 13vw, 58px);
      }

      .hero-lead {
        font-size: 15px;
      }

      .hero-mini-features {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
      }

      .hero-offer {
        align-items: center;
        justify-content: space-between;
        gap: 16px;
      }

      .hero-price strong { font-size: 36px; }

      .button--wide {
        width: 100%;
        min-width: 0;
      }

      .trust-grid {
        grid-template-columns: 1fr;
        padding: 22px 18px;
      }

      .trust-item {
        display: grid;
        grid-template-columns: 36px 1fr;
        column-gap: 12px;
        padding: 15px 0;
        text-align: left;
      }

      .trust-item .icon {
        grid-row: 1 / span 2;
        margin: 0;
      }

      .trust-item:not(:last-child)::after { display: none; }

      .trust-item:nth-child(-n+5) {
        padding-bottom: 15px;
        margin-bottom: 0;
        border-bottom: 1px solid rgba(227, 217, 210, .58);
      }

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

      .process-step,
      .process-step:last-child {
        max-width: none;
        display: grid;
        grid-template-columns: 76px 1fr;
        grid-template-areas:
          "icon title"
          "icon text";
        column-gap: 16px;
        text-align: left;
      }

      .step-visual {
        grid-area: icon;
        width: 70px;
        height: 70px;
        margin: 0;
      }

      .process-step h3 {
        grid-area: title;
        align-self: end;
      }

      .process-step p {
        grid-area: text;
      }

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

      .section-head {
        align-items: flex-start;
      }

      .text-link {
        white-space: normal;
        text-align: right;
      }

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

      .product-card {
        display: grid;
        grid-template-columns: 138px 1fr;
        grid-template-areas:
          "image title"
          "image price"
          "image desc";
        gap: 0 15px;
        align-items: center;
        text-align: left;
      }

      .product-image {
        grid-area: image;
      }

      .product-card h3 { grid-area: title; }
      .product-card .price { grid-area: price; }
      .product-card .description { grid-area: desc; }

      .product-badge {
        left: 18px;
        right: auto;
      }

      .product-specs {
        grid-template-columns: 1fr;
      }

      .feature-row { grid-template-columns: 1fr; }

      .feature-row__title,
      .feature-item { grid-column: auto; }

      .feature-item {
        min-height: 0;
        padding: 0 0 18px;
        border-bottom: 1px dashed #d9d2e4;
      }

      .feature-item::after { display: none !important; }

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

      .why-title {
        grid-column: 1 / -1;
        padding-right: 0;
      }

      .why-image {
        grid-column: 1 / -1;
        justify-self: center;
      }

      .privacy-card {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 24px 20px;
      }

      .privacy-icon {
        grid-row: 1;
        width: 96px;
        height: 96px;
      }

      .privacy-copy {
        grid-column: auto;
      }

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

      .review-card {
        padding-right: 142px;
      }

      .faq-row { grid-template-columns: 1fr; }

      .faq-title { grid-column: auto; }

      .final-cta {
        grid-template-columns: 1fr;
        padding: 22px;
        text-align: center;
      }

      .cta-image {
        width: 245px;
        margin-inline: auto;
      }

      .cta-points {
        justify-content: center;
      }

      .cta-action { grid-column: auto; }

      .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 26px 20px;
      }

      .footer-brand { grid-column: 1 / -1; }

      .footer-bottom {
        flex-direction: column;
      }
    }

    @media (max-width: 400px) {
      .mobile-header-cta {
        width: 42px;
        padding: 0;
        font-size: 0;
      }

      .mobile-header-cta::before {
        content: "→";
        font-size: 18px;
      }

      .hero h1 { font-size: 40px; }

      .hero-offer {
        align-items: flex-start;
        flex-direction: column;
      }

      .product-card {
        grid-template-columns: 118px 1fr;
      }

      .review-card {
        min-height: 195px;
        padding-right: 22px;
        padding-bottom: 94px;
      }

      .review-photo {
        width: 104px;
        height: 70px;
      }

      .footer-grid { grid-template-columns: 1fr; }
      .footer-brand { grid-column: auto; }
    }

    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      *,
      *::before,
      *::after {
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
      }
    }

/* Inline SVG symbol sprite */
.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}


/* 2026-08-04 visual-density corrective: closer to the approved homepage concept */
:root {
  --container: 1280px;
  --shadow: 0 18px 48px rgba(47, 35, 77, .09);
  --shadow-soft: 0 10px 28px rgba(47, 35, 77, .07);
}

.container {
  width: min(var(--container), calc(100% - 64px));
}

.section { padding: 44px 0; }
.section--compact { padding: 28px 0; }
.section-title { font-size: clamp(34px, 3vw, 46px); }

.site-header { padding: 17px 0; }
.header-row { grid-template-columns: 190px 1fr auto; gap: 24px; }
.main-nav { gap: clamp(18px, 1.8vw, 30px); }
.main-nav a { font-size: 13px; white-space: nowrap; }

.hero {
  grid-template-columns: minmax(0, .92fr) minmax(520px, 1.08fr);
  gap: 42px;
  min-height: 610px;
  padding: 34px 0 18px;
  overflow: visible;
}
.hero-copy { padding-left: 10px; }
.hero h1 {
  max-width: 610px;
  font-size: clamp(56px, 5vw, 76px);
  line-height: .98;
}
.hero-lead { max-width: 535px; font-size: 16px; line-height: 1.58; }
.hero-mini-features { margin: 24px 0 18px; gap: 16px; }
.hero-mini-feature { font-size: 11px; }
.hero-offer { margin-bottom: 15px; }
.hero-visual {
  display: grid;
  place-items: center;
  min-height: 500px;
  transform: none;
}
.hero-visual img {
  width: min(100%, 710px);
  max-height: 560px;
  object-fit: contain;
}

.trust-strip { padding-top: 14px; }
.trust-grid { padding: 24px 18px; }
.trust-item { padding-inline: 14px; }
.trust-item strong { font-size: 13px; }
.trust-item p { font-size: 10.5px; }

.process-wrap { margin-top: 24px; }
.process-grid { gap: 28px; }
.process-step p { max-width: 190px; margin-inline: auto; }

.examples-grid { gap: 16px; }
.example-image { border-radius: 16px; }
.example-card h3 { font-size: 12.5px; }

.product-layout {
  grid-template-columns: 190px minmax(0, 1fr) 250px;
  gap: 16px;
}
.product-intro .section-title { font-size: 39px; }
.product-card { padding: 12px 12px 18px; }
.product-image { aspect-ratio: 1.58 / 1; }
.product-card h3 { font-size: 13px; }
.product-specs { padding: 20px; }

#included .feature-row {
  grid-template-columns: 205px repeat(5, minmax(0, 1fr));
  padding: 26px 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 10px 32px rgba(47, 35, 77, .035);
}
.feature-row__title .section-title { font-size: 37px; }
.feature-item { min-height: 82px; padding-inline: 16px; }
.feature-item strong { font-size: 12.5px; }
.feature-item p { font-size: 10.5px; }

.section--why .why-grid {
  grid-template-columns: 185px repeat(4, minmax(105px, 1fr)) 300px;
  gap: 14px;
  min-height: 250px;
  padding: 24px 26px;
  background: linear-gradient(105deg, #fff 0%, #fff 68%, #faf6ff 100%);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
}
.why-title { padding-right: 8px; }
.why-title .section-title { font-size: 37px; }
.why-item { padding-inline: 8px; }
.why-item strong { font-size: 11.5px; }
.why-image {
  align-self: stretch;
  width: 100%;
  min-height: 200px;
  overflow: hidden;
  border-radius: 18px;
}
.why-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 53% 45%;
}

.privacy-card { padding: 26px 34px; }
.delivery-grid { margin-top: 18px; }
.delivery-card { padding: 19px; }
.review-card { min-height: 165px; }
.faq-item summary { min-height: 54px; }

.final-cta {
  grid-template-columns: 300px 1fr 270px;
  min-height: 190px;
  padding: 20px 34px 20px 18px;
}
.cta-image {
  align-self: center;
  height: 150px;
  overflow: hidden;
}
.cta-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.final-cta h2 { font-size: 31px; }

@media (max-width: 1180px) {
  .container { width: min(100% - 40px, 1080px); }
  .header-row { grid-template-columns: 170px 1fr auto; gap: 16px; }
  .main-nav { gap: 16px; }
  .main-nav a { font-size: 11.5px; }
  .hero { grid-template-columns: minmax(0, .94fr) minmax(450px, 1.06fr); gap: 24px; min-height: 560px; }
  .hero h1 { font-size: 58px; }
  .hero-visual { min-height: 460px; }
  .product-layout { grid-template-columns: 170px minmax(0, 1fr) 225px; }
  #included .feature-row { grid-template-columns: 190px repeat(5, minmax(0, 1fr)); }
  .section--why .why-grid { grid-template-columns: 170px repeat(4, minmax(92px, 1fr)) 260px; gap: 10px; }
  .why-image { min-height: 190px; }
}

@media (max-width: 1020px) {
  .container { width: min(100% - 32px, 920px); }
  .main-nav, .header-actions { display: none; }
  .header-row { grid-template-columns: 1fr auto; }
  .mobile-header-cta { display: inline-flex; }
  .hero { grid-template-columns: 1fr; min-height: auto; gap: 12px; }
  .hero-copy { padding-left: 0; }
  .hero h1 { max-width: 720px; font-size: clamp(50px, 8vw, 70px); }
  .hero-visual { min-height: 0; max-width: 760px; margin-inline: auto; }
  .hero-visual img { max-height: 520px; }
  .product-layout { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .product-specs { grid-column: auto; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  #included .feature-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  #included .feature-row__title { grid-column: 1 / -1; }
  .section--why .why-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .why-title { grid-column: 1 / -1; }
  .why-image { grid-column: 1 / -1; width: 100%; height: 250px; min-height: 0; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 24px, 520px); }
  .section { padding: 38px 0; }
  .section--compact { padding: 24px 0; }
  .hero { padding-top: 22px; }
  .hero h1 { font-size: clamp(42px, 13vw, 56px); }
  .hero-visual img { max-height: none; }
  #included .feature-row { grid-template-columns: 1fr; padding: 22px 18px; }
  .section--why .why-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); padding: 22px 18px; }
  .why-image { height: 220px; }
  .final-cta { grid-template-columns: 1fr; min-height: 0; padding: 22px; }
  .cta-image { width: 100%; height: 130px; }
}

/* Final mobile correction — override earlier tablet rules without changing desktop */
@media (max-width: 700px) {
  html, body { overflow-x: hidden; }
  .container { width: min(100% - 24px, 520px); }
  .section { padding: 34px 0; }
  .section--compact { padding: 22px 0; }
  .section-title { font-size: 32px; }

  .site-header { padding: 12px 0; }
  .header-row { grid-template-columns: 1fr auto; }

  .hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    min-height: 0;
    gap: 8px;
    padding: 24px 0 6px;
  }
  .hero-copy { padding: 0; }
  .hero h1 { max-width: 100%; font-size: clamp(42px, 13vw, 56px); }
  .hero-lead { font-size: 15px; line-height: 1.55; }
  .hero-mini-features { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px 12px; margin: 22px 0 18px; }
  .hero-offer { align-items: center; justify-content: space-between; gap: 14px; }
  .hero-visual {
    width: 100%;
    max-width: none;
    min-height: 0;
    margin: 4px 0 -6px;
    overflow: hidden;
  }
  .hero-visual img {
    width: 112%;
    max-width: none;
    max-height: none;
    margin: -34px -6% -16px;
  }

  .trust-grid { grid-template-columns: 1fr; padding: 12px 18px; }
  .trust-item { display: grid; grid-template-columns: 36px 1fr; column-gap: 12px; padding: 13px 0; text-align: left; }
  .trust-item .icon { grid-row: 1 / span 2; margin: 0; }
  .trust-item:not(:last-child) { border-bottom: 1px solid rgba(227,217,210,.58); }
  .trust-item:not(:last-child)::after { display: none; }

  .process-grid { grid-template-columns: 1fr; gap: 20px; }
  .process-step,
  .process-step:last-child {
    max-width: none;
    display: grid;
    grid-template-columns: 68px minmax(0, 1fr);
    grid-template-areas: "icon title" "icon text";
    column-gap: 14px;
    text-align: left;
  }
  .process-step:not(:last-child)::after { display: none; }
  .step-visual { grid-area: icon; width: 64px; height: 64px; margin: 0; }
  .process-step h3 { grid-area: title; align-self: end; margin-bottom: 4px; font-size: 14px; }
  .process-step p { grid-area: text; max-width: none; margin: 0; font-size: 12px; }

  .section-head { align-items: flex-start; gap: 14px; }
  .section-head .text-link { max-width: 132px; white-space: normal; text-align: right; }
  .examples-grid { grid-template-columns: 1fr; gap: 22px; }
  .example-image { aspect-ratio: 1.58 / 1; }

  .product-layout { grid-template-columns: minmax(0, 1fr); }
  .product-intro { padding: 0; }
  .product-intro .section-title { font-size: 32px; }
  .product-grid { grid-template-columns: minmax(0, 1fr); }
  .product-card {
    display: grid;
    grid-template-columns: 132px minmax(0, 1fr);
    grid-template-areas: "image title" "image price" "image desc";
    gap: 0 14px;
    align-items: center;
    width: 100%;
    min-width: 0;
    padding: 12px;
    text-align: left;
  }
  .product-image { grid-area: image; width: 132px; }
  .product-card h3 { grid-area: title; min-width: 0; }
  .product-card .price { grid-area: price; min-width: 0; }
  .product-card .description { grid-area: desc; min-width: 0; }
  .product-badge { left: 18px; right: auto; }
  .product-specs { display: grid; grid-template-columns: 1fr; }

  #included .feature-row { grid-template-columns: 1fr; padding: 20px 18px; gap: 0; }
  #included .feature-row__title,
  #included .feature-item { grid-column: auto; }
  .feature-row__title { padding-right: 0; margin-bottom: 8px; }
  .feature-row__title .section-title { font-size: 32px; }
  .feature-item { min-height: 0; padding: 14px 0; border-bottom: 1px dashed #d9d2e4; }
  .feature-item:last-child { border-bottom: 0; }
  .feature-item::after { display: none !important; }

  .section--why .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 10px;
    min-height: 0;
    padding: 20px 18px;
  }
  .why-title { grid-column: 1 / -1; padding: 0; }
  .why-title .section-title { font-size: 32px; }
  .why-item { padding: 0 4px; }
  .why-image { grid-column: 1 / -1; width: 100%; height: 210px; min-height: 0; }

  .privacy-card { grid-template-columns: 1fr; gap: 18px; padding: 22px 18px; }
  .privacy-card h2 { font-size: 27px; }
  .privacy-icon { grid-row: auto; width: 88px; height: 88px; }
  .privacy-copy { grid-column: auto; }

  .delivery-grid { grid-template-columns: 1fr; }
  .delivery-card { padding: 18px; }

  .reviews-grid { grid-template-columns: 1fr; }
  .review-card { min-height: 165px; padding-right: 132px; }

  .faq-row { grid-template-columns: 1fr; }
  .faq-title { grid-column: auto; }

  .final-cta { grid-template-columns: 1fr; min-height: 0; padding: 22px 18px; text-align: center; }
  .cta-image { width: 100%; height: 130px; margin: 0 auto; }
  .cta-points { justify-content: center; }
  .cta-action { grid-column: auto; }

  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px 18px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 400px) {
  .product-card { grid-template-columns: 112px minmax(0, 1fr); }
  .product-image { width: 112px; }
  .review-card { padding-right: 18px; padding-bottom: 92px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
}


/* 2026-08-04 humanized visual + copy corrective */
body {
  background: #fff;
}

.logo__name::after { display: none; }

.button,
button,
input[type="button"],
input[type="submit"] {
  box-shadow: none !important;
  filter: none !important;
  transform: none !important;
  transition: background-color .18s ease, border-color .18s ease, color .18s ease;
}

.button:hover,
.button:active {
  box-shadow: none !important;
  transform: none !important;
}

.button--primary {
  color: #fff;
  background: #8064dc;
  border-color: #8064dc;
}

.button--primary:hover { background: #7053cf; border-color: #7053cf; }
.button--primary:active { background: #6347be; border-color: #6347be; }
.button--ghost { color: var(--ink); background: transparent; border-color: var(--line-strong); }
.button--secondary { color: var(--ink); background: transparent; border-color: var(--line-strong); }

.hero-kicker {
  margin-bottom: 14px;
  color: #8064dc;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.hero {
  grid-template-columns: minmax(0, .9fr) minmax(520px, 1.1fr);
  min-height: 600px;
  gap: 48px;
}

.hero h1 {
  max-width: 650px;
  font-size: clamp(54px, 4.7vw, 72px);
  line-height: 1;
}

.hero-lead { max-width: 560px; }
.hero-mini-features { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 520px; gap: 14px 24px; }
.hero-mini-feature { grid-template-columns: 25px 1fr; align-items: center; justify-items: start; }
.hero-mini-feature span { font-size: 12px; line-height: 1.3; }
.hero-offer { margin: 14px 0; }
.hero-price { display: flex; align-items: baseline; gap: 8px; }
.hero-price span { font-size: 14px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-actions .button { min-width: 190px; }
.hero-note { margin-top: 10px; }

.hero-visual {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 42px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  min-height: 500px;
  transform: none;
  overflow: visible;
}

.hero-media {
  position: relative;
  margin: 0;
  min-width: 0;
}

.hero-media img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: contain;
  filter: none !important;
  box-shadow: none !important;
}

.hero-media--photo img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 22px;
}

.hero-media--drawing {
  min-height: 460px;
  display: grid;
  align-content: center;
}

.hero-media--drawing img {
  background: transparent;
  mix-blend-mode: multiply;
}

.hero-media figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  text-align: center;
}

.hero-transform {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #8064dc;
  border: 1px solid #dcd5ee;
  border-radius: 50%;
  font-size: 18px;
}

.trust-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: #fbfafc;
  border: 1px solid var(--line);
}
.trust-item { padding: 4px 24px; }
.trust-item:nth-child(4)::after { display: none; }

.section-lead {
  max-width: 720px;
  margin: 12px 0 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.55;
}
.section-lead--center { margin-inline: auto; text-align: center; }
.section-head--copy { align-items: flex-start; }

.example-image,
.product-card,
.product-specs,
#included .feature-row,
.section--why .why-grid,
.delivery-card,
.preview-card,
.faq-item,
.final-cta {
  box-shadow: none !important;
}

.product-intro p {
  margin: 16px 0 0;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.55;
}
.product-card { border: 1px solid var(--line); }
.product-card--featured { border-color: #b9a3eb; }
.product-badge { background: #8064dc; }
.product-card .description { min-height: 2.8em; }

.section--why .why-grid { background: #fff; }
.why-item strong { max-width: 120px; }
.why-image { aspect-ratio: 4 / 3; }

.privacy-card {
  background: #f7f4fc;
  border: 1px solid #e6dff3;
}
.privacy-icon { background: #eee8f9; }

.preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.preview-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}
.preview-card img {
  width: 100%;
  aspect-ratio: 1.58 / 1;
  object-fit: contain;
  background: #faf8f5;
}
.preview-card > div { padding: 18px; }
.preview-card span { color: #8064dc; font-size: 11px; font-weight: 800; letter-spacing: .08em; }
.preview-card h3 { margin: 5px 0 6px; font-size: 16px; }
.preview-card p { margin: 0; color: var(--ink-soft); font-size: 12px; line-height: 1.5; }

.final-cta { background: #f4f0fb; border: 1px solid #e6dff3; }
.final-cta h2 { max-width: 520px; }

.footer-grid--simple { grid-template-columns: 1.5fr repeat(3, 1fr); }
.footer-brand p { max-width: 280px; }

@media (max-width: 1020px) {
  .hero { grid-template-columns: 1fr; gap: 28px; }
  .hero-copy { max-width: 760px; }
  .hero-visual { width: min(100%, 760px); margin-inline: auto; }
  .trust-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trust-item:nth-child(2)::after { display: none; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); padding-bottom: 20px; margin-bottom: 20px; }
  .preview-grid { grid-template-columns: 1fr; }
  .preview-card { display: grid; grid-template-columns: minmax(240px, .8fr) 1fr; align-items: center; }
}

@media (max-width: 700px) {
  .hero-kicker { font-size: 10px; }
  .hero h1 { font-size: clamp(40px, 12vw, 52px); }
  .hero-mini-features { grid-template-columns: 1fr 1fr; gap: 14px; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-actions .button { width: 100%; min-width: 0; }
  .hero-visual { grid-template-columns: 1fr 28px 1fr; min-height: 0; gap: 3px; }
  .hero-media--drawing { min-height: 0; }
  .hero-media img { max-height: 360px; }
  .hero-media figcaption { font-size: 9px; }
  .hero-transform { width: 28px; height: 28px; font-size: 15px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { padding: 15px 0; border-bottom: 1px solid var(--line); margin: 0 !important; }
  .trust-item::after { display: none !important; }
  .trust-item:last-child { border-bottom: 0; }
  .product-intro p { max-width: 520px; }
  .preview-card { grid-template-columns: 1fr; }
  .footer-grid--simple { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 430px) {
  .hero-mini-features { grid-template-columns: 1fr; }
  .hero-visual { grid-template-columns: 1fr; gap: 8px; }
  .hero-transform { margin-inline: auto; transform: rotate(90deg) !important; }
  .hero-media img { max-height: 420px; }
  .footer-grid--simple { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
}

/* Rendering normalization for separated hero assets and preview images */
.hero-visual { overflow: visible !important; }
.hero-media img {
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  margin: 0 !important;
}
.hero-media--drawing img { mix-blend-mode: normal; }
.preview-card img { height: auto !important; }
