﻿:root {
  --bg: #f7f6f2;
  --paper: #ffffff;
  --ink: #101010;
  --muted: #6f6f69;
  --line: rgba(16, 16, 16, 0.12);
  --glass: rgba(255, 255, 255, 0.68);
  --shadow: 0 22px 70px rgba(16, 16, 16, 0.11);
  --radius: 26px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

@media (hover: hover) and (pointer: fine) {
  body,
  a,
  button,
  input,
  textarea {
    cursor: none;
  }

  .custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    width: 22px;
    height: 22px;
    border: 1px solid rgba(6, 71, 168, 0.8);
    border-radius: 999px;
    background: rgba(6, 71, 168, 0.08);
    box-shadow: 0 0 28px rgba(6, 71, 168, 0.18);
    pointer-events: none;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.82);
    transition:
      width 160ms ease,
      height 160ms ease,
      border-color 160ms ease,
      background 160ms ease,
      opacity 160ms ease,
      transform 160ms ease;
  }

  .custom-cursor.is-visible {
    opacity: 1;
  }

  .custom-cursor.is-hovering {
    width: 46px;
    height: 46px;
    border-color: rgba(16, 16, 16, 0.5);
    background: rgba(255, 255, 255, 0.22);
    mix-blend-mode: multiply;
  }

  .custom-cursor.is-pressing {
    transform: translate(-50%, -50%) scale(0.72);
  }
}

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

.floating-links {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 20;
  display: flex;
  width: min(860px, calc(100% - 280px));
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 50px rgba(16, 16, 16, 0.1);
  backdrop-filter: blur(22px);
  transform: translateX(-50%);
  z-index: 20;
}

.float-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 8px 15px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0);
  color: rgba(16, 16, 16, 0.82);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0;
  white-space: nowrap;
  outline-offset: 4px;
  transition:
    transform 220ms cubic-bezier(0.2, 0.9, 0.25, 1.2),
    background 220ms ease,
    color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.float-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 4px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0;
  transform: translate(-50%, 8px) scale(0.4);
  transition: transform 220ms ease, opacity 220ms ease;
}

.float-link:hover,
.float-link:focus-visible,
.float-link.is-active {
  border-color: rgba(16, 16, 16, 0.08);
  background: rgba(16, 16, 16, 0.9);
  color: #ffffff;
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 14px 32px rgba(16, 16, 16, 0.16);
}

.float-link:hover::after,
.float-link:focus-visible::after,
.float-link.is-active::after {
  opacity: 0.72;
  transform: translate(-50%, 0) scale(1);
}

.float-link.is-clicking {
  animation: nav-click 420ms cubic-bezier(0.2, 0.9, 0.25, 1.25);
}

.language-switcher {
  position: fixed;
  top: 26px;
  right: 22px;
  z-index: 25;
  display: flex;
  gap: 4px;
  padding: 5px;
  border: 1px solid rgba(16, 16, 16, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.32);
  box-shadow: 0 18px 42px rgba(16, 16, 16, 0.1);
  backdrop-filter: blur(18px);
}

.language-switcher button {
  min-width: 46px;
  min-height: 34px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.language-switcher button:hover,
.language-switcher button:focus-visible,
.language-switcher button.is-active {
  background: rgba(6, 71, 168, 0.92);
  color: #ffffff;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 14px 34px rgba(6, 71, 168, 0.22);
}

@keyframes nav-click {
  0% {
    transform: translateY(-3px) scale(1.04);
  }
  42% {
    transform: translateY(-1px) scale(0.94);
  }
  100% {
    transform: translateY(-3px) scale(1.04);
  }
}

main {
  overflow: hidden;
}

.hero {
  width: min(1520px, calc(100% - 36px));
  min-height: auto;
  margin: 0 auto;
  padding: 118px 0 34px;
  display: grid;
  align-items: start;
  gap: 28px;
}

.home-hero {
  grid-template-columns: minmax(0, 1fr);
}

.hero-image,
.page-image,
.card-image,
.example-image {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background-color: #ddd8cf;
  background-position: center;
  background-size: cover;
  box-shadow: var(--shadow);
}

.hero-image::after,
.page-image::after,
.card-image::after,
.example-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(16, 16, 16, 0.08));
  pointer-events: none;
}

