@font-face {
  font-family: "Hero New";
  src: url("../fonts/hero-new/Hero%20New%20Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Hero New";
  src: url("../fonts/hero-new/Hero%20New%20Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Hero New";
  src: url("../fonts/hero-new/Hero%20New%20SemiBold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Hero New";
  src: url("../fonts/hero-new/Hero%20New%20Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-brand-yellow: #ffcb05;
  --color-brand-yellow-hover: #e3b400;
  --color-ink: #090909;
  --color-ink-soft: #1a1a1a;
  --color-ink-2: #2a2a2a;
  --color-paper: #ffffff;
  --color-muted: #f4f4f4;
  --color-muted-2: #ececec;
  --color-line: rgba(9, 9, 9, 0.12);
  --color-line-dark: rgba(255, 255, 255, 0.12);
  --color-line-dark-strong: rgba(255, 255, 255, 0.22);
  --font-display: "Hero New", system-ui, sans-serif;
  --font-body: "Hero New", system-ui, sans-serif;
  --font-mono: "Hero New", system-ui, sans-serif;
  --section-y-sm: clamp(3.5rem, 6vw, 5rem);
  --section-y: clamp(5rem, 9vw, 8rem);
  --section-y-lg: clamp(7rem, 12vw, 11rem);
  --radius-card: 0;
  --radius-pill: 9999px;
  color-scheme: light;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  scrollbar-gutter: stable;
}

body {
  margin: 0;
  background: var(--color-paper);
  color: var(--color-ink);
  font-family: var(--font-body);
  line-height: 1.55;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  line-height: 1.05;
  font-weight: 700;
}

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

*:focus-visible {
  outline: 2px solid var(--color-brand-yellow);
  outline-offset: 2px;
  border-radius: 2px;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.display-xxl {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 9vw, 7.5rem);
  line-height: 0.96;
  letter-spacing: -0.035em;
  font-weight: 700;
}

.display-xl {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 6vw, 5rem);
  line-height: 1;
  letter-spacing: -0.03em;
  font-weight: 700;
}

.display-l {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: 700;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0.7;
}

/* Greek copy stays in normal case — no faux caps from text-transform. */
html[lang="el"] .eyebrow,
html[lang="el"] .wm-form__field,
html[lang="el"] .wm-form__success-eyebrow,
html[lang="el"] .cp-tier__category-label,
html[lang="el"] .cp-pay__label {
  text-transform: none;
  letter-spacing: 0.06em;
}

html[lang="el"] .eyebrow {
  letter-spacing: 0.08em;
}

.numeral {
  font-family: var(--font-display);
  font-feature-settings: "tnum", "lnum";
  font-variant-numeric: tabular-nums lining-nums;
  letter-spacing: -0.04em;
}

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

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

.surface-muted {
  background: var(--color-muted);
  color: var(--color-ink);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.4rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.97rem;
  letter-spacing: -0.005em;
  line-height: 1;
  border: 1.5px solid currentColor;
  border-radius: 0;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
  cursor: pointer;
  text-align: left;
}

.btn-primary {
  background: var(--color-brand-yellow);
  color: var(--color-ink);
  border-color: var(--color-brand-yellow);
}

.btn-primary:hover {
  background: var(--color-brand-yellow-hover);
  color: var(--color-ink);
  border-color: var(--color-brand-yellow-hover);
  transform: translateY(-1px);
}

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

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

.btn-ghost {
  background: transparent;
  color: var(--color-ink);
  border-color: var(--color-ink);
}

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

.btn-ghost-light {
  background: transparent;
  color: var(--color-paper);
  border-color: var(--color-paper);
}

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

.container-edge {
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 3rem);
}

.container-text {
  width: 100%;
  max-width: 760px;
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--color-ink);
  color: var(--color-brand-yellow);
  padding: 0.6rem 1rem;
  font-family: var(--font-display);
  font-weight: 600;
  z-index: 1000;
  transition: top 160ms ease;
}

.skip-link:focus { top: 1rem; }

.flag-icon {
  display: inline-block;
  flex-shrink: 0;
  vertical-align: middle;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 3px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.28);
}

.wa-icon {
  display: inline-block;
  flex-shrink: 0;
  vertical-align: middle;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: saturate(160%) blur(10px);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--color-line);
}

.site-header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

@media (min-width: 768px) {
  .site-header__bar { height: 88px; }
}

.brand {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

/* WooCommerce ships `.woocommerce-page img { height: auto }`, which outranks a single class and collapsed the logo
   to 0x0 on My account, Cart, Checkout and Shop: an SVG with no resolvable ratio inside a line-height:0 flex parent
   has nothing to compute a height from. The .brand prefix takes the specificity back. */
.brand .brand__logo {
  height: 32px;
  width: auto;
  display: block;
}

.brand .brand__logo--light { display: none; }

@media (min-width: 768px) {
  .brand .brand__logo { height: 40px; }
}

.site-header__right {
  display: flex;
  align-items: center;
  gap: clamp(0.5rem, 2vw, 1.25rem);
}

.site-header .flag-icon {
  border-color: rgba(9, 9, 9, 0.18);
  box-shadow: none;
}

/* Desktop nav */
.site-nav { display: none; }

.site-nav__list {
  display: flex;
  align-items: center;
  gap: clamp(1.1rem, 2.2vw, 2rem);
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav__link {
  position: relative;
  display: inline-block;
  white-space: nowrap;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  line-height: 1;
  padding: 0.4rem 0;
  color: var(--color-ink);
  transition: color 160ms ease;
}

.site-nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--color-brand-yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.site-nav__link:hover,
.site-nav__link.is-current {
  color: var(--color-ink);
}

.site-nav__link:hover::after,
.site-nav__link.is-current::after {
  transform: scaleX(1);
}

.site-nav__burger {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  height: 44px;
  padding: 0 0.85rem;
  background: transparent;
  color: var(--color-ink);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  border: 1.5px solid var(--color-ink);
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.site-nav__burger:hover {
  background: var(--color-ink);
  color: var(--color-brand-yellow);
}

.site-nav__burger-bars {
  display: inline-grid;
  gap: 5px;
}

.site-nav__burger-bars span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: currentColor;
  transition: transform 220ms ease, opacity 160ms ease;
  transform-origin: center;
}

.site-nav__burger[aria-expanded="true"] .site-nav__burger-bars span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.site-nav__burger[aria-expanded="true"] .site-nav__burger-bars span:nth-child(2) {
  opacity: 0;
}

.site-nav__burger[aria-expanded="true"] .site-nav__burger-bars span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.site-nav__burger-label { line-height: 1; }

@media (min-width: 1140px) {
  .site-header__bar {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 2rem;
  }
  .brand { justify-self: start; }
  .site-nav { display: block; justify-self: end; }
  .site-header__right { justify-self: end; }
  .site-nav__burger { display: none; }
}

/* Mobile overlay */
.site-nav-panel {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--color-ink);
  color: var(--color-paper);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  overflow-y: auto;
  transition: opacity 260ms ease, visibility 0ms linear 260ms;
}

.site-nav-panel.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 260ms ease, visibility 0ms linear 0ms;
}

