@font-face {
  font-family: "SUIT Variable";
  src: url("https://cdn.jsdelivr.net/gh/sun-typeface/SUIT@2.0.5/fonts/variable/woff2/SUIT-Variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "A2z";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/2601-6@1.0/%EC%97%90%EC%9D%B4%ED%88%AC%EC%A7%80%EC%B2%B4-4Regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "A2z";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/2601-6@1.0/%EC%97%90%EC%9D%B4%ED%88%AC%EC%A7%80%EC%B2%B4-6SemiBold.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "A2z";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/2601-6@1.0/%EC%97%90%EC%9D%B4%ED%88%AC%EC%A7%80%EC%B2%B4-7Bold.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --mint: #39e5cf;
  --mint-soft: #e8fff8;
  --orange: #ff8a2a;
  --orange-soft: #fff1dc;
  --ink: #10131b;
  --text: #3e4654;
  --muted: #747d8c;
  --surface: #ffffff;
  --surface-soft: #f6f8f7;
  --line: #e5ebe8;
  --shadow: 0 22px 58px rgba(16, 19, 27, 0.12);
  --font-sans:
    "A2z", "SUIT Variable", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
  --weight-light: 320;
  --weight-regular: 400;
  --weight-text: 440;
  --weight-medium: 510;
  --weight-semibold: 590;
  --weight-bold: 680;
  --weight-heavy: 740;
  color: var(--text);
  background: var(--surface);
  font-family: var(--font-sans);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background: var(--surface);
}

body.nav-open {
  overflow: hidden;
}

main#home {
  background: linear-gradient(135deg, #dffff7 0%, #f7fff9 38%, #fff3dc 68%, #ff9742 100%);
}

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

button {
  cursor: pointer;
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: minmax(160px, 1fr) auto minmax(160px, 1fr);
  align-items: center;
  gap: 20px;
  min-height: 64px;
  border-bottom: 1px solid rgba(229, 235, 232, 0.9);
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  backdrop-filter: blur(16px);
  padding: 0 max(24px, calc((100vw - 1380px) / 2));
}

.site-header.scrolled {
  box-shadow: 0 10px 28px rgba(16, 19, 27, 0.08);
}

.brand {
  grid-column: 1;
  display: inline-flex;
  align-items: center;
  justify-self: start;
  line-height: 1;
}

.brand-logo {
  display: block;
  width: clamp(142px, 11vw, 172px);
  height: auto;
}

.site-nav {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 42px;
  color: #333946;
  font-size: 15px;
  font-weight: var(--weight-semibold);
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
}

.site-nav a::after {
  width: 7px;
  height: 7px;
  margin-left: 10px;
  border-right: 1.7px solid currentColor;
  border-bottom: 1.7px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  content: "";
}

.site-nav a.active,
.site-nav a:hover {
  color: #000000;
}

.nav-toggle {
  grid-column: 3;
  grid-row: 1;
  display: none;
  justify-self: end;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
}

.site-actions {
  grid-column: 3;
  grid-row: 1;
  display: flex;
  align-items: center;
  justify-self: end;
}

.language-toggle {
  display: inline-grid;
  grid-template-columns: repeat(2, minmax(34px, 1fr));
  gap: 2px;
  min-height: 34px;
  border: 1px solid rgba(16, 19, 27, 0.12);
  border-radius: 999px;
  background: #ffffff;
  color: var(--muted);
  padding: 3px;
  box-shadow: 0 8px 20px rgba(16, 19, 27, 0.06);
}

.language-toggle span {
  display: inline-grid;
  min-width: 31px;
  place-items: center;
  border-radius: 999px;
  color: var(--muted);
  font-size: 12px;
  font-weight: var(--weight-semibold);
  line-height: 1;
}

.language-toggle span.active {
  background: var(--ink);
  color: #ffffff;
}

.language-toggle:hover {
  border-color: rgba(16, 19, 27, 0.22);
}

.hero-page {
  position: relative;
  display: grid;
  min-height: 100svh;
  place-items: center;
  overflow: hidden;
  padding: 144px 24px 94px;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
  pointer-events: none;
}

.hero-page::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(223, 255, 247, 0.38) 0%, rgba(247, 255, 249, 0.3) 40%, rgba(255, 243, 220, 0.24) 68%, rgba(255, 151, 66, 0.16) 100%);
  content: "";
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 32px;
  width: min(1180px, 100%);
  margin: 0 auto;
  text-align: center;
}