.hero-image {
  min-height: min(76svh, 820px);
}

.home-hero .hero-image {
  aspect-ratio: 16 / 9;
  min-height: auto;
  max-height: none;
  background-color: #86c8e5;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.home-image-frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: inherit;
}

.hero-copy {
  width: min(1180px, 100%);
  max-width: none;
  margin: 0 auto;
  padding-inline: 0;
  text-align: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 16px;
  max-width: 980px;
  font-size: clamp(58px, 13vw, 176px);
  line-height: 0.9;
  letter-spacing: 0;
  font-weight: 750;
}

.typewriter-heading {
  max-width: 1180px;
  min-height: 2.72em;
  margin-inline: auto;
  font-size: clamp(64px, 8rem, 132px);
  line-height: 0.96;
}

.brand-blue,
.typewriter-word {
  color: #0647a8;
}

.typewriter-word {
  font-size: 0.88em;
}

.typewriter-caret {
  display: inline-block;
  margin-left: 0.04em;
  color: #0647a8;
  animation: caret-blink 820ms steps(1) infinite;
}

@keyframes caret-blink {
  0%,
  48% {
    opacity: 1;
  }
  49%,
  100% {
    opacity: 0;
  }
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 4.2vw, 62px);
  line-height: 1;
  letter-spacing: 0;
}

.hero-copy p:not(.eyebrow),
.page-heading p:not(.eyebrow),
.intro p,
.split-section p,
.contact-intro p {
  color: var(--muted);
  font-size: clamp(18px, 2.2vw, 26px);
  max-width: 780px;
}

.hero-copy p:not(.eyebrow) {
  margin-inline: auto;
}

.intro,
.home-cta-section,
.mix-explainer,
.label-grid,
.split-section,
.visual-reserve,
.contact-page {
  width: min(1520px, calc(100% - 36px));
  margin-inline: auto;
}

.intro {
  padding: 80px 0 28px;
}

.intro p {
  max-width: 960px;
  margin-inline: auto;
  color: var(--ink);
  text-align: center;
}

.home-cta-section {
  display: flex;
  justify-content: center;
  padding: 4px 0 34px;
}

.gradient-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 26px;
  overflow: hidden;
  border: 1px solid rgba(16, 16, 16, 0.08);
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(255, 220, 29, 0.94), rgba(120, 239, 120, 0.96), rgba(51, 198, 233, 0.94)),
    #78ef78;
  color: var(--ink);
  box-shadow: 0 20px 55px rgba(51, 198, 233, 0.2);
  font-size: 14px;
  font-weight: 850;
  letter-spacing: 0;
  text-align: center;
}

.generator-result[hidden] {
  display: none;
}

.gradient-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.5) 45%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 520ms ease;
}

.gradient-cta:hover,
.gradient-cta:focus-visible {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 24px 70px rgba(120, 239, 120, 0.28);
}

.gradient-cta:hover::before,
.gradient-cta:focus-visible::before {
  transform: translateX(120%);
}

.mix-explainer {
  display: grid;
  justify-items: center;
  gap: 16px;
  padding: 0 0 62px;
}

.mix-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 2vw, 18px);
}

.mix-dot {
  width: clamp(28px, 3vw, 42px);
  height: clamp(28px, 3vw, 42px);
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(16, 16, 16, 0.12);
}

.mix-ai {
  background: #ffdc1d;
  animation: mix-ai-slide 4.8s ease-in-out infinite;
}

.mix-human {
  background: #33c6e9;
  animation: mix-human-slide 4.8s ease-in-out infinite;
}

.mix-assisted {
  position: relative;
  background: #78ef78;
  animation: mix-assisted-pulse 4.8s ease-in-out infinite;
}

.mix-connector {
  width: clamp(48px, 8vw, 104px);
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ffdc1d, #78ef78, #33c6e9);
  transform-origin: center;
  animation: mix-connector-flow 4.8s ease-in-out infinite;
}

.mix-connector-reverse {
  background: linear-gradient(90deg, #78ef78, #33c6e9);
}

.mix-explainer p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 650;
  text-align: center;
}

@keyframes mix-ai-slide {
  0%,
  100% {
    transform: translateX(0) scale(1);
  }
  42%,
  58% {
    transform: translateX(14px) scale(1.05);
  }
}