.site-nav-panel__inner {
  min-height: 100%;
  padding-top: clamp(6.5rem, 12vw, 8rem);
  padding-bottom: clamp(2rem, 5vw, 3.5rem);
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 6vw, 4rem);
}

.site-nav-panel__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.site-nav-panel__link {
  display: flex;
  align-items: baseline;
  gap: clamp(1rem, 4vw, 1.75rem);
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--color-line-dark);
  color: var(--color-paper);
  transition: color 160ms ease, padding-left 220ms ease;
}

.site-nav-panel__link:hover,
.site-nav-panel__link.is-current {
  color: var(--color-brand-yellow);
  padding-left: 0.4rem;
}

.site-nav-panel__num {
  font-size: clamp(1.15rem, 3vw, 1.6rem);
  opacity: 0.5;
  min-width: 2.4ch;
}

.site-nav-panel__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 8vw, 3.5rem);
  letter-spacing: -0.03em;
  line-height: 1;
}

.site-nav-panel__meta {
  margin-top: auto;
}

.site-nav-panel__meta .eyebrow {
  color: var(--color-brand-yellow);
  opacity: 1;
  margin-bottom: 0.85rem;
}

.site-nav-panel__wa,
.site-nav-panel__mail {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--color-paper);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  padding-block: 0.25rem;
  transition: color 160ms ease;
}

.site-nav-panel__wa:hover,
.site-nav-panel__mail:hover {
  color: var(--color-brand-yellow);
}

.site-nav-panel__mail {
  display: block;
  font-weight: 500;
  opacity: 0.78;
}

html.nav-open {
  overflow: hidden;
}

html.nav-open .site-header {
  background: transparent;
  border-color: transparent;
  z-index: 210;
}

html.nav-open .cookie {
  opacity: 0;
  pointer-events: none;
}

html.nav-open .brand__logo--dark { display: none; }
html.nav-open .brand__logo--light { display: block; }

html.nav-open .site-header__lang {
  opacity: 0.55;
  border-color: transparent;
}

html.nav-open .site-header__lang.is-active {
  opacity: 1;
  border-color: var(--color-paper);
}

html.nav-open .site-header__account {
  color: var(--color-paper);
  border-color: transparent;
}

html.nav-open .site-header__account:hover,
html.nav-open .site-header__account:focus-visible {
  border-color: var(--color-paper);
}

html.nav-open .site-header .flag-icon {
  border-color: rgba(255, 255, 255, 0.28);
}

html.nav-open .site-nav__burger {
  color: var(--color-paper);
  border-color: var(--color-paper);
}

html.nav-open .site-nav__burger:hover {
  background: var(--color-paper);
  color: var(--color-ink);
}

.hello--page {
  min-height: calc(100svh - 88px);
}

.site-header__langs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-header__lang {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem;
  border: 1.5px solid transparent;
  line-height: 0;
  opacity: 0.5;
  transition: opacity 160ms ease, border-color 160ms ease;
}

.site-header__lang:hover { opacity: 1; }

.site-header__lang.is-active {
  opacity: 1;
  border-color: var(--color-ink);
}

/* My Sites: the "build another one" button sits above the table, since the header button is gone once signed in. */
.wm-my-sites__new {
  margin: 0 0 1.25rem;
}

/* Real pages: My account, Cart, Checkout. WooCommerce brings its own markup; keep it inside the theme's measure. */
.page-content {
  padding: 3rem 0 5rem;
}

.page-content__wrap {
  max-width: 60rem;
}

.page-content__wrap a:not(.button) {
  text-decoration: underline;
}

.page-content__wrap form {
  margin-bottom: 2rem;
}

/* Signed in: initials, a greeting, and a popover with the account links. */
.site-header__user {
  position: relative;
  margin-left: 0.75rem;
}

.site-header__user-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.5rem 0.25rem 0.25rem;
  background: none;
  border: 1.5px solid transparent;
  color: var(--color-ink);
  font: inherit;
  font-size: 0.875rem;
  cursor: pointer;
  transition: border-color 160ms ease;
}

.site-header__user-btn:hover,
.site-header__user-btn:focus-visible,
.site-header__user-btn[aria-expanded="true"] {
  border-color: var(--color-ink);
}

.site-header__avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--color-ink);
  color: var(--color-paper);
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.02em;
}

.site-header__greeting {
  display: none;
  white-space: nowrap;
}

@media (min-width: 900px) {
  .site-header__greeting { display: inline; }
}

.site-header__popover {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  z-index: 60;
  min-width: 15rem;
  padding: 0.75rem 0;
  background: var(--color-paper);
  border: 1px solid var(--color-ink);
  box-shadow: 0 10px 30px rgb(9 9 9 / 12%);
  text-align: left;
}

.site-header__popover-head {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0 1rem 0.65rem;
  border-bottom: 1px solid rgb(9 9 9 / 12%);
}

.site-header__popover-name {
  font-weight: 600;
  font-size: 0.9375rem;
}

.site-header__popover-mail {
  font-size: 0.8125rem;
  opacity: 0.6;
  overflow-wrap: anywhere;
}

.site-header__popover-list {
  list-style: none;
  margin: 0;
  padding: 0.4rem 0;
}

.site-header__popover-list a,
.site-header__popover-out {
  display: block;
  padding: 0.45rem 1rem;
  font-size: 0.875rem;
  color: var(--color-ink);
  text-decoration: none;
}