.hero-content h1 {
  display: grid;
  justify-items: center;
  gap: 8px;
  margin: 0;
  color: var(--ink);
  font-size: 86px;
  font-weight: var(--weight-heavy);
  line-height: 1.03;
}

.hero-content h1 > span {
  display: block;
}

.hero-focus {
  position: relative;
  display: inline-block;
  background: linear-gradient(90deg, #ff4f6d 0%, #ff9b3d 18%, #ffd84a 35%, #4bd87f 52%, #33d7d8 68%, #4d7cff 84%, #a65cff 100%);
  background-clip: text;
  color: transparent;
  font-size: 0.92em;
  -webkit-background-clip: text;
}

.hero-focus::before {
  display: none;
}

.hero-break {
  display: none;
}

.hero-content p {
  max-width: 760px;
  margin: 0;
  color: rgba(16, 19, 27, 0.68);
  font-size: clamp(17px, 1.25vw, 21px);
  line-height: 1.58;
  font-weight: var(--weight-regular);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 60px;
  border-radius: 999px;
  padding: 0 38px;
  font-size: 17px;
  font-weight: var(--weight-semibold);
}

.button.primary {
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #ffffff;
}

.button.secondary {
  border: 1px solid rgba(16, 19, 27, 0.16);
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
}

.button:hover {
  transform: translateY(-1px);
}

.button.disabled,
.button[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.56;
}

.button.disabled:hover,
.button[aria-disabled="true"]:hover {
  transform: none;
}

.page-section {
  scroll-margin-top: 72px;
  padding: 88px 0;
}

.section-inner {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.products-section {
  background: #ffffff;
}

.pricing-section {
  background: transparent;
}

.section-heading {
  display: grid;
  gap: 16px;
  max-width: 840px;
  margin-bottom: 42px;
}

.section-heading p {
  margin: 0;
  color: #d76218;
  font-size: 14px;
  font-weight: var(--weight-bold);
  text-transform: uppercase;
}

.section-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(34px, 3.4vw, 56px);
  line-height: 1.08;
  font-weight: var(--weight-bold);
}

.product-title-link {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-decoration-line: underline;
  text-decoration-color: rgba(255, 138, 42, 0.48);
  text-underline-offset: 0.12em;
}

.product-title-link:hover {
  text-decoration-color: var(--orange);
}

.section-inline-link {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 8px;
  min-height: 54px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: #ffffff;
  padding: 0 28px;
  font-size: 16px;
  font-weight: var(--weight-semibold);
}

.section-inline-link:hover {
  transform: translateY(-1px);
}

.products-section {
  padding-top: 68px;
}

.products-section .section-inner {
  width: min(1480px, calc(100% - 48px));
}

.product-layout {
  display: grid;
  gap: 24px;
}

.product-topline {
  display: flex;
  flex-wrap: nowrap;
  align-items: start;
  justify-content: space-between;
  gap: 22px;
}

.products-section .section-heading {
  max-width: 1040px;
  gap: 12px;
  margin-bottom: 0;
}

.products-section .section-heading h2 {
  font-size: clamp(32px, 3vw, 48px);
  line-height: 1.06;
  font-weight: var(--weight-semibold);
}

.products-section .product-title-link {
  text-decoration: none;
}

.products-section .section-inline-link {
  min-height: auto;
  border-color: rgba(16, 19, 27, 0.16);
  background: #ffffff;
  color: var(--ink);
  padding: 10px 16px;
  font-size: 14px;
  box-shadow: none;
}

.product-switcher {
  display: inline-flex;
  gap: 8px;
  justify-self: end;
  padding-top: 8px;
}

.product-switcher button {
  display: inline-grid;
  min-width: 46px;
  min-height: 38px;
  place-items: center;
  border: 1px solid rgba(16, 19, 27, 0.16);
  border-radius: 999px;
  background: #ffffff;
  color: rgba(50, 58, 75, 0.7);
  font-size: 13px;
  font-weight: var(--weight-semibold);
}

.product-switcher button.active {
  border-color: #315ce8;
  background: #315ce8;
  color: #ffffff;
}

.product-panels {
  display: grid;
}

.product-panel {
  display: grid;
  grid-template-columns: minmax(160px, 0.52fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 88px);
  align-items: center;
  min-height: 380px;
}

.product-panel.reverse {
  grid-template-columns: minmax(0, 1fr) minmax(160px, 0.52fr);
}

.product-panel.reverse .product-number {
  grid-column: 2;
  grid-row: 1;
}

.product-panel.reverse .product-copy {
  grid-column: 1;
  grid-row: 1;
  justify-self: end;
}

.product-panel.stacked {
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  gap: 20px;
  min-height: 0;
}

.product-panel.stacked .product-number {
  justify-self: center;
  width: clamp(96px, 8.6vw, 132px);
  font-size: clamp(62px, 6.2vw, 94px);
}

.product-panel.stacked .product-copy {
  justify-self: center;
  max-width: 920px;
  text-align: center;
}

.product-panel.stacked .plan-label {
  justify-self: center;
}

.product-panel.stacked .product-copy ul {
  justify-self: center;
  min-width: min(100%, 420px);
  text-align: left;
}

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

.product-number {
  position: relative;
  display: grid;
  justify-self: center;
  width: clamp(130px, 15vw, 190px);
  aspect-ratio: 1;
  place-items: center;
  border-radius: 24px;
  background: linear-gradient(120deg, #315ce8 0%, #36c8dd 24%, #6ee7b7 44%, #f7d154 62%, #ff8a3d 78%, #9b5cff 100%);
  background-size: 240% 240%;
  color: #ffffff;
  font-size: clamp(86px, 10vw, 148px);
  font-weight: var(--weight-heavy);
  line-height: 1;
  animation:
    pricingNumberSpin 10s linear infinite,
    pricingNumberShape 6.8s ease-in-out infinite,
    pricingNumberGradient 8s ease-in-out infinite;
  will-change: border-radius, transform, background-position;
}

.product-number::after {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #ffffff;
  content: attr(data-number);
  font: inherit;
  line-height: 1;
  transform: rotate(0deg);
  animation: pricingNumberCounterSpin 10s linear infinite;
}

.product-copy {
  display: grid;
  gap: 13px;
  max-width: 620px;
}

.plan-label {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border-radius: 999px;
  background: rgba(57, 229, 207, 0.16);
  color: #087a73;
  padding: 0 10px;
  font-size: 12px;
  font-weight: var(--weight-bold);
  justify-self: start;
}

.product-copy h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(28px, 2.45vw, 38px);
  line-height: 1.08;
  font-weight: var(--weight-bold);
}

.product-copy p {
  margin: 0;
  color: rgba(16, 19, 27, 0.74);
  font-size: 18px;
  line-height: 1.42;
  font-weight: var(--weight-regular);
}

.product-copy ul {
  display: grid;
  gap: 6px;
  margin: 2px 0 0;
  padding: 0;
  list-style: none;
}

.product-copy li {
  position: relative;
  color: rgba(50, 58, 75, 0.78);
  font-size: 16px;
  font-weight: var(--weight-regular);
  line-height: 1.46;
  padding-left: 20px;
}

.product-copy li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #315ce8;
  content: "";
}