@keyframes mix-human-slide {
  0%,
  100% {
    transform: translateX(0) scale(1);
  }
  42%,
  58% {
    transform: translateX(-14px) scale(1.05);
  }
}

@keyframes mix-assisted-pulse {
  0%,
  34%,
  100% {
    transform: scale(1);
    box-shadow: 0 14px 34px rgba(16, 16, 16, 0.12);
  }
  52% {
    transform: scale(1.16);
    box-shadow: 0 18px 48px rgba(120, 239, 120, 0.48);
  }
}

@keyframes mix-connector-flow {
  0%,
  100% {
    opacity: 0.5;
    transform: scaleX(0.72);
  }
  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}

.label-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding-bottom: 120px;
}

.label-card {
  display: grid;
  gap: 22px;
  padding-bottom: 10px;
  border-radius: var(--radius);
  transform-origin: center bottom;
  transition: transform 260ms cubic-bezier(0.2, 0.9, 0.25, 1.2), filter 220ms ease;
}

.label-card:hover {
  filter: saturate(1.04);
  transform: translateY(-12px) scale(1.018);
}

.label-card:hover .card-image {
  box-shadow: 0 30px 90px rgba(16, 16, 16, 0.16);
  transform: scale(1.015);
}

.label-card:hover .card-logo {
  transform: translateY(-4px) rotate(-1deg) scale(1.08);
}

.card-image {
  aspect-ratio: 4 / 5;
  min-height: 320px;
  border-radius: 16px;
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.card-logo {
  display: block;
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin-bottom: 14px;
  transition: transform 260ms cubic-bezier(0.2, 0.9, 0.25, 1.2);
}

.card-image.home-assisted-image {
  background-color: #78ef78;
  background-image: url("assets/home-ai-assisted.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.card-image.home-ai-made-image {
  background-color: #ffdc1d;
  background-image: url("assets/home-ai-made.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.card-image.home-human-made-image {
  background-color: #33c6e9;
  background-image: url("assets/home-human-made.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.label-card h2 {
  font-size: clamp(28px, 3vw, 44px);
}

.label-card p {
  max-width: 320px;
  color: var(--muted);
  font-size: 17px;
}

.download-kit,
.faq-section {
  width: min(1520px, calc(100% - 36px));
  margin-inline: auto;
}

.download-kit {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  padding: 78px 0;
  border-top: 1px solid var(--line);
}

.download-kit h2,
.faq-section h2 {
  max-width: 860px;
}

.download-kit p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 22px);
}

.kit-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 24px;
  background: var(--ink);
  color: #ffffff;
  font-weight: 850;
  box-shadow: 0 18px 46px rgba(16, 16, 16, 0.16);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.kit-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 62px rgba(16, 16, 16, 0.22);
}

.faq-section {
  padding: 20px 0 116px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.faq-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.54);
}

.faq-grid h3 {
  margin: 0 0 12px;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.05;
}

.faq-grid p {
  margin: 0;
  color: var(--muted);
}

.page-hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: clamp(22px, 4vw, 64px);
  align-items: end;
  padding: 128px clamp(18px, 4vw, 58px) 64px;
}

.page-image {
  min-height: min(75svh, 820px);
}

.page-heading {
  padding-bottom: 28px;
}

.page-heading h1 {
  font-size: clamp(54px, 8vw, 116px);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 7vw, 120px);
  align-items: start;
  padding: 76px 0;
  border-top: 1px solid var(--line);
}

.visual-reserve {
  display: grid;
  grid-template-columns: minmax(0, 0.55fr) minmax(0, 1.45fr);
  gap: 26px;
  padding: 34px 0 120px;
}

.label-sales-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 10px 0 28px;
}

.label-text-panel {
  min-height: 300px;
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.52);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.label-text-panel:hover {
  border-color: rgba(16, 16, 16, 0.22);
  box-shadow: 0 24px 64px rgba(16, 16, 16, 0.08);
  transform: translateY(-4px);
}

.label-text-panel h2 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 0.96;
}

.label-text-panel p:not(.eyebrow) {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 24px);
}

