/* Captain Works — marketing site */

:root {
  --paper: #f7f4ec;
  --ink: #191919;
  --yellow: #ffd527;
  --pink: #e60165;
  --muted: #6f6b61;
  --line: rgba(25, 25, 25, 0.14);
  --radius: 22px;
  --font-body: "Hanken Grotesk", sans-serif;
  --font-script: "Yellowtail", cursive;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--yellow);
  color: var(--ink);
}

.wrap {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

/* ---------- header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(247, 244, 236, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
}

.brand svg {
  width: 34px;
  height: auto;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.brand:hover svg {
  transform: rotate(-8deg) translateY(-2px);
}

.brand-name {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
}

.brand-name .works {
  font-family: var(--font-script);
  font-weight: 400;
  font-size: 21px;
  color: #d9b000;
  margin-left: 2px;
}

.site-nav {
  display: flex;
  gap: 28px;
}

.site-nav a {
  color: var(--ink);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* ---------- hero ---------- */

.hero {
  position: relative;
  padding: 56px 0 80px;
  overflow: hidden;
  background-image: radial-gradient(rgba(25, 25, 25, 0.07) 1.2px, transparent 1.2px);
  background-size: 26px 26px;
}

.hero .wrap {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  opacity: 0;
  animation: rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
}

.duck-badge {
  position: relative;
  width: min(340px, 80%);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 24px 60px rgba(217, 176, 0, 0.35);
}

.duck-badge::before {
  content: "";
  position: absolute;
  inset: -24px;
  border: 2px dashed rgba(25, 25, 25, 0.25);
  border-radius: 50%;
  animation: spin 40s linear infinite;
}

.duck-badge > svg {
  width: 52%;
  height: auto;
  animation: bob 5s ease-in-out infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.badge-sticker {
  position: absolute;
  top: -6px;
  left: -34px;
  background: var(--ink);
  color: var(--paper);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 10px 18px;
  border-radius: 999px;
  transform: rotate(-9deg);
  white-space: nowrap;
}

.badge-sticker.alt {
  top: auto;
  left: auto;
  bottom: 4px;
  right: -28px;
  background: var(--pink);
  transform: rotate(6deg);
}

.badge-dot {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--pink);
  top: 14%;
  right: 4%;
}

.badge-dot.small {
  width: 10px;
  height: 10px;
  background: var(--ink);
  top: auto;
  bottom: 18%;
  left: 0;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 28px;
}

.kicker::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--pink);
}

.hero h1 {
  font-size: clamp(44px, 7.5vw, 92px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.02;
  max-width: 11ch;
}

.hero h1 .script {
  font-family: var(--font-script);
  font-weight: 400;
  font-size: 0.94em;
  color: #d9b000;
  letter-spacing: 0;
  padding-right: 0.12em;
}

.hero-sub {
  margin-top: 30px;
  max-width: 54ch;
  font-size: 19px;
  color: var(--muted);
}

.hero-actions {
  margin-top: 40px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--ink);
  color: var(--paper);
}

.btn-primary:hover {
  box-shadow: 0 10px 24px rgba(25, 25, 25, 0.22);
}

.btn-ghost {
  border: 1.5px solid var(--ink);
  color: var(--ink);
}

.btn-ghost:hover {
  background: var(--yellow);
  border-color: var(--yellow);
}

/* staggered reveal on load */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: rise 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.reveal:nth-child(2) { animation-delay: 0.12s; }
.reveal:nth-child(3) { animation-delay: 0.24s; }
.reveal:nth-child(4) { animation-delay: 0.36s; }
.reveal:nth-child(5) { animation-delay: 0.48s; }

@keyframes rise {
  to {
    opacity: 1;
    transform: none;
  }
}

/* ---------- marquee ---------- */

.marquee {
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
  padding: 16px 0;
}

.marquee-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: scroll 28s linear infinite;
}