.site-header__popover-list a:hover,
.site-header__popover-list a:focus-visible,
.site-header__popover-out:hover,
.site-header__popover-out:focus-visible {
  background: var(--color-muted);
}

.site-header__popover-out {
  border-top: 1px solid rgb(9 9 9 / 12%);
  margin-top: 0.4rem;
  padding-top: 0.65rem;
  font-weight: 600;
}

html.nav-open .site-header__user-btn { color: var(--color-paper); }
html.nav-open .site-header__avatar {
  background: var(--color-paper);
  color: var(--color-ink);
}

.site-header__account {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.75rem;
  padding: 0.4rem;
  border: 1.5px solid transparent;
  line-height: 0;
  color: var(--color-ink);
  opacity: 0.55;
  transition: opacity 160ms ease, border-color 160ms ease;
}

.site-header__account:hover,
.site-header__account:focus-visible {
  opacity: 1;
  border-color: var(--color-ink);
}

/* Intro */
.intro {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-top: clamp(3.5rem, 8vw, 7rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
  border-bottom: 1px solid var(--color-line);
  background: var(--color-paper);
}

.intro__bg {
  position: absolute;
  inset: -1px;
  z-index: -2;
  background-image:
    linear-gradient(to right, rgba(9, 9, 9, 0.07) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(9, 9, 9, 0.07) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: radial-gradient(
    circle 460px at var(--mx, 50%) var(--my, 32%),
    #000 0%,
    rgba(0, 0, 0, 0.35) 45%,
    transparent 72%
  );
  mask-image: radial-gradient(
    circle 460px at var(--mx, 50%) var(--my, 32%),
    #000 0%,
    rgba(0, 0, 0, 0.35) 45%,
    transparent 72%
  );
  transition: -webkit-mask-position 200ms linear;
}

.intro__glow {
  position: absolute;
  z-index: -1;
  top: -28%;
  left: 50%;
  width: min(96vw, 820px);
  aspect-ratio: 1.9 / 1;
  transform: translateX(-50%);
  background: radial-gradient(
    ellipse at center,
    rgba(255, 203, 5, 0.2) 0%,
    rgba(255, 203, 5, 0.07) 40%,
    transparent 70%
  );
  filter: blur(28px);
  animation: glow-drift 22s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes glow-drift {
  from { transform: translateX(-54%) translateY(-2%) scale(1); }
  to   { transform: translateX(-46%) translateY(4%) scale(1.12); }
}

.intro__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.intro__title {
  margin: 0;
  max-width: 22ch;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.9rem, 4.4vw, 3.9rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--color-ink-soft);
  text-wrap: balance;
}

.word {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  padding-bottom: 0.08em;
  margin-bottom: -0.08em;
  margin-right: 0.26em;
}

.word__in {
  display: inline-block;
  transform: translateY(115%);
  animation: word-rise 900ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: calc(140ms + var(--w) * 42ms);
}

@keyframes word-rise {
  to { transform: translateY(0); }
}

.intro__title strong {
  font-weight: 700;
  color: var(--color-ink);
  position: relative;
  z-index: 0;
}

.intro__title strong::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.05em;
  height: 0.06em;
  background: var(--color-brand-yellow);
  transform: scaleX(0);
  transform-origin: left center;
  animation: underline-draw 620ms cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
  animation-delay: calc(560ms + var(--w) * 42ms);
  z-index: -1;
}

@keyframes underline-draw {
  to { transform: scaleX(1); }
}

.intro__lead {
  margin: clamp(1.5rem, 3vw, 2.25rem) 0 0;
  max-width: 62ch;
  font-size: clamp(1.02rem, 1.15vw, 1.15rem);
  color: var(--color-ink-soft);
  animation: fade-up 800ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
  animation-delay: 380ms;
}

.intro__cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: clamp(1.75rem, 3vw, 2.5rem);
  animation: fade-up 800ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
  animation-delay: 500ms;
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.intro__scroll {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  height: 56px;
  width: 1px;
  background: var(--color-line);
  overflow: hidden;
}

.intro__scroll-line {
  display: block;
  width: 1px;
  height: 100%;
  background: var(--color-ink);
  animation: scroll-hint 2.4s cubic-bezier(0.6, 0, 0.4, 1) infinite;
}

@keyframes scroll-hint {
  0%   { transform: translateY(-100%); }
  60%  { transform: translateY(100%); }
  100% { transform: translateY(100%); }
}

@media (prefers-reduced-motion: reduce) {
  .intro__glow,
  .intro__scroll-line { animation: none; }
  .intro__lead,
  .intro__cta {
    animation: none;
    opacity: 1;
    transform: none;
  }
  .word__in {
    transform: none;
    animation: none;
  }
  .intro__title strong::after {
    transform: scaleX(1);
    animation: none;
  }
}

/* Cards (shared by the themes CTA card and blog links) */
.card {
  background: var(--color-paper);
  border: 1px solid var(--color-line);
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  padding-bottom: 2px;
  border-bottom: 2px solid var(--color-brand-yellow);
  transition: gap 160ms ease;
}

.card__link:hover { gap: 0.7rem; }

.card--cta {
  background: var(--color-brand-yellow);
  color: var(--color-ink);
  justify-content: center;
}

.card__cta-inner {
  padding: clamp(2rem, 4vw, 3.25rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.card__cta-eyebrow {
  opacity: 1;
  color: var(--color-ink);
}

.card__cta-heading {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.9rem, 3.4vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  max-width: 14ch;
}

.card__cta-body {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  max-width: 40ch;
}

.card__cta-btn { margin-top: 0.5rem; }

.card__cta-btn:hover {
  background: transparent;
  color: var(--color-ink);
  border-color: var(--color-ink);
}

/* Hello */
.hello {
  background: var(--color-ink);
  color: var(--color-paper);
  padding-block: var(--section-y);
}

.hello__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: start;
}

@media (min-width: 960px) {
  .hello__grid { grid-template-columns: 1fr 1.05fr; }
}

.hello__kicker {
  color: var(--color-brand-yellow);
  opacity: 1;
  margin-bottom: 0.75rem;
}

.hello__h {
  margin: 0;
  max-width: 16ch;
}

.hello__lead {
  margin: 1.25rem 0 0;
  color: rgba(255, 255, 255, 0.78);
  max-width: 42ch;
  line-height: 1.65;
}

.hello__direct {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  align-items: flex-start;
  margin-top: clamp(1.75rem, 3vw, 2.5rem);
  padding-top: clamp(1.5rem, 3vw, 2rem);
  border-top: 1px solid var(--color-line-dark);
}

.hello__mail {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.hello__email {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  transition: color 160ms ease;
}

.hello__email:hover { color: var(--color-brand-yellow); }

.hello__mail-hint {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}

.hello__form {
  background: var(--color-paper);
  color: var(--color-ink);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border: 1px solid var(--color-line-dark-strong);
}

/* 14-day trial */
.trial {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--color-ink);
  color: var(--color-paper);
  padding-block: var(--section-y);
}

.trial__glow {
  position: absolute;
  z-index: -1;
  pointer-events: none;
  top: -18%;
  right: -8%;
  width: min(72vw, 640px);
  aspect-ratio: 1;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 203, 5, 0.22) 0%,
    rgba(255, 203, 5, 0.07) 42%,
    transparent 70%
  );
  filter: blur(28px);
}