.pricing-layout {
  display: grid;
  gap: 34px;
}

.pricing-topline {
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  justify-content: space-between;
  gap: 22px;
}

.pricing-topline .section-heading {
  max-width: 680px;
  margin-bottom: 0;
}

.pricing-section .section-heading h2 {
  font-size: clamp(30px, 2.7vw, 46px);
  line-height: 1.14;
  font-weight: var(--weight-semibold);
}

.pricing-switcher {
  display: inline-flex;
  gap: 8px;
  justify-self: end;
  padding-top: 8px;
}

.pricing-switcher button {
  display: inline-grid;
  min-width: 46px;
  min-height: 38px;
  place-items: center;
  border: 1px solid rgba(16, 19, 27, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.54);
  color: rgba(50, 58, 75, 0.7);
  font-size: 13px;
  font-weight: var(--weight-semibold);
}

.pricing-switcher button.active {
  border-color: #315ce8;
  background: #315ce8;
  color: #ffffff;
}

.pricing-panels {
  display: grid;
}

.pricing-panel {
  display: grid;
  grid-template-columns: minmax(160px, 0.52fr) minmax(0, 1fr);
  gap: clamp(34px, 7vw, 100px);
  align-items: center;
  min-height: 430px;
}

.pricing-panel.reverse {
  grid-template-columns: minmax(0, 1fr) minmax(160px, 0.52fr);
}

.pricing-panel.reverse .pricing-number {
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
}

.pricing-panel.reverse .pricing-copy {
  grid-column: 1;
  grid-row: 1;
  justify-self: end;
}