.label-cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  margin: 28px 0 120px;
  padding: clamp(26px, 5vw, 58px);
  border-radius: 22px;
  background:
    linear-gradient(120deg, rgba(255, 220, 29, 0.28), rgba(120, 239, 120, 0.24), rgba(51, 198, 233, 0.24)),
    rgba(255, 255, 255, 0.58);
}

.label-cta-panel h2 {
  max-width: 920px;
  margin-bottom: 18px;
  font-size: clamp(38px, 5vw, 74px);
  line-height: 0.96;
}

.label-cta-panel p:not(.eyebrow) {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 24px);
}

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

.example-image {
  aspect-ratio: 1 / 1.12;
}

.contact-page,
.about-page {
  width: min(1240px, calc(100% - 36px));
  min-height: 100svh;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.95fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: 140px 0 86px;
}

.about-page {
  position: relative;
  align-items: start;
}

.about-intro {
  position: sticky;
  top: 140px;
}

.about-intro h1,
.contact-intro h1 {
  max-width: 720px;
  font-size: clamp(46px, 5.6vw, 82px);
  line-height: 0.98;
}

.about-intro p:not(.eyebrow),
.about-panel p:not(.eyebrow),
.contact-drawer p:not(.eyebrow) {
  color: var(--muted);
  font-size: clamp(17px, 1.45vw, 21px);
}

.about-stack {
  display: grid;
  gap: 18px;
}

.about-panel {
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.55);
  box-shadow: 0 20px 58px rgba(16, 16, 16, 0.08);
}

.about-panel h2,
.contact-drawer h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 3vw, 48px);
  line-height: 1.02;
}