.trial__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.25rem, 5vw, 4.5rem);
  align-items: center;
}

@media (min-width: 960px) {
  .trial__grid {
    grid-template-columns: 1.05fr 0.95fr;
  }
}

.trial__kicker {
  color: var(--color-brand-yellow);
  opacity: 1;
  margin-bottom: 0.75rem;
}

.trial__h {
  margin: 0;
  max-width: 14ch;
}

.trial__lead {
  margin: 1.25rem 0 0;
  color: rgba(255, 255, 255, 0.78);
  max-width: 44ch;
  line-height: 1.65;
}

.trial__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: clamp(1.75rem, 3vw, 2.5rem);
}

@media (max-width: 640px) {
  .trial__cta {
    flex-direction: column;
    align-items: stretch;
  }
  .trial__cta .btn {
    width: 100%;
    justify-content: center;
  }
}

.trial__assurances {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.35rem;
}

.trial__assurances li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.trial__tick {
  width: 8px;
  height: 8px;
  flex-shrink: 0;
  background: var(--color-brand-yellow);
}

.trial__panel {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--color-line-dark-strong);
}

.trial__badge {
  background: var(--color-brand-yellow);
  color: var(--color-ink);
  padding: clamp(1.1rem, 2.6vw, 1.6rem) clamp(1.5rem, 3vw, 2.25rem);
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 0.85rem;
}

.trial__days {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(4.5rem, 10vw, 6.5rem);
  line-height: 0.82;
  letter-spacing: -0.06em;
}

.trial__badge-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  letter-spacing: -0.025em;
  line-height: 1.1;
  padding-bottom: 0.38em;
  max-width: 8ch;
}

.trial__steps {
  list-style: none;
  margin: 0;
  padding: clamp(1.25rem, 2.5vw, 1.75rem) clamp(1.35rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 0;
}

.trial__step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem 1.1rem;
  padding-block: 1.05rem;
  border-top: 1px solid var(--color-line-dark);
}

.trial__step:first-child {
  border-top: 0;
  padding-top: 0.15rem;
}

.trial__step:last-child {
  padding-bottom: 0.15rem;
}

.trial__step-num {
  font-size: 0.92rem;
  color: var(--color-brand-yellow);
  padding-top: 0.18rem;
  min-width: 2ch;
}

.trial__step-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.08rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 0.3rem;
  color: var(--color-paper);
}

.trial__step-body {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  line-height: 1.5;
  max-width: 36ch;
}

@media (prefers-reduced-motion: reduce) {
  .trial__glow { filter: none; }
}

/* Form */
.wm-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
}

@media (min-width: 640px) {
  .wm-form { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
}

.wm-form__field--full { grid-column: 1 / -1; }
.wm-form > * { min-width: 0; }

.wm-form--success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
  padding: clamp(2.5rem, 8vw, 3.5rem) clamp(1.5rem, 5vw, 2.5rem);
  background: var(--color-muted);
  border: 1.5px solid var(--color-ink);
  scroll-margin-top: 96px;
  animation: wm-form-success-in 420ms ease both;
}

@keyframes wm-form-success-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.wm-form__success-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  background: var(--color-brand-yellow);
  color: var(--color-ink);
  border: 1.5px solid var(--color-ink);
  flex-shrink: 0;
}

.wm-form__success-icon svg { width: 1.5rem; height: 1.5rem; }

.wm-form__success-body { display: flex; flex-direction: column; gap: 0.65rem; max-width: 28rem; }

.wm-form__success-eyebrow {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-ink-soft);
}

.wm-form__success-title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.25rem, 2.5vw, 1.55rem);
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--color-ink);
}

.wm-form__success-hint {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--color-ink-soft);
}

.wm-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-ink-soft);
}

.wm-form input,
.wm-form textarea {
  width: 100%;
  max-width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-ink);
  background: var(--color-paper);
  border: 1.5px solid var(--color-ink);
  padding: 0.85rem 1rem;
  text-transform: none;
  letter-spacing: normal;
  transition: background 160ms ease;
}

.wm-form input:focus,
.wm-form textarea:focus {
  outline: none;
  background: var(--color-muted);
}

.wm-form textarea {
  resize: vertical;
  min-height: 140px;
}

.wm-form__consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
  font-family: var(--font-body);
  text-transform: none;
  letter-spacing: normal;
  font-size: 0.92rem;
  color: var(--color-ink-soft);
}

.wm-form__consent-text {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.wm-form__consent input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--color-ink);
}

.wm-form__consent a {
  color: var(--color-ink);
  text-decoration: underline;
}

.wm-form__error,
.wm-form__msg--err {
  color: #b3261e;
  font-size: 0.9rem;
  font-family: var(--font-body);
  text-transform: none;
  letter-spacing: normal;
}

.wm-form__submit {
  justify-self: start;
  margin-top: 0.5rem;
}

.wm-form__submit:disabled {
  opacity: 0.7;
  cursor: progress;
}

.wm-form__turnstile {
  min-height: 65px;
}

/* Footer */
.site-footer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--color-ink);
  color: var(--color-paper);
  margin-top: 0;
  padding-top: 60px;
  border-top: 3px solid var(--color-brand-yellow);
}

.site-footer__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  padding-bottom: 60px;
}