.pricing-panel.top {
  grid-template-columns: minmax(0, 1fr);
  gap: 30px;
  align-items: start;
}

.pricing-panel.top .pricing-number {
  justify-self: center;
  width: clamp(110px, 10vw, 148px);
  font-size: clamp(72px, 7vw, 108px);
}

.pricing-panel.top .pricing-copy {
  justify-self: center;
  max-width: 720px;
  text-align: center;
}

.pricing-panel.top .plan-label,
.pricing-panel.top .pricing-copy .button {
  justify-self: center;
}

.pricing-panel.top .pricing-copy ul {
  justify-self: center;
  min-width: min(100%, 420px);
  text-align: left;
}

.pricing-panel.corner {
  grid-template-columns: minmax(0, 1fr) minmax(160px, 0.45fr);
  align-items: end;
}

.pricing-panel.corner .pricing-copy {
  align-self: center;
}

.pricing-panel.corner .pricing-number {
  justify-self: end;
  align-self: end;
  width: clamp(118px, 12vw, 164px);
  font-size: clamp(78px, 8vw, 118px);
}

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

.pricing-number {
  position: relative;
  display: grid;
  justify-self: center;
  width: clamp(130px, 15vw, 190px);
  aspect-ratio: 1;
  place-items: center;
  border-radius: 36% 64% 56% 44% / 42% 36% 64% 58%;
  background: linear-gradient(120deg, #315ce8 0%, #36c8dd 24%, #6ee7b7 44%, #f7d154 62%, #ff8a3d 78%, #9b5cff 100%);
  background-size: 240% 240%;
  color: #ffffff;
  font-size: clamp(86px, 10vw, 148px);
  font-weight: var(--weight-heavy);
  line-height: 1;
  animation:
    pricingNumberSpin 10s linear infinite,
    pricingNumberBlob 7.2s ease-in-out infinite,
    pricingNumberGradient 8s ease-in-out infinite;
  will-change: border-radius, transform, background-position;
}

.pricing-number::after {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #ffffff;
  content: attr(data-number);
  font: inherit;
  line-height: 1;
  transform: rotate(0deg);
  animation: pricingNumberCounterSpin 10s linear infinite;
}

.pricing-copy {
  display: grid;
  gap: 16px;
  max-width: 620px;
}

.pricing-copy .plan-label {
  justify-self: start;
}

.pricing-copy h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(32px, 3vw, 46px);
  line-height: 1.1;
  font-weight: var(--weight-bold);
}

.pricing-copy .price {
  margin: 0;
  color: #315ce8;
  font-size: clamp(24px, 2vw, 34px);
  line-height: 1.08;
  font-weight: var(--weight-semibold);
}

.pricing-copy p {
  margin: 0;
  color: rgba(16, 19, 27, 0.74);
  font-size: 21px;
  line-height: 1.5;
  font-weight: var(--weight-regular);
}

.pricing-copy ul {
  display: grid;
  gap: 8px;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
}

.pricing-copy li {
  position: relative;
  color: rgba(50, 58, 75, 0.78);
  font-size: 17px;
  font-weight: var(--weight-regular);
  line-height: 1.46;
  padding-left: 20px;
}

.pricing-copy li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #315ce8;
  content: "";
}

.pricing-note {
  display: grid;
  gap: 4px;
  max-width: 560px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--text);
  padding: 6px 0 0;
}

.pricing-note strong {
  color: var(--ink);
  font-size: 17px;
  font-weight: var(--weight-semibold);
}

.pricing-note span {
  color: rgba(50, 58, 75, 0.68);
  font-size: 16px;
  line-height: 1.5;
  font-weight: var(--weight-regular);
}

.pricing-copy .button {
  justify-self: start;
  min-height: 52px;
  margin-top: 8px;
  padding: 0 28px;
  font-size: 15px;
}

.legal-page {
  background: #ffffff;
  padding-top: 76px;
}

.legal-hero {
  background: linear-gradient(135deg, #f0fff9 0%, #ffffff 54%, #fff3df 100%);
  border-bottom: 1px solid var(--line);
  padding: 88px 0 58px;
}

.legal-hero p {
  margin: 0 0 12px;
  color: #d76218;
  font-size: 14px;
  font-weight: var(--weight-bold);
  text-transform: uppercase;
}

.legal-hero h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(38px, 4vw, 64px);
  line-height: 1.1;
  font-weight: var(--weight-bold);
}