.contact-fab {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  background:
    linear-gradient(100deg, #ffdc1d, #78ef78 48%, #33c6e9),
    #78ef78;
  color: var(--ink);
  font-size: 15px;
  font-weight: 900;
  box-shadow: 0 22px 54px rgba(6, 71, 168, 0.24);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.contact-fab:hover,
.contact-fab:focus-visible {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 30px 70px rgba(6, 71, 168, 0.32);
}

.contact-drawer {
  position: fixed;
  right: 28px;
  bottom: 104px;
  z-index: 42;
  width: min(460px, calc(100% - 36px));
  max-height: calc(100svh - 132px);
  overflow: auto;
  display: grid;
  gap: 18px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 24px;
  background: rgba(247, 246, 242, 0.9);
  box-shadow: 0 30px 90px rgba(16, 16, 16, 0.18);
  backdrop-filter: blur(22px);
}

.contact-drawer[hidden] {
  display: none;
}

.drawer-close {
  justify-self: end;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  font-size: 24px;
  line-height: 1;
}

.policy-page {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 150px 0 96px;
}

.policy-heading {
  margin-bottom: 62px;
}

.policy-heading h1 {
  max-width: 980px;
  font-size: clamp(56px, 10vw, 132px);
}

.policy-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.policy-content {
  display: grid;
  gap: 34px;
  max-width: 860px;
}

.policy-content section {
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.policy-content h2 {
  font-size: clamp(28px, 3.2vw, 44px);
}

.policy-content p {
  color: var(--muted);
  font-size: clamp(17px, 1.8vw, 21px);
}

.generator-page {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 150px 0 96px;
}

.generator-hero {
  max-width: 920px;
  margin: 0 auto 48px;
  text-align: center;
}

.generator-hero h1 {
  max-width: 980px;
  margin-inline: auto;
  font-size: clamp(52px, 8vw, 110px);
}

.generator-hero p:not(.eyebrow) {
  max-width: 700px;
  margin-inline: auto;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 23px);
}

.generator-form-panel {
  width: min(780px, 100%);
  margin: 0 auto;
  padding: clamp(18px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.66);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.generator-form {
  display: grid;
  gap: 20px;
}

.seal-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  border: 0;
}

.seal-options legend {
  grid-column: 1 / -1;
  margin-bottom: 2px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.seal-option {
  position: relative;
  display: flex;
  min-height: 96px;
  align-items: flex-end;
  justify-content: flex-start;
  overflow: hidden;
  border: 1px solid rgba(16, 16, 16, 0.12);
  border-radius: 18px;
  padding: 14px;
  color: var(--ink);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.seal-option input {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.seal-option span {
  position: relative;
  z-index: 1;
  font-size: 18px;
  font-weight: 850;
}

.seal-human {
  background: #33c6e9;
}

.seal-assisted {
  background: #78ef78;
}

.seal-made {
  background: #ffdc1d;
}

.seal-option:has(input:checked) {
  border-color: rgba(16, 16, 16, 0.55);
  box-shadow: 0 18px 40px rgba(16, 16, 16, 0.15);
  transform: translateY(-3px);
}

.ai-help-panel {
  display: grid;
  gap: 14px;
  margin: 4px 0 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.56);
}

.ai-help-panel[hidden] {
  display: none;
}

.ai-help-panel legend {
  color: var(--ink);
  font-size: 18px;
  font-weight: 850;
}

.ai-help-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.ai-help-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.ai-help-options label {
  display: flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(16, 16, 16, 0.1);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  font-size: 14px;
  font-weight: 750;
}

.ai-help-options input {
  width: 16px;
}

.other-help {
  margin-top: 2px;
}

.generator-submit,
.print-button,
.png-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 700;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}

.generator-submit,
.print-button,
.png-button {
  background:
    linear-gradient(90deg, rgba(255, 220, 29, 0.95), rgba(120, 239, 120, 0.96), rgba(51, 198, 233, 0.95)),
    #78ef78;
  color: var(--ink);
}

.png-button[aria-disabled="true"] {
  opacity: 0.55;
  pointer-events: auto;
}

.generator-result {
  display: grid;
  justify-items: center;
  gap: 26px;
}

.certificate-card {
  width: min(900px, 100%);
  min-height: 560px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 34px;
  padding: clamp(26px, 5vw, 56px);
  border: 1px solid rgba(16, 16, 16, 0.12);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(247, 246, 242, 0.72)),
    #ffffff;
  box-shadow: 0 30px 90px rgba(16, 16, 16, 0.14);
}

.certificate-card.is-human {
  border-top: 10px solid #33c6e9;
}

.certificate-card.is-assisted {
  border-top: 10px solid #78ef78;
}

.certificate-card.is-made {
  border-top: 10px solid #ffdc1d;
}

.certificate-topline,
.certificate-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.certificate-main {
  display: grid;
  grid-template-columns: minmax(180px, 0.52fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: center;
}

.certificate-logo-wrap {
  display: grid;
  place-items: center;
  aspect-ratio: 1 / 1;
  border-radius: 22px;
  background: #f7f6f2;
}

.certificate-logo-wrap img {
  width: 78%;
  max-height: 78%;
  object-fit: contain;
}

.certificate-copy h2 {
  margin-bottom: 18px;
  font-size: clamp(38px, 5vw, 66px);
}

.certificate-person {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 850;
  line-height: 1.05;
}

.certificate-project {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 23px);
  font-weight: 750;
}

.certificate-statement {
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 22px);
}

.certificate-ai-summary {
  display: grid;
  gap: 10px;
  margin-top: 22px;
  padding: 16px;
  border: 1px solid rgba(16, 16, 16, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.68);
}

.certificate-ai-summary[hidden] {
  display: none;
}

.certificate-ai-summary div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
}

.certificate-ai-summary span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.certificate-ai-summary strong {
  color: var(--ink);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
}