.marquee-track span {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.marquee-track span::after {
  content: "✦";
  color: var(--yellow);
  margin-left: 48px;
}

@keyframes scroll {
  to { transform: translateX(-50%); }
}

/* ---------- stats ---------- */

.stats {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stats .wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.stat {
  padding: 38px 24px;
  text-align: center;
}

.stat + .stat {
  border-left: 1px solid var(--line);
}

.stat strong {
  display: block;
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.stat span {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- sections ---------- */

.section {
  padding: 96px 0;
}

.section-title {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 18px;
}

.section-lead {
  color: var(--muted);
  font-size: 18px;
  max-width: 58ch;
  margin-bottom: 48px;
}

/* ---------- product card ---------- */

.product-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  background: var(--yellow);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(217, 176, 0, 0.35);
}

.product-info {
  padding: 52px 48px;
}

.product-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--yellow);
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 22px;
}

.product-info h3 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin-bottom: 16px;
}

.product-info p {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(25, 25, 25, 0.78);
  max-width: 46ch;
}

.product-meta {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.price {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.price small {
  font-size: 14px;
  font-weight: 600;
  color: rgba(25, 25, 25, 0.6);
  margin-right: 6px;
}

.product-art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.45), transparent 55%),
    #f2c400;
  min-height: 280px;
  overflow: hidden;
}

.product-art svg {
  width: 200px;
  height: auto;
  filter: drop-shadow(0 14px 26px rgba(25, 25, 25, 0.18));
  animation: bob 4.5s ease-in-out infinite;
}

@keyframes bob {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(-3deg); }
}

.waveform {
  position: absolute;
  bottom: 34px;
  left: 0;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 6px;
  height: 40px;
  opacity: 0.35;
}

.waveform i {
  width: 5px;
  border-radius: 3px;
  background: var(--ink);
  animation: wave 1.4s ease-in-out infinite;
}

.waveform i:nth-child(odd) { height: 60%; }
.waveform i:nth-child(even) { height: 100%; animation-delay: 0.2s; }
.waveform i:nth-child(3n) { height: 35%; animation-delay: 0.4s; }

@keyframes wave {
  0%, 100% { transform: scaleY(0.5); }
  50% { transform: scaleY(1); }
}

/* ---------- about ---------- */

.about {
  border-top: 1px solid var(--line);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.about-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  background: #fffdf6;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.about-card:hover {
  transform: translateY(-4px);
  border-color: var(--ink);
}

.about-card .card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.about-card .num {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: rgba(25, 25, 25, 0.35);
}

.about-card .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--pink);
}

.about-card:nth-child(2) .dot { background: var(--yellow); }
.about-card:nth-child(3) .dot { background: var(--ink); }

.about-card h4 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

.about-card p {
  font-size: 15.5px;
  color: var(--muted);
}

/* ---------- contact ---------- */

.contact {
  border-top: 1px solid var(--line);
  text-align: center;
}

.contact .kicker {
  justify-content: center;
}

.contact .kicker::before {
  background: var(--yellow);
}

.contact-duck {
  width: 64px;
  height: auto;
  margin-bottom: 22px;
  animation: bob 5s ease-in-out infinite;
}