.legal-hero span {
  display: block;
  margin-top: 18px;
  color: var(--muted);
  font-size: 16px;
  font-weight: var(--weight-regular);
}

.legal-content {
  padding: 72px 0 96px;
}

.legal-card {
  display: grid;
  gap: 36px;
  max-width: 920px;
}

.legal-note {
  margin: 0;
  border-left: 4px solid var(--orange);
  background: #fff8ee;
  color: #7c4a1e;
  padding: 18px 20px;
  font-size: 15px;
  line-height: 1.7;
  font-weight: var(--weight-regular);
}

.legal-card article {
  display: grid;
  gap: 12px;
}

.legal-card h2 {
  margin: 0;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.35;
  font-weight: var(--weight-bold);
}

.legal-card h3 {
  margin: 18px 0 0;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.45;
  font-weight: var(--weight-semibold);
}

.legal-card h2 + h3 {
  margin-top: 0;
}

.legal-card p {
  margin: 0;
  color: var(--text);
  font-size: 17px;
  line-height: 1.78;
  font-weight: var(--weight-text);
}

.legal-inline-link {
  color: #0b6f66;
  font-weight: var(--weight-semibold);
  text-decoration-line: underline;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.15em;
}

.legal-table-wrap {
  width: 100%;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.legal-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.legal-table th,
.legal-table td {
  border-bottom: 1px solid var(--line);
  padding: 16px;
  text-align: left;
  vertical-align: top;
}

.legal-table th {
  background: #f7faf8;
  color: var(--ink);
  font-size: 13px;
  font-weight: var(--weight-bold);
}

.legal-table td {
  color: var(--text);
  font-size: 14px;
  line-height: 1.58;
  font-weight: var(--weight-text);
}

.legal-table tr:last-child td {
  border-bottom: 0;
}

.site-footer {
  background: #0f1117;
  padding: 54px 0;
}

.footer-copy {
  color: rgba(255, 255, 255, 0.58);
}

.footer-logo {
  display: block;
  width: 128px;
  height: auto;
  margin-bottom: 22px;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

.footer-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 14px;
  line-height: 1.8;
  font-weight: var(--weight-light);
}

.footer-copy .copyright {
  margin-top: 20px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 34px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  font-weight: var(--weight-medium);
}

.footer-links a:hover {
  color: #ffffff;
}

.cookie-banner {
  position: fixed;
  right: 50%;
  bottom: 28px;
  left: auto;
  z-index: 60;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: min(1120px, calc(100% - 56px));
  min-height: 74px;
  border: 1px solid rgba(16, 19, 27, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.48);
  box-shadow: 0 18px 54px rgba(16, 19, 27, 0.12);
  color: var(--text);
  padding: 12px 14px 12px 28px;
  transform: translateX(50%);
  backdrop-filter: blur(22px) saturate(126%);
}

.cookie-banner.visible {
  display: flex;
}

.cookie-banner p {
  margin: 0;
  color: var(--text);
  font-size: clamp(15px, 1.05vw, 18px);
  line-height: 1.48;
  font-weight: var(--weight-regular);
}

.cookie-banner a {
  color: #087a73;
  font-weight: var(--weight-semibold);
  text-decoration-line: underline;
  text-underline-offset: 0.16em;
}

.cookie-banner button {
  flex: 0 0 auto;
  min-width: 104px;
  min-height: 56px;
  border: 1px solid rgba(8, 122, 115, 0.42);
  border-radius: 999px;
  background: rgba(232, 255, 248, 0.7);
  color: #064f4b;
  padding: 0 22px;
  font-size: 17px;
  font-weight: var(--weight-semibold);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.38);
}

.cookie-banner button:hover {
  border-color: rgba(8, 122, 115, 0.66);
  background: rgba(218, 255, 246, 0.86);
}

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

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

@keyframes pricingNumberShape {
  0% {
    border-radius: 24px;
  }

  50% {
    border-radius: 50%;
  }

  100% {
    border-radius: 24px;
  }
}

@keyframes pricingNumberBlob {
  0% {
    border-radius: 36% 64% 56% 44% / 42% 36% 64% 58%;
  }

  35% {
    border-radius: 58% 42% 34% 66% / 54% 62% 38% 46%;
  }

  70% {
    border-radius: 44% 56% 68% 32% / 36% 48% 52% 64%;
  }

  100% {
    border-radius: 36% 64% 56% 44% / 42% 36% 64% 58%;
  }
}