@media (min-width: 980px) {
  .site-footer__grid {
    grid-template-columns: minmax(17rem, 0.95fr) minmax(0, 1.7fr);
    align-items: start;
  }
}

.site-footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 28rem;
}

.site-footer .brand .brand__logo {
  height: 36px;
}

@media (min-width: 768px) {
  .site-footer .brand .brand__logo { height: 42px; }
}

.site-footer__tagline {
  margin: 1.15rem 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
  line-height: 1.5;
  letter-spacing: -0.015em;
  max-width: 22ch;
}

.site-footer__cta {
  margin-top: 1.5rem;
}

.site-footer__facts {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.site-footer__facts li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  line-height: 1.35;
}

.site-footer__tick {
  width: 8px;
  height: 8px;
  flex-shrink: 0;
  background: var(--color-brand-yellow);
}

.site-footer__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.75rem, 3vw, 2.5rem) clamp(1.5rem, 3vw, 2.75rem);
}

.site-footer__col:last-child {
  grid-column: 1 / -1;
}

@media (min-width: 560px) {
  .site-footer__cols {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .site-footer__col:last-child {
    grid-column: auto;
  }
}

.site-footer__heading {
  margin: 0 0 1rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--color-brand-yellow);
  opacity: 1;
}

html[lang="el"] .site-footer__heading {
  text-transform: none;
  letter-spacing: 0.08em;
}

.site-footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.site-footer__list a {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: color 160ms ease;
}

.site-footer__list a:hover,
.site-footer__list a[aria-current="page"] {
  color: var(--color-brand-yellow);
}

.site-footer__hours {
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.85rem;
  line-height: 1.4;
}

.site-footer__mark {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4.75rem;
  z-index: 0;
  margin: 0;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  overflow: hidden;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.75rem, 14vw, 13rem);
  line-height: 0.74;
  letter-spacing: -0.06em;
  text-align: center;
  color: rgba(255, 255, 255, 0.02);
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.07);
  opacity: 0.45;
  user-select: none;
  pointer-events: none;
}

.site-footer__bottom {
  position: relative;
  z-index: 1;
  background: var(--color-ink);
  border-top: 1px solid var(--color-line-dark);
  padding-block: 1.25rem;
  padding-right: 6rem;
  display: grid;
  gap: 0.85rem 1.75rem;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.85rem;
}

@media (min-width: 860px) {
  .site-footer__bottom {
    grid-template-columns: auto 1fr;
    align-items: center;
  }
}

.site-footer__copy {
  margin: 0;
}

.site-footer__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.15rem 1.5rem;
}

@media (min-width: 860px) {
  .site-footer__meta { justify-content: flex-end; }
}

.site-footer__legal {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.15rem;
}

.site-footer__legal a {
  color: rgba(255, 255, 255, 0.62);
  transition: color 160ms ease;
}

.site-footer__legal a:hover,
.site-footer__legal a[aria-current="page"] {
  color: var(--color-brand-yellow);
}

.site-footer__top {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 70;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background: var(--color-brand-yellow);
  color: var(--color-ink);
  box-shadow: 0 10px 28px rgba(9, 9, 9, 0.22);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: background 160ms ease, transform 220ms ease, opacity 220ms ease, visibility 220ms ease;
}

.site-footer__top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.site-footer__top.is-visible:hover {
  background: var(--color-brand-yellow-hover);
  transform: translateY(-2px);
}

.site-footer__top svg {
  display: block;
}

@media (prefers-reduced-motion: reduce) {
  .site-footer__top,
  .site-footer__top.is-visible,
  .site-footer__top.is-visible:hover {
    transition: none;
    transform: none;
  }
}

@media (max-width: 639px) {
  .site-footer__cta {
    width: 100%;
    justify-content: center;
  }
}


/* Cookie */
.cookie {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  z-index: 90;
  max-width: 760px;
  margin: 0 auto;
  background: var(--color-ink);
  color: var(--color-paper);
  border: 1px solid var(--color-line-dark-strong);
  padding: 1.25rem 1.25rem 1.4rem;
  animation: cookie-in 320ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.cookie[hidden] { display: none; }

@keyframes cookie-in {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.cookie__inner {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .cookie__inner {
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 1.25rem;
  }
}

.cookie__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 0.3rem;
}

.cookie p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  margin: 0 0 0.4rem;
}

.cookie__learn {
  font-size: 0.85rem;
  color: var(--color-brand-yellow);
}

.cookie__actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

/* Legal */
.page-hero {
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
  border-bottom: 1px solid var(--color-line);
}

.page-hero__grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  align-items: start;
}

.page-hero__grid--no-num { grid-template-columns: 1fr; }

.page-hero__kicker { margin-bottom: 0.6rem; }
.page-hero__title { margin: 0; max-width: 22ch; }

.legal {
  padding-block: var(--section-y);
  border-bottom: 1px solid var(--color-line);
}

.legal__wrap { max-width: 70ch; }

.legal__wrap h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.35rem, 1.8vw, 1.7rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 2.5rem 0 1rem;
}

.legal__wrap h2:first-child { margin-top: 0; }

.legal__wrap p {
  color: var(--color-ink-soft);
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0 0 1rem;
}

.legal__wrap ul {
  margin: 0 0 1.5rem;
  padding-left: 1.4rem;
  list-style: disc outside;
}

.legal__wrap li {
  color: var(--color-ink-soft);
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0.5rem 0;
  padding-left: 0.4rem;
}

.legal__wrap li::marker { color: var(--color-brand-yellow); }

.legal__wrap a { text-decoration: underline; }

/* Pricing */
.cp-tiers {
  padding-top: clamp(2.5rem, 5vw, 4rem);
  padding-bottom: var(--section-y);
}

.cp-tiers__h {
  margin: 0 0 1rem;
  max-width: 22ch;
}

.cp-tiers__lead {
  margin: 0 0 1.75rem;
  max-width: 58ch;
  color: var(--color-ink-soft);
  font-size: 1.05rem;
  line-height: 1.55;
}

.cp-billing {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.cp-billing__label {
  border: 0;
  background: none;
  padding: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-ink-soft);
  cursor: pointer;
  transition: color 160ms ease;
}

.cp-billing__label.is-active,
.cp-billing__label:hover { color: var(--color-ink); }