.email-link {
  display: inline-block;
  margin-top: 10px;
  font-size: clamp(26px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 4px solid var(--yellow);
  padding-bottom: 6px;
  transition: border-color 0.25s ease, color 0.25s ease;
  word-break: break-all;
}

.email-link:hover {
  border-color: var(--pink);
  color: var(--pink);
}

.contact-note {
  margin-top: 26px;
  color: var(--muted);
  font-size: 16px;
}

/* ---------- footer ---------- */

.site-footer {
  background: var(--ink);
  color: rgba(247, 244, 236, 0.85);
  padding: 64px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(247, 244, 236, 0.15);
}

.site-footer .brand {
  color: var(--paper);
  margin-bottom: 18px;
}

.footer-col h5 {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(247, 244, 236, 0.5);
  margin-bottom: 16px;
}

.footer-col p,
.footer-col address {
  font-style: normal;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(247, 244, 236, 0.75);
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  color: rgba(247, 244, 236, 0.85);
  text-decoration: none;
  font-size: 15px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.footer-col a:hover {
  color: var(--yellow);
  border-color: var(--yellow);
}

.footer-bottom {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13.5px;
  color: rgba(247, 244, 236, 0.5);
}

/* ---------- app page (Video to Text workspace) ---------- */

.app-main {
  padding: 56px 0 90px;
  background-image: radial-gradient(rgba(25, 25, 25, 0.06) 1.2px, transparent 1.2px);
  background-size: 26px 26px;
}

.app-main h1 {
  font-size: clamp(38px, 5.5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.app-sub {
  margin-top: 16px;
  color: var(--muted);
  font-size: 18px;
  max-width: 56ch;
}

.workspace {
  margin-top: 44px;
  background: #fffdf6;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 16px 44px rgba(25, 25, 25, 0.06);
}

.tabs {
  display: inline-flex;
  background: #efeadd;
  border-radius: 999px;
  padding: 5px;
  margin-bottom: 24px;
}

.tab {
  border: 0;
  background: transparent;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  color: var(--muted);
  padding: 10px 22px;
  border-radius: 999px;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease;
}

.tab.active {
  background: var(--ink);
  color: var(--paper);
}

.dropzone {
  border: 2px dashed rgba(25, 25, 25, 0.25);
  border-radius: 18px;
  padding: 56px 24px;
  text-align: center;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.dropzone.dragover {
  border-color: var(--ink);
  background: rgba(255, 213, 39, 0.12);
}

.drop-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 26px;
  animation: bob 4s ease-in-out infinite;
}

.dropzone h3 {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.dropzone p {
  color: var(--muted);
  font-size: 15px;
  margin: 6px 0 24px;
}

.dropzone .file-name {
  display: inline-block;
  margin-top: 18px;
  font-size: 14.5px;
  font-weight: 700;
  background: var(--yellow);
  padding: 8px 18px;
  border-radius: 999px;
}

.link-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.link-row input {
  flex: 1;
  min-width: 220px;
  border: 1.5px solid rgba(25, 25, 25, 0.25);
  border-radius: 999px;
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 16px;
  padding: 14px 24px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s ease;
}

.link-row input:focus {
  border-color: var(--ink);
}

.workspace-note {
  margin-top: 18px;
  color: var(--muted);
  font-size: 14.5px;
}

.status {
  margin-top: 24px;
}

.status-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 700;
}

.spinner {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  border: 3px solid rgba(25, 25, 25, 0.15);
  border-top-color: var(--ink);
  border-radius: 50%;
  animation: rotate 0.8s linear infinite;
}

@keyframes rotate {
  to { transform: rotate(360deg); }
}

.progress {
  margin-top: 14px;
  height: 8px;
  background: #efeadd;
  border-radius: 999px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  width: 0%;
  background: var(--ink);
  border-radius: 999px;
  transition: width 0.3s ease;
}

.progress.indeterminate .progress-bar {
  width: 30%;
  animation: slide 1.3s linear infinite;
}

@keyframes slide {
  from { margin-left: -30%; }
  to { margin-left: 100%; }
}

.error-note {
  margin-top: 18px;
  color: var(--pink);
  font-size: 15px;
  font-weight: 600;
}

.result-panel {
  margin-top: 36px;
  background: #fffdf6;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: 0 16px 44px rgba(25, 25, 25, 0.06);
}

.result-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.result-head h2 {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.result-meta {
  color: var(--muted);
  font-size: 14.5px;
}

.result-text {
  width: 100%;
  min-height: 220px;
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 20px;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--paper);
  resize: vertical;
  outline: none;
  box-sizing: border-box;
}

.result-text:focus {
  border-color: var(--ink);
}

.result-actions {
  display: flex;
  gap: 12px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.btn-small {
  padding: 11px 22px;
  font-size: 14.5px;
}

.recent {
  margin-top: 64px;
}

.recent-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.recent-item {
  border: 1px solid var(--line);
  background: #fffdf6;
  border-radius: var(--radius);
  padding: 22px 26px;
}

.recent-item-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.recent-item h4 {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  word-break: break-all;
}

.recent-item time {
  font-size: 13px;
  color: var(--muted);
  white-space: nowrap;
}

.recent-item .snippet {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.6;
}

.ri-actions {
  display: flex;
  gap: 18px;
  margin-top: 12px;
}

.link-btn {
  background: none;
  border: 0;
  padding: 0;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  border-bottom: 2px solid var(--yellow);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.link-btn:hover {
  color: var(--pink);
  border-color: var(--pink);
}

.recent h2 {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}

.recent-empty {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffdf6;
  padding: 36px 30px;
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 16px;
}

.recent-empty svg {
  width: 40px;
  height: auto;
  flex-shrink: 0;
  opacity: 0.7;
}

/* ---------- product landing: steps / pricing / faq ---------- */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.step-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffdf6;
  padding: 34px 30px;
}

.step-card .step-num {
  display: inline-block;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.1em;
  background: var(--yellow);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.step-card h4 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

.step-card p {
  font-size: 15.5px;
  color: var(--muted);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffdf6;
  padding: 38px 32px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.plan:hover {
  transform: translateY(-4px);
}

.plan.best {
  background: var(--yellow);
  border-color: var(--yellow);
  box-shadow: 0 22px 50px rgba(217, 176, 0, 0.3);
}

.plan-tag {
  position: absolute;
  top: -14px;
  left: 32px;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--yellow);
  padding: 7px 14px;
  border-radius: 999px;
}

.plan h3 {
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.plan-desc {
  margin-top: 6px;
  font-size: 14.5px;
  color: var(--muted);
}

.plan.best .plan-desc {
  color: rgba(25, 25, 25, 0.65);
}

.plan-price {
  margin-top: 26px;
  font-size: 46px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}

.plan-price small {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0;
  color: var(--muted);
  margin-left: 6px;
}

.plan.best .plan-price small {
  color: rgba(25, 25, 25, 0.65);
}

.plan-sub {
  margin-top: 8px;
  font-size: 13.5px;
  color: var(--muted);
}

.plan.best .plan-sub {
  color: rgba(25, 25, 25, 0.65);
}

.plan .btn {
  margin-top: 30px;
  text-align: center;
}

.included {
  margin-top: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffdf6;
  padding: 38px 36px;
}

.included h3 {
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}

.included > p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 24px;
}

.included ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 32px;
}

.included li {
  font-size: 15.5px;
  font-weight: 600;
  padding-left: 28px;
  position: relative;
}

.included li::before {
  content: "✓";
  position: absolute;
  left: 0;
  font-weight: 800;
  color: var(--pink);
}

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

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

.faq-list summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 40px 22px 0;
  font-size: 17.5px;
  font-weight: 700;
  letter-spacing: -0.01em;
  position: relative;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 26px;
  font-weight: 600;
  color: var(--muted);
  transition: transform 0.25s ease;
}

.faq-list details[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
  color: var(--pink);
}

.faq-list details p {
  padding: 0 0 24px;
  max-width: 70ch;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

@media (max-width: 880px) {
  .steps-grid,
  .features-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .included ul {
    grid-template-columns: 1fr;
  }
}

/* ---------- policy pages ---------- */

.policy {
  padding: 80px 0 100px;
}

.policy h1 {
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 14px;
}

.policy .updated {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 48px;
}

.policy h2 {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin: 44px 0 16px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.policy p,
.policy li {
  font-size: 16.5px;
  line-height: 1.75;
  color: #3a372f;
  margin-bottom: 14px;
  max-width: 76ch;
}

.policy ul {
  padding-left: 24px;
  margin-bottom: 18px;
}

.policy a {
  color: var(--pink);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.policy table {
  border-collapse: collapse;
  margin: 8px 0 22px;
  width: 100%;
  max-width: 760px;
}

.policy th,
.policy td {
  border: 1px solid var(--line);
  padding: 12px 16px;
  font-size: 15.5px;
  line-height: 1.6;
  text-align: left;
  vertical-align: top;
  color: #3a372f;
}

.policy th {
  background: #efeadd;
  font-weight: 700;
  color: var(--ink);
  width: 220px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 36px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
}

.back-link:hover {
  color: var(--pink);
}

/* ---------- responsive ---------- */

@media (max-width: 880px) {
  .hero .wrap {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .hero-visual {
    order: 2;
  }

  .duck-badge {
    width: min(260px, 70%);
  }

  .badge-sticker {
    left: -10px;
  }

  .badge-sticker.alt {
    right: -10px;
  }

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

  .product-art {
    min-height: 240px;
    order: -1;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 640px) {
  .site-nav {
    gap: 18px;
  }

  .site-nav a {
    font-size: 14px;
  }

  .hero {
    padding: 44px 0 56px;
  }

  .stats .wrap {
    grid-template-columns: 1fr;
  }

  .stat + .stat {
    border-left: none;
    border-top: 1px solid var(--line);
  }

  .product-info {
    padding: 36px 28px;
  }

  .section {
    padding: 68px 0;
  }

  .policy th {
    width: auto;
  }
}

@media (max-width: 460px) {
  .site-header .brand-name {
    display: none;
  }
}