@keyframes pricingNumberGradient {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .product-number,
  .pricing-number {
    animation: none;
  }

  .product-number::after,
  .pricing-number::after {
    animation: none;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 10px;
    min-height: 62px;
    padding: 0 14px;
  }

  .site-actions {
    grid-column: 2;
  }

  .language-toggle {
    min-height: 36px;
  }

  .language-toggle span {
    min-width: 30px;
  }

  .site-nav {
    position: fixed;
    top: 62px;
    right: 14px;
    left: 14px;
    display: none;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
    padding: 14px;
  }

  body.nav-open .site-nav {
    display: grid;
    gap: 6px;
  }

  .site-nav a {
    min-height: 48px;
    justify-content: space-between;
    padding: 0 10px;
  }

  .nav-toggle {
    grid-column: 3;
    display: grid;
    gap: 5px;
  }

  .hero-page {
    padding-top: 108px;
  }

  .hero-content h1 {
    font-size: 64px;
  }

  .legal-page {
    padding-top: 62px;
  }

  .product-panel,
  .pricing-panel {
    grid-template-columns: 1fr;
    gap: 28px;
    min-height: 0;
  }

  .product-panel.reverse .product-number,
  .product-panel.reverse .product-copy {
    grid-column: auto;
    grid-row: auto;
    justify-self: start;
  }

  .product-panel.stacked .product-number,
  .product-panel.stacked .product-copy,
  .product-panel.stacked .plan-label {
    justify-self: start;
    text-align: left;
  }

  .pricing-panel.reverse .pricing-number,
  .pricing-panel.reverse .pricing-copy,
  .pricing-panel.corner .pricing-number,
  .pricing-panel.corner .pricing-copy {
    grid-column: auto;
    grid-row: auto;
    align-self: auto;
    justify-self: start;
  }

  .pricing-panel.top .pricing-number,
  .pricing-panel.top .pricing-copy,
  .pricing-panel.top .plan-label,
  .pricing-panel.top .pricing-copy .button {
    justify-self: start;
    text-align: left;
  }

  .pricing-panel.top .pricing-copy ul {
    justify-self: start;
  }

  .product-number,
  .pricing-number {
    justify-self: start;
    width: 118px;
    border-radius: 20px;
    font-size: 78px;
  }

}

@media (max-width: 720px) {
  .brand {
    max-width: 150px;
  }

  .brand-logo {
    width: 150px;
  }

  .hero-page {
    align-items: start;
    min-height: 92svh;
    padding: 112px 14px 62px;
  }

  .hero-content {
    gap: 24px;
  }

  .hero-content h1 {
    display: grid;
    gap: 10px;
    font-size: 40px;
  }

  .hero-focus {
    font-size: 0.95em;
    transform: none;
  }

  .hero-content p {
    font-size: 16px;
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .page-section {
    padding: 72px 0;
  }

  .legal-hero {
    padding: 58px 0 42px;
  }

  .legal-content {
    padding: 46px 0 66px;
  }

  .legal-card {
    gap: 28px;
  }

  .legal-card h2 {
    font-size: 19px;
  }

  .legal-card h3 {
    font-size: 16px;
  }

  .legal-card p {
    font-size: 15px;
  }

  .section-inner {
    width: min(100% - 28px, 1180px);
  }

  .product-topline,
  .pricing-topline {
    display: grid;
    gap: 16px;
  }

  .product-switcher,
  .pricing-switcher {
    justify-self: start;
    padding-top: 0;
  }

  .product-copy h3,
  .pricing-copy h3 {
    font-size: 28px;
  }

  .product-copy p,
  .pricing-copy p {
    font-size: 18px;
  }

  .product-copy li,
  .pricing-copy li,
  .pricing-note span {
    font-size: 16px;
  }

  .site-footer {
    padding: 38px 0;
  }

  .footer-logo {
    width: 116px;
    margin-bottom: 18px;
  }

  .footer-copy p,
  .footer-links a {
    font-size: 13px;
  }

  .footer-links {
    gap: 16px;
    margin-top: 26px;
  }

  .cookie-banner {
    right: 50%;
    bottom: 14px;
    left: auto;
    display: none;
    width: calc(100% - 28px);
    min-height: 0;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    border-radius: 28px;
    padding: 18px;
    text-align: center;
    transform: translateX(50%);
  }

  .cookie-banner p {
    font-size: 15px;
  }

  .cookie-banner.visible {
    display: flex;
  }

  .cookie-banner button {
    width: min(100%, 220px);
  }
}