.cp-billing__switch {
  position: relative;
  width: 3.25rem;
  height: 1.75rem;
  border: 0;
  border-radius: var(--radius-pill);
  background: var(--color-muted-2);
  cursor: pointer;
  flex-shrink: 0;
  transition: background 200ms ease;
}

.cp-billing__switch.is-yearly { background: var(--color-ink); }

.cp-billing__knob {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  background: var(--color-paper);
  box-shadow: 0 1px 3px rgba(9, 9, 9, 0.18);
  transition: transform 200ms ease;
}

.cp-billing__switch.is-yearly .cp-billing__knob {
  transform: translateX(1.5rem);
}

.cp-billing--plan {
  justify-content: flex-start;
  margin-bottom: 1.25rem;
}

.cp-plan {
  background: var(--color-paper);
  border: 2px solid var(--color-brand-yellow);
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 900px) {
  .cp-plan { grid-template-columns: minmax(280px, 2fr) 3fr; }
}

.cp-plan__side {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-bottom: 1px solid var(--color-line);
}

@media (min-width: 900px) {
  .cp-plan__side {
    border-bottom: 0;
    border-right: 1px solid var(--color-line);
  }
}

.cp-plan__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 2.4vw, 1.9rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 0.5rem;
}

.cp-plan__price {
  line-height: 1.1;
}

.cp-plan__includes {
  margin: 0.55rem 0 0;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--color-ink);
}

.cp-plan__price > div {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.25rem;
}

.cp-plan__amount {
  font-weight: 700;
  font-size: clamp(2.4rem, 5vw, 3.2rem);
}

.cp-plan__period {
  font-weight: 500;
  font-size: 1.1rem;
  opacity: 0.75;
}

.cp-plan__old {
  text-decoration: line-through;
  font-weight: 500;
  font-size: 1.2rem;
  opacity: 0.5;
  margin-right: 0.25rem;
}

.cp-plan__hint {
  flex-basis: 100%;
  line-height: 1.3;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--color-ink);
  background: var(--color-brand-yellow);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-pill);
  width: max-content;
  margin: 0.4rem 0 0;
}

.cp-plan__ideal {
  margin: 0;
  color: var(--color-ink-soft);
  font-size: 0.95rem;
  line-height: 1.5;
}

.cp-plan__actions {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cp-plan__cta,
.cp-plan__buy {
  width: 100%;
  justify-content: center;
}

.cp-plan__note {
  margin: 0;
  color: var(--color-ink-soft);
  font-size: 0.8rem;
  line-height: 1.45;
}

.cp-plan__features {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: var(--color-muted);
}

.cp-plan__features-h {
  margin: 0 0 1.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
}

.cp-plan__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem 2rem;
}

@media (min-width: 600px) {
  .cp-plan__grid { grid-template-columns: 1fr 1fr; }
}

.cp-tier__category-label {
  margin: 0 0 0.5rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-ink-soft);
  opacity: 0.75;
}

.cp-tier__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--color-ink);
}

.cp-tier__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  line-height: 1.45;
}

.cp-bullet {
  width: 8px;
  height: 8px;
  background: var(--color-brand-yellow);
  display: inline-block;
  flex-shrink: 0;
  margin-top: 0.35em;
}

/* Payment methods */
.cp-pay {
  margin-top: 0.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-line);
}

.cp-pay__label {
  margin: 0 0 0.6rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-ink-soft);
  opacity: 0.75;
}

.cp-pay__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cp-pay__item {
  width: 3.4rem;
  height: 1.55rem;
  border: 1px solid var(--color-line);
  border-radius: 4px;
  background: var(--color-paper);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-ink);
}

.cp-pay__item svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

/* FAQ */
.cp-faq {
  padding-block: var(--section-y);
  background: var(--color-muted);
}

.cp-faq__head {
  margin: 0 auto clamp(1.5rem, 3vw, 2.5rem);
  text-align: center;
}

.cp-faq__head .eyebrow { margin-bottom: 0.6rem; }

.cp-faq__h {
  margin: 0 auto;
  max-width: 20ch;
}

.cp-faq__list {
  max-width: 760px;
  margin: 0 auto;
  border-top: 1px solid var(--color-line-strong, var(--color-line));
}

.cp-faq__item {
  border-bottom: 1px solid var(--color-line-strong, var(--color-line));
}

.cp-faq__q {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  line-height: 1.35;
}

.cp-faq__q::-webkit-details-marker { display: none; }

.cp-faq__icon {
  position: relative;
  flex-shrink: 0;
  width: 1.1rem;
  height: 1.1rem;
}

.cp-faq__icon::before,
.cp-faq__icon::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  background: var(--color-ink);
  transition: transform 200ms ease;
}

.cp-faq__icon::before { width: 100%; height: 2px; }
.cp-faq__icon::after { width: 2px; height: 100%; }

.cp-faq__item[open] .cp-faq__icon::after { transform: rotate(90deg); }

.cp-faq__a {
  margin: 0;
  padding: 0 2.5rem 1.25rem 0;
  color: var(--color-ink-soft);
  line-height: 1.55;
  max-width: 62ch;
}

.cp-faq--page {
  padding-top: clamp(2.5rem, 5vw, 4rem);
}

.cp-faq__more {
  margin: clamp(1.75rem, 3vw, 2.5rem) auto 0;
  max-width: 760px;
  text-align: center;
  color: var(--color-ink-soft);
}

.cp-faq__more a {
  font-weight: 600;
  color: var(--color-ink);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.cp-faq__more a:hover { color: var(--color-ink-soft); }

/* Final buy section */
.cp-buy {
  padding-block: var(--section-y);
  background: var(--color-ink);
  color: var(--color-paper);
}

.cp-buy__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 900px) {
  .cp-buy__inner { grid-template-columns: 1.2fr 1fr; gap: 3rem; }
}

.cp-buy .eyebrow { color: var(--color-brand-yellow); margin-bottom: 0.6rem; }

.cp-buy__h {
  margin: 0 0 0.75rem;
  max-width: 16ch;
  color: var(--color-paper);
}

.cp-buy__lead {
  margin: 0;
  opacity: 0.8;
  font-size: 1.05rem;
}

.cp-buy__offer {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.cp-buy__prices {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.6rem 1rem;
  line-height: 1.1;
}

.cp-buy__price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.cp-buy__amount {
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 2.6rem);
}