.certificate-ai-summary p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.generator-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.secondary-button {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(18px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.55);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.site-footer {
  width: min(1520px, calc(100% - 36px));
  margin: 0 auto;
  padding: 28px 0 38px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-footer p,
.site-footer a {
  margin: 0;
}

.site-footer a {
  color: var(--ink);
  font-weight: 700;
  transition: color 160ms ease, opacity 160ms ease;
}

.site-footer a:hover {
  color: #0647a8;
}

.footer-note {
  max-width: 820px;
  margin-top: 10px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(16, 16, 16, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  font: inherit;
  padding: 14px 16px;
  outline: none;
  transition: border 160ms ease, box-shadow 160ms ease;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: rgba(16, 16, 16, 0.55);
  box-shadow: 0 0 0 4px rgba(16, 16, 16, 0.08);
}

button {
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: #ffffff;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 45px rgba(16, 16, 16, 0.18);
}

.image-hero {
  background-image:
    linear-gradient(120deg, rgba(248, 246, 239, 0.05), rgba(20, 20, 20, 0.05)),
    url("assets/home-hero.webp");
}

.image-no-ai {
  background-image: url("https://images.unsplash.com/photo-1497215842964-222b430dc094?auto=format&fit=crop&w=1600&q=85");
}

.image-assisted {
  background-image: url("https://images.unsplash.com/photo-1518005020951-eccb494ad742?auto=format&fit=crop&w=1600&q=85");
}

.card-image.home-assisted-image {
  background-image: url("assets/home-ai-assisted.webp");
}

.card-image.home-ai-made-image {
  background-image: url("assets/home-ai-made.webp");
}

.card-image.home-human-made-image {
  background-image: url("assets/home-human-made.webp");
}

.image-generated {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1600&q=85");
}

.page-image.image-no-ai,
.page-image.image-assisted,
.page-image.image-generated {
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto 78%;
}

.page-image.image-no-ai {
  background-color: #33c6e9;
  background-image: url("assets/sticker-human-made.webp");
}

.page-image.image-assisted {
  background-color: #78ef78;
  background-image: url("assets/sticker-ai-assisted.webp");
}

.page-image.image-generated {
  background-color: #ffdc1d;
  background-image: url("assets/sticker-ai-made.webp");
}

@media (max-width: 900px) {
  .floating-links {
    top: 12px;
    left: 10px;
    width: calc(100% - 20px);
    justify-content: flex-start;
    gap: 8px;
    overflow-x: auto;
    padding: 7px;
    scrollbar-width: none;
    transform: none;
  }

  .language-switcher {
    top: 62px;
    right: 10px;
  }

  .language-switcher button {
    min-width: 38px;
    min-height: 32px;
  }

  .floating-links::-webkit-scrollbar {
    display: none;
  }

  .float-link {
    flex: 0 0 auto;
    min-height: 34px;
    padding: 8px 12px;
    font-size: 12px;
  }

  .hero,
  .page-hero {
    padding-top: 136px;
  }

  .hero-image,
  .page-image {
    border-radius: 22px;
  }

  .page-image {
    min-height: 62svh;
  }

  .home-hero .hero-image {
    min-height: auto;
    max-height: none;
  }

  .hero-copy {
    width: min(760px, 100%);
  }

  .typewriter-heading {
    min-height: 3.15em;
    font-size: clamp(54px, 5.25rem, 84px);
  }

  .label-grid,
  .page-hero,
  .download-kit,
  .faq-grid,
  .split-section,
  .visual-reserve,
  .label-sales-grid,
  .label-cta-panel,
  .contact-page,
  .about-page,
  .certificate-main,
  .seal-options,
  .ai-help-options {
    grid-template-columns: 1fr;
  }

  .label-grid {
    gap: 42px;
  }

  .card-image {
    min-height: 280px;
    aspect-ratio: 16 / 12;
  }

  .visual-reserve {
    padding-bottom: 86px;
  }

  .label-text-panel {
    min-height: auto;
  }

  .label-cta-panel {
    margin-bottom: 86px;
  }

  .contact-page {
    align-items: start;
  }

  .about-intro {
    position: static;
  }

  .footer-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

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

  .certificate-topline,
  .certificate-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .hero {
    padding-bottom: 42px;
  }

  .hero-image,
  .page-image,
  .card-image,
  .example-image,
  .contact-form {
    border-radius: 18px;
  }

  .hero-copy p:not(.eyebrow),
  .page-heading p:not(.eyebrow),
  .intro p,
  .split-section p,
  .contact-intro p {
    font-size: 17px;
  }

  .typewriter-heading {
    min-height: 3.8em;
    font-size: clamp(44px, 4.5rem, 72px);
  }

  .example-strip {
    grid-template-columns: 1fr;
  }

  .split-section {
    padding: 58px 0;
  }
}

@media print {
  @page {
    size: A4;
    margin: 14mm;
  }

  body {
    background: #ffffff;
  }

  .custom-cursor,
  .floating-links,
  .language-switcher,
  .generator-hero,
  .generator-form-panel,
  .generator-actions,
  .site-footer {
    display: none !important;
  }

  main,
  .generator-page,
  .generator-result {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .certificate-card {
    width: 100% !important;
    min-height: 240mm;
    box-shadow: none !important;
    break-inside: avoid;
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }
}

