:root {
  --about-gold: #d8aa3c;
  --about-cream: #f7f2e9;
  --about-ink: #2a1c13;
  --about-font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { background: #0b0907; }
body {
  margin: 0;
  background:
    linear-gradient(rgba(7, 5, 4, 0.58), rgba(7, 5, 4, 0.68)),
    url('/images/bg/hidden-cask-bg5.jpg') center top / cover fixed;
  color: var(--about-cream);
  font-family: var(--about-font);
}
a { color: inherit; }

.about-shell {
  width: min(1060px, calc(100% - 40px));
  margin: 0 auto;
  padding-top: 20px;
}

.about-topbar {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: #ded1bd;
  font-size: 12px;
  font-weight: 800;
}
.about-topbar a { text-decoration: none; }
.about-topbar a:last-child { color: #e7c57b; }
.about-topbar span { margin-left: 7px; }

.about-card {
  overflow: hidden;
  border: 1px solid rgba(225, 195, 108, 0.4);
  border-radius: 28px;
  box-shadow: 0 30px 85px rgba(0, 0, 0, 0.48);
}

.about-hero {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: center;
  padding: clamp(38px, 7vw, 76px);
  background:
    radial-gradient(circle at 18% 12%, rgba(216, 170, 60, 0.1), transparent 25rem),
    linear-gradient(145deg, #211f1c, #121211);
}

.about-hero img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid rgba(231, 197, 123, 0.42);
  border-radius: 50%;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.about-eyebrow {
  margin: 0 0 10px;
  color: #dcb86b;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.about-hero h1,
.about-content h2 {
  margin: 0;
  letter-spacing: -0.05em;
}

.about-hero h1 {
  color: #ffffff;
  font-size: clamp(48px, 8vw, 82px);
  line-height: 0.95;
}

.about-lead {
  max-width: 680px;
  margin: 22px 0 0;
  color: #d8cbb5;
  font-size: 17px;
  line-height: 1.65;
}

.about-section {
  padding: clamp(44px, 7vw, 76px);
}

.about-section-heading {
  max-width: 760px;
}

.about-section h2 {
  margin: 0;
  font-size: clamp(38px, 6vw, 62px);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.about-prose {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 5vw, 54px);
  margin-top: 32px;
}

.about-prose p,
.about-future-copy > p,
.about-platform-note {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
}

.about-origin {
  background: var(--about-cream);
  color: var(--about-ink);
}
.about-origin .about-eyebrow,
.about-platform .about-eyebrow,
.about-future .about-eyebrow { color: #8a5b22; }
.about-origin .about-prose { color: #76685c; }

.about-evolution {
  background: #dfb256;
  color: #2b1b0e;
}
.about-evolution .about-eyebrow { color: #684214; }
.about-evolution .about-prose { color: #5c3d21; }

.about-platform {
  background: #f7f2e9;
  color: var(--about-ink);
}

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

.about-feature-list article {
  min-height: 245px;
  padding: 27px 24px;
  border: 1px solid #5a402c;
  border-radius: 16px;
  background: #24170f;
  color: #ffffff;
}

.about-feature-list span {
  display: block;
  color: #e4b84f;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.about-feature-list h3 {
  margin: 26px 0 10px;
  font-size: 24px;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.about-feature-list p {
  margin: 0;
  color: #c9beb5;
  font-size: 13px;
  line-height: 1.65;
}

.about-platform-note {
  margin-top: 24px;
  padding: 20px 22px;
  border-left: 3px solid var(--about-gold);
  background: #ffffff;
  color: #665649;
}

.about-email {
  background:
    radial-gradient(circle at 85% 10%, rgba(216, 170, 60, 0.1), transparent 25rem),
    linear-gradient(145deg, #211f1c, #121211);
  color: #ffffff;
}
.about-email .about-prose { color: #d8cbb5; }
.about-email .about-clarity {
  grid-column: 1 / -1;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: #aa9d8d;
  font-size: 12px;
}
.about-email .about-clarity a {
  color: #e7c57b;
  text-underline-offset: 3px;
}

.about-future {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.82fr);
  gap: clamp(30px, 6vw, 64px);
  align-items: center;
  background: var(--about-cream);
  color: var(--about-ink);
}
.about-future-copy > p:not(.about-eyebrow) {
  margin-top: 20px;
  color: #76685c;
}
.about-early-adopters {
  padding: clamp(28px, 4vw, 40px);
  border: 1px solid #d0ae6d;
  border-radius: 18px;
  background: #efe0c3;
}
.about-early-adopters h3 {
  margin: 0;
  color: #2b1c10;
  font-size: clamp(27px, 4vw, 38px);
  line-height: 1.02;
  letter-spacing: -0.04em;
}
.about-early-adopters > p:last-child {
  margin: 18px 0 0;
  color: #654825;
  font-size: 14px;
  line-height: 1.65;
}

.about-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  padding: 24px clamp(28px, 7vw, 70px);
  background: #e8ddcc;
}
.about-actions a {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 13px;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}
.about-secondary {
  border: 1px solid #c6b69f;
  background: rgba(255, 255, 255, 0.62);
  color: #5b4635;
}
.about-primary {
  border: 1px solid #e5ba59;
  background: linear-gradient(135deg, #efc659, #bd7b1d);
  color: #1a1109;
  box-shadow: 0 10px 24px rgba(99, 61, 18, 0.18);
}
.about-primary span { margin-left: 10px; }

body > .hc-footer {
  width: min(1060px, calc(100% - 40px));
  margin: 0 auto 30px;
  padding: 30px 0 0;
  color: rgba(255, 248, 232, 0.72);
  font-size: 12px;
  text-align: center;
}
.hc-footer-main, .hc-footer-links, .catalogue-social {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 18px;
}
.hc-footer a { color: rgba(255, 248, 232, 0.82); text-decoration: none; }
.catalogue-social { margin-top: 12px; }
.catalogue-social > span { color: #e7c57b !important; font-size: 9px; font-weight: 900; letter-spacing: 0.14em; text-transform: uppercase; }
.hc-footer-responsibility { max-width: 780px; margin: 12px auto 0; color: rgba(255, 248, 232, 0.56); font-size: 11px; line-height: 1.55; }

@media (max-width: 640px) {
  body { background-attachment: scroll; }
  .about-shell { width: calc(100% - 16px); padding-top: 8px; }
  .about-topbar { min-height: 52px; padding: 0 6px; }
  .about-card { border-radius: 20px; }
  .about-hero { grid-template-columns: 1fr; padding: 38px 24px; }
  .about-hero img { width: 112px; }
  .about-section { padding: 42px 24px; }
  .about-prose, .about-feature-list, .about-future { grid-template-columns: 1fr; }
  .about-feature-list article { min-height: 0; }
  .about-actions { display: grid; padding: 22px 20px; }
  .about-actions a { width: 100%; }
  body > .hc-footer { width: calc(100% - 20px); }
}