.cp-buy__or {
  font-family: var(--font-display);
  font-weight: 600;
  opacity: 0.6;
}

.cp-buy .cp-plan__old { opacity: 0.45; }
.cp-buy .cp-plan__note { color: var(--color-paper); opacity: 0.6; }
.cp-buy .cp-plan__includes {
  flex-basis: 100%;
  color: var(--color-paper);
  opacity: 0.85;
  font-weight: 500;
}

.cp-buy__actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cp-buy__cta,
.cp-buy__buy {
  width: 100%;
  justify-content: center;
}

#subscription-plans[data-wm-interval="monthly"] .is-yearly,
#subscription-plans[data-wm-interval="yearly"] .is-monthly {
  display: none;
}

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

/* Hero facts strip (under the intro buttons) */
.intro__facts {
  list-style: none;
  margin: clamp(1.25rem, 2.5vw, 1.75rem) 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem 1.5rem;
  animation: fade-up 800ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
  animation-delay: 620ms;
}

.intro__facts li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.95rem;
  color: var(--color-ink-soft);
}

.intro__tick {
  width: 8px;
  height: 8px;
  flex-shrink: 0;
  background: var(--color-brand-yellow);
}

/* Nav: "Build your website" call to action */
.site-nav__link--cta {
  padding: 0.55rem 0.9rem;
  white-space: nowrap;
  background: var(--color-brand-yellow);
  border: 1.5px solid var(--color-brand-yellow);
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.site-nav__link--cta::after { display: none; }

.site-nav__link--cta:hover {
  background: var(--color-brand-yellow-hover);
  border-color: var(--color-brand-yellow-hover);
  transform: translateY(-1px);
}

.site-nav-panel__link--cta .site-nav-panel__title { color: var(--color-brand-yellow); }

/* Contact page: link to the intake form under the direct contact block */
.hello__start {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  align-items: flex-start;
  margin-top: clamp(1.5rem, 3vw, 2rem);
  padding-top: clamp(1.5rem, 3vw, 2rem);
  border-top: 1px solid var(--color-line-dark);
}

.hello__start-link {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--color-brand-yellow);
  transition: color 160ms ease;
}

.hello__start-link:hover { color: var(--color-paper); }

.hello__start-hint {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

/* Support hours next to the direct contact details */
.hello__hours,
.site-nav-panel__hours {
  display: block;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.88rem;
}

.site-nav-panel__hours { margin-top: 0.35rem; }

/* ===== Blog ===== */
/* section.blog — not .blog, body.home.blog is the WP posts index */
section.blog {
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: var(--section-y);
}

.blog--more {
  padding-top: var(--section-y-sm);
  border-top: 1px solid var(--color-line);
}

.blog__head {
  max-width: 62ch;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.blog__head--compact { margin-bottom: clamp(1.75rem, 3vw, 2.5rem); }
.blog__kicker { margin-bottom: 0.75rem; }
.blog__h {
  margin: 0;
  max-width: none;
  /* display-xl is too wide for the EL blog title at ~680px; keep two explicit lines. */
  font-size: clamp(1.85rem, 3.85vw, 3.5rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.blog__lead {
  margin: 1.25rem 0 0;
  color: var(--color-ink-soft);
  font-size: clamp(1.05rem, 1.2vw, 1.2rem);
  line-height: 1.6;
}

.blog__empty {
  color: var(--color-ink-soft);
  font-size: 1.05rem;
}

.blog__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 3.25rem);
}

.post-card {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  min-width: 0;
  padding-top: 1.25rem;
  border-top: 1px solid var(--color-ink);
}

.post-card__media {
  display: block;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--color-muted);
}

.post-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
}

.post-card:hover .post-card__img { transform: scale(1.03); }

.post-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  min-width: 0;
}

.post-card__meta { margin: 0; }

.post-card__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.post-card__title a { transition: color 160ms ease; }
.post-card__title a:hover { color: var(--color-ink-2); text-decoration: underline; text-decoration-color: var(--color-brand-yellow); text-decoration-thickness: 3px; text-underline-offset: 4px; }

.post-card__excerpt {
  margin: 0;
  color: var(--color-ink-soft);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 52ch;
}

.post-card__more { align-self: flex-start; }

@media (min-width: 700px) {
  .post-card {
    display: grid;
    grid-template-columns: minmax(16rem, 28rem) minmax(0, 1fr);
    gap: clamp(1.5rem, 3vw, 2.5rem);
    align-items: center;
  }
  .post-card:not(:has(.post-card__media)) { grid-template-columns: 1fr; }
  .post-card:not(:has(.post-card__media)) .post-card__body { max-width: 60ch; }
}

.blog__pager {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: clamp(3rem, 6vw, 5rem);
  flex-wrap: wrap;
}

.blog__pager-num {
  color: var(--color-ink-soft);
  font-size: 0.95rem;
}

/* Single post */
article.post { padding-top: clamp(2.5rem, 5vw, 4rem); }

.post__head-inner {
  max-width: 46rem;
  margin-inline: auto;
  text-align: left;
}

.post__back {
  display: inline-block;
  margin-bottom: clamp(1.75rem, 3vw, 2.5rem);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-ink-soft);
}

.post__back:hover { color: var(--color-ink); text-decoration: underline; }
.post__meta { margin: 0 0 1rem; }

.post__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.post__lead {
  margin: 1.25rem 0 0;
  color: var(--color-ink-soft);
  font-size: clamp(1.1rem, 1.4vw, 1.3rem);
  line-height: 1.55;
}

.post__translation {
  margin: 1.25rem 0 0;
  font-size: 0.95rem;
}

.post__translation a { text-decoration: underline; text-decoration-color: var(--color-brand-yellow); text-decoration-thickness: 2px; text-underline-offset: 4px; }

.post__hero {
  max-width: 62rem;
  margin: clamp(2rem, 4vw, 3rem) auto 0;
  background: var(--color-muted);
}

.post__img {
  width: 100%;
  height: auto;
  display: block;
}

/* Article text: big, airy, one column, nothing else */
.post__body {
  max-width: 46rem;
  margin: clamp(2.5rem, 5vw, 4rem) auto 0;
  font-size: clamp(1.1rem, 1.3vw, 1.22rem);
  line-height: 1.75;
  color: var(--color-ink-soft);
}

.post__body > :first-child { margin-top: 0; }
.post__body p { margin: 0 0 1.4em; }

.post__body h2,
.post__body h3,
.post__body h4 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-ink);
  letter-spacing: -0.02em;
  line-height: 1.2;
  text-wrap: balance;
}

.post__body h2 { font-size: clamp(1.5rem, 2.2vw, 1.95rem); margin: 2.4em 0 0.7em; }
.post__body h3 { font-size: clamp(1.25rem, 1.7vw, 1.5rem); margin: 2em 0 0.6em; }
.post__body h4 { font-size: 1.1rem; margin: 1.8em 0 0.5em; }

.post__body ul,
.post__body ol {
  margin: 0 0 1.5em;
  padding-left: 1.3em;
}

.post__body li { margin: 0.45em 0; padding-left: 0.3em; }
.post__body ul { list-style: disc outside; }
.post__body ol { list-style: decimal outside; }
.post__body li::marker { color: var(--color-brand-yellow); font-weight: 700; }

.post__body strong { color: var(--color-ink); font-weight: 700; }

.post__body a {
  text-decoration: underline;
  text-decoration-color: var(--color-brand-yellow);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  color: var(--color-ink);
}

.post__body a:hover { text-decoration-color: var(--color-ink); }

.post__body blockquote {
  margin: 2em 0;
  padding: 0.25em 0 0.25em 1.25em;
  border-left: 4px solid var(--color-brand-yellow);
  font-size: 1.1em;
  color: var(--color-ink);
}

.post__body blockquote p:last-child { margin-bottom: 0; }

.post__body img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 2em 0;
}

.post__body figure,
.post__body .wp-caption {
  margin: 2em 0;
  max-width: 100%;
}

.post__body figure img,
.post__body .wp-caption img { margin: 0; }

.post__body figcaption,
.post__body .wp-caption-text {
  margin-top: 0.6em;
  font-size: 0.9rem;
  color: var(--color-ink-soft);
  opacity: 0.8;
}

.post__body hr {
  border: 0;
  border-top: 1px solid var(--color-line);
  margin: 2.5em 0;
}

.post__body table {
  width: 100%;
  border-collapse: collapse;
  margin: 2em 0;
  font-size: 0.95em;
}

.post__body th,
.post__body td {
  text-align: left;
  padding: 0.6em 0.5em;
  border-bottom: 1px solid var(--color-line);
}

.post__body th { color: var(--color-ink); font-weight: 700; }

/* CTA at the end of a post */
.post__cta {
  max-width: 46rem;
  margin: clamp(3rem, 6vw, 5rem) auto var(--section-y);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: var(--color-brand-yellow);
  color: var(--color-ink);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.post__cta-text { max-width: 34rem; }
.post__cta-kicker { opacity: 0.75; margin-bottom: 0.5rem; }

.post__cta-h {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.post__cta-body {
  margin: 0.6rem 0 0;
  line-height: 1.55;
}

.post__cta-btn { flex-shrink: 0; }

@media (max-width: 640px) {
  .post__cta-btn { width: 100%; justify-content: center; }
}

/* Themes (template packs gallery) */
.themes {
  padding-block: var(--section-y);
}

.themes--page {
  padding-top: clamp(2.5rem, 5vw, 4rem);
}

.themes--compact .themes__head {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.themes--compact .themes__h,
.themes--compact .themes__lead {
  margin-left: auto;
  margin-right: auto;
}

.themes--compact .themes__h {
  font-size: clamp(1.75rem, 3.4vw, 2.5rem);
  max-width: 34ch;
}

.themes__all {
  margin: clamp(1.5rem, 3vw, 2.25rem) 0 0;
  text-align: center;
}

.themes__head {
  max-width: 64ch;
  margin-bottom: clamp(1.75rem, 3.5vw, 2.75rem);
}

.themes__head .eyebrow { margin-bottom: 0.6rem; }

.themes__h {
  margin: 0;
  max-width: 22ch;
}

.themes__lead {
  margin: 1.1rem 0 0;
  color: var(--color-ink-soft);
  font-size: clamp(1rem, 1.1vw, 1.1rem);
  line-height: 1.6;
  max-width: 60ch;
}

.themes__empty {
  color: var(--color-ink-soft);
  font-size: 1.05rem;
}

.themes__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.themes__filter {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 0.95rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  line-height: 1;
  color: var(--color-ink);
  background: var(--color-paper);
  border: 1.5px solid var(--color-ink);
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease;
}

.themes__filter:hover { background: var(--color-muted); }

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

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

.themes__filter-count {
  font-size: 0.78rem;
  opacity: 0.65;
}

.themes__filter.is-active .themes__filter-count { opacity: 0.8; }

.themes__count {
  margin: 0 0 clamp(1.25rem, 2.5vw, 2rem);
  font-size: 0.9rem;
  color: var(--color-ink-soft);
  opacity: 0.8;
}

.themes__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.25rem, 2.5vw, 2rem);
}

@media (min-width: 680px) {
  .themes__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

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

.theme-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: var(--color-paper);
  border: 1px solid var(--color-line);
  transition: border-color 160ms ease, transform 160ms ease;
}

.theme-card[hidden] { display: none; }

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

.theme-card__media {
  display: block;
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--color-muted);
  border-bottom: 1px solid var(--color-line);
}

.theme-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 400ms ease;
}

.theme-card:hover .theme-card__media img { transform: scale(1.025); }

.theme-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  flex: 1;
  padding: clamp(1.15rem, 2vw, 1.5rem);
}

.theme-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.theme-card__tag {
  display: inline-block;
  padding: 0.3rem 0.6rem;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1;
  color: var(--color-ink);
  background: var(--color-brand-yellow);
}

.theme-card__tag--soft {
  background: var(--color-muted);
  color: var(--color-ink-soft);
  font-weight: 500;
}

.theme-card__name {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.15rem, 1.5vw, 1.35rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.theme-card__foot {
  margin-top: auto;
  padding-top: 0.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* Both buttons grow: side by side when they fit, each full width when they wrap. */
.theme-card__btn {
  flex: 1 1 auto;
  justify-content: center;
  padding-inline: 1rem;
  white-space: nowrap;
}

.theme-card--cta .card__cta-heading { font-size: clamp(1.5rem, 2.4vw, 2rem); }
