:root {
  --blue-950: #031b45;
  --blue-900: #062661;
  --blue-800: #063e9e;
  --blue-700: #075ed8;
  --blue-600: #0877ef;
  --cyan-400: #25c8ed;
  --cyan-200: #a6ecf8;
  --purple-500: #a54de8;
  --ink: #0a1730;
  --muted: #52627a;
  --line: #dbe7f4;
  --pale: #f3f9ff;
  --white: #ffffff;
  --shadow: 0 28px 80px rgba(7, 61, 145, 0.14);
  --radius-lg: 32px;
  --radius-md: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  color: var(--white);
  background: var(--blue-900);
  border-radius: 10px;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.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;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid transparent;
  transition: 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  border-bottom-color: rgba(187, 210, 234, 0.75);
  box-shadow: 0 8px 30px rgba(8, 60, 139, 0.07);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--blue-900);
}

.brand-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  overflow: hidden;
  border-radius: 14px;
}

.brand-icon img {
  width: 67px;
  max-width: none;
}

.brand-name {
  font-size: 1.38rem;
  font-weight: 850;
  letter-spacing: -0.05em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  color: #2f4664;
  font-size: 0.92rem;
  font-weight: 650;
}

.site-nav a:not(.nav-contact) {
  transition: color 160ms ease;
}

.site-nav a:not(.nav-contact):hover {
  color: var(--blue-600);
}

.nav-contact {
  padding: 10px 17px;
  color: var(--white);
  background: var(--blue-900);
  border-radius: 999px;
  transition: transform 160ms ease, background 160ms ease;
}

.nav-contact:hover {
  background: var(--blue-600);
  transform: translateY(-1px);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 13px;
}

.menu-button > span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  background: var(--blue-900);
  border-radius: 2px;
  transition: transform 160ms ease, opacity 160ms ease;
}

.hero {
  position: relative;
  min-height: 780px;
  padding: 150px 0 120px;
  overflow: hidden;
  background:
    radial-gradient(circle at 77% 32%, rgba(37, 200, 237, 0.22), transparent 25%),
    radial-gradient(circle at 92% 76%, rgba(165, 77, 232, 0.12), transparent 25%),
    linear-gradient(145deg, #fafdff 0%, #eaf6ff 57%, #f6f1ff 100%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.93fr 1.07fr;
  align-items: center;
  gap: 30px;
}

.hero-copy {
  padding-bottom: 20px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 19px;
  color: var(--blue-700);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 24px;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan-400), var(--purple-500));
  border-radius: 3px;
}

.hero h1 {
  max-width: 660px;
  margin: 0;
  color: var(--blue-950);
  font-size: clamp(3.5rem, 6.3vw, 6.3rem);
  font-weight: 850;
  line-height: 0.94;
  letter-spacing: -0.075em;
}

.hero h1 em {
  display: inline-block;
  color: var(--blue-600);
  font-style: normal;
  background: linear-gradient(100deg, var(--blue-700), var(--cyan-400) 62%, var(--purple-500));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text {
  max-width: 570px;
  margin: 28px 0 30px;
  color: #435a76;
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  font-size: 0.92rem;
  font-weight: 800;
  border-radius: 999px;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-800), var(--blue-600));
  box-shadow: 0 16px 30px rgba(8, 119, 239, 0.22);
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 34px rgba(8, 119, 239, 0.28);
}

.text-link {
  color: var(--blue-900);
  font-size: 0.92rem;
  font-weight: 800;
}

.text-link span {
  display: inline-block;
  margin-left: 4px;
  transition: transform 160ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.brand-language {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 37px;
  color: #6b7f97;
  font-size: 0.85rem;
  font-weight: 750;
}

.brand-language i {
  width: 4px;
  height: 4px;
  background: var(--cyan-400);
  border-radius: 50%;
}

.hero-art {
  position: relative;
  display: grid;
  min-height: 500px;
  place-items: center;
}

.logo-stage {
  position: relative;
  z-index: 3;
  display: grid;
  width: min(520px, 84%);
  aspect-ratio: 1;
  place-items: center;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  box-shadow: 0 40px 80px rgba(5, 76, 175, 0.15), inset 0 0 60px rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(12px);
}

.logo-stage::after {
  position: absolute;
  inset: 10%;
  content: "";
  border: 1px dashed rgba(8, 119, 239, 0.24);
  border-radius: 50%;
}

.logo-stage img {
  position: relative;
  z-index: 2;
  width: 112%;
  max-width: none;
  filter: drop-shadow(0 22px 20px rgba(3, 56, 143, 0.2));
}

.orbit {
  position: absolute;
  border: 2px solid rgba(8, 119, 239, 0.19);
  border-radius: 50%;
  transform: rotate(-18deg);
}

.orbit-one {
  width: 96%;
  height: 53%;
}

.orbit-two {
  width: 74%;
  height: 104%;
  border-color: rgba(165, 77, 232, 0.12);
  transform: rotate(42deg);
}

.spark {
  position: absolute;
  z-index: 5;
  color: var(--purple-500);
  font-size: 2rem;
}

.spark-one {
  top: 13%;
  right: 8%;
}

.spark-two {
  bottom: 11%;
  left: 6%;
  color: var(--cyan-400);
  font-size: 1.35rem;
}

.mini-orb {
  position: absolute;
  z-index: 4;
  border-radius: 50%;
  box-shadow: 0 12px 24px rgba(8, 119, 239, 0.2);
}

.mini-orb-one {
  top: 23%;
  left: 2%;
  width: 24px;
  height: 24px;
  background: var(--cyan-400);
}

.mini-orb-two {
  right: 2%;
  bottom: 18%;
  width: 14px;
  height: 14px;
  background: var(--purple-500);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
}

.hero-orb-one {
  top: 115px;
  left: -100px;
  width: 240px;
  height: 240px;
  background: rgba(37, 200, 237, 0.08);
}

.hero-orb-two {
  right: -130px;
  bottom: 70px;
  width: 330px;
  height: 330px;
  background: rgba(165, 77, 232, 0.06);
}

.hero-wave {
  position: absolute;
  right: -5%;
  bottom: -84px;
  left: -5%;
  height: 145px;
  background: var(--white);
  border-radius: 50% 50% 0 0 / 70% 70% 0 0;
}

.brand-strip {
  position: relative;
  z-index: 4;
  background: var(--white);
  border-bottom: 1px solid #e6eef7;
}

.brand-strip-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  min-height: 82px;
}

.brand-strip-inner > span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 32px;
  color: #536881;
  font-size: 0.78rem;
  font-weight: 750;
}

.brand-strip-inner > span + span {
  border-left: 1px solid var(--line);
}

.brand-strip-inner i {
  width: 7px;
  height: 7px;
  background: linear-gradient(135deg, var(--cyan-400), var(--blue-600));
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(37, 200, 237, 0.1);
}

.brand-strip-inner b {
  color: var(--blue-900);
  font-weight: 800;
}

.section {
  padding: 110px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 70px;
  margin-bottom: 50px;
}

.section-heading h2,
.about-copy h2,
.contact h2 {
  margin: 0;
  color: var(--blue-950);
  font-size: clamp(2.35rem, 4.2vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: -0.055em;
}

.section-heading > p {
  margin: 0 0 7px;
  color: var(--muted);
}

.product-card {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  overflow: hidden;
  background: var(--white);
  border: 1px solid #deebf7;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.product-showcase {
  position: relative;
  display: grid;
  min-height: 680px;
  padding: 54px 54px 92px;
  place-items: center;
  background:
    radial-gradient(circle at 32% 26%, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.5) 36%, transparent 37%),
    linear-gradient(145deg, #e6f8ff 0%, #e5f1ff 50%, #f2e9ff 100%);
}

.product-showcase::before,
.product-showcase::after {
  position: absolute;
  content: "";
  border-radius: 50%;
}

.product-showcase::before {
  top: 35px;
  right: 35px;
  width: 64px;
  height: 64px;
  border: 1px solid rgba(165, 77, 232, 0.24);
}

.product-showcase::after {
  bottom: 42px;
  left: 32px;
  width: 32px;
  height: 32px;
  background: rgba(37, 200, 237, 0.18);
}

.product-main-frame {
  position: relative;
  z-index: 2;
  width: min(500px, 100%);
  overflow: hidden;
  background: var(--white);
  border: 8px solid rgba(255, 255, 255, 0.82);
  border-radius: 30px;
  box-shadow: 0 28px 58px rgba(7, 75, 162, 0.19);
  transform: rotate(-1.2deg);
}

.product-main-frame img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.product-alt-frame {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 4;
  width: 150px;
  padding: 7px 7px 10px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.96);
  border-radius: 19px;
  box-shadow: 0 18px 36px rgba(7, 67, 150, 0.18);
  transform: rotate(3deg);
  backdrop-filter: blur(8px);
}

.product-alt-frame img {
  width: 100%;
  border-radius: 13px;
}

.product-alt-frame span {
  display: block;
  padding: 7px 3px 0;
  color: #62758d;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-align: center;
  text-transform: uppercase;
}

.product-colour-label {
  position: absolute;
  bottom: 27px;
  left: 27px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  box-shadow: 0 12px 30px rgba(7, 75, 162, 0.1);
  backdrop-filter: blur(10px);
}

.product-colour-label > i {
  width: 22px;
  height: 22px;
  background: linear-gradient(145deg, var(--cyan-400), var(--blue-700));
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 1px #b9d7ef;
}

.product-colour-label small,
.product-colour-label strong {
  display: block;
}

.product-colour-label small {
  color: #8290a3;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-colour-label strong {
  color: var(--blue-900);
  font-size: 0.72rem;
}

.product-image-badge {
  position: absolute;
  top: 26px;
  left: 26px;
  z-index: 3;
  padding: 8px 13px;
  color: var(--blue-800);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  font-size: 0.73rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.product-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 58px 56px;
}

.product-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.product-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 10px;
  color: var(--blue-700);
  background: #eff8ff;
  border: 1px solid #d8edff;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-status i {
  width: 6px;
  height: 6px;
  background: var(--cyan-400);
  border-radius: 50%;
}

.product-category {
  margin: 0 0 10px;
  color: var(--blue-600);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.product-content h3 {
  margin: 0;
  color: var(--blue-950);
  font-size: clamp(2.1rem, 3.2vw, 3.35rem);
  line-height: 1.08;
  letter-spacing: -0.052em;
}

.product-description {
  margin: 20px 0 26px;
  color: var(--muted);
  font-size: 1.02rem;
}

.feature-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 13px 0;
  border-top: 1px solid #e8eff7;
}

.feature-icon {
  display: grid;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  color: var(--blue-700);
  background: var(--pale);
  border-radius: 13px;
  place-items: center;
  font-size: 0.7rem;
  font-weight: 900;
}

.feature-list strong,
.feature-list small {
  display: block;
}

.feature-list strong {
  color: var(--blue-950);
  font-size: 0.9rem;
}

.feature-list small {
  margin-top: 1px;
  color: #6b7b90;
  font-size: 0.79rem;
}

.product-note {
  margin: 22px 0 0;
  padding: 12px 14px;
  color: #68788e;
  background: #f7faff;
  border-left: 3px solid var(--cyan-400);
  border-radius: 0 10px 10px 0;
  font-size: 0.74rem;
}

.product-brand-lockup {
  display: grid;
  grid-template-columns: auto 1fr auto 1.35fr;
  align-items: center;
  gap: 10px;
  padding-top: 21px;
  margin-top: 19px;
  border-top: 1px solid #e8eff7;
}

.product-brand-lockup > i {
  width: 1px;
  height: 34px;
  margin: 0 6px;
  background: var(--line);
}

.product-brand-mini {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  overflow: hidden;
  background: var(--pale);
  border-radius: 13px;
}

.product-brand-mini img {
  width: 58px;
  max-width: none;
}

.product-brand-lockup small,
.product-brand-lockup strong {
  display: block;
}

.product-brand-lockup small {
  color: #8897a9;
  font-size: 0.61rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-brand-lockup strong {
  color: var(--blue-950);
  font-size: 0.76rem;
}

.about {
  background: var(--pale);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 100px;
}

.about-visual {
  position: relative;
  min-height: 490px;
}

.about-card {
  position: absolute;
  overflow: hidden;
  color: var(--white);
  border-radius: 30px;
  box-shadow: 0 30px 60px rgba(5, 61, 142, 0.18);
}

.about-card::after {
  position: absolute;
  width: 170px;
  height: 170px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.23);
  border-radius: 50%;
}

.about-card-main {
  inset: 5% 10% 15% 0;
  padding: 70px 50px;
  background: linear-gradient(145deg, var(--blue-800), var(--blue-600) 62%, #16aee7);
  transform: rotate(-3deg);
}

.about-card-main::after {
  right: -55px;
  bottom: -45px;
}

.about-card-small {
  right: 0;
  bottom: 0;
  z-index: 2;
  width: 57%;
  padding: 30px;
  background: linear-gradient(135deg, #882cd2, var(--purple-500));
  transform: rotate(4deg);
}

.about-card span {
  display: block;
  margin-bottom: 28px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.2em;
}

.about-card strong {
  display: block;
  max-width: 300px;
  font-size: 2.3rem;
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.about-card-small strong {
  font-size: 1.25rem;
}

.about-card p {
  max-width: 260px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

.about-dots {
  position: absolute;
  top: 5px;
  right: 15px;
  width: 85px;
  height: 85px;
  background-image: radial-gradient(var(--cyan-400) 2px, transparent 2px);
  background-size: 13px 13px;
}

.about-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.02rem;
}

.about-copy h2 {
  margin-bottom: 28px;
}

.official-mark {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 31px;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.official-mark > span {
  display: grid;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: var(--blue-600);
  border-radius: 50%;
  place-items: center;
  font-weight: 900;
}

.official-mark strong,
.official-mark small {
  display: block;
}

.official-mark strong {
  color: var(--blue-950);
  font-size: 0.9rem;
}

.official-mark small {
  color: #708096;
  font-size: 0.78rem;
}

.values {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 90% 10%, rgba(37, 200, 237, 0.14), transparent 24%),
    radial-gradient(circle at 0% 100%, rgba(165, 77, 232, 0.14), transparent 26%),
    var(--blue-950);
}

.section-heading.compact {
  grid-template-columns: 1fr;
}

.section-heading.compact h2 {
  color: var(--white);
}

.eyebrow.light {
  color: var(--cyan-200);
}

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

.value-card {
  min-height: 280px;
  padding: 32px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  transition: transform 180ms ease, background 180ms ease;
}

.value-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-5px);
}

.value-number {
  display: inline-block;
  margin-bottom: 60px;
  color: var(--cyan-400);
  font-size: 0.75rem;
  font-weight: 900;
}

.value-card h3 {
  margin: 0 0 10px;
  font-size: 1.35rem;
  letter-spacing: -0.025em;
}

.value-card p {
  margin: 0;
  color: #aabbd2;
  font-size: 0.9rem;
}

.contact {
  background: linear-gradient(180deg, #fff, #f3f9ff);
}

.contact-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 60px;
  padding: 64px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.contact-card > div > p:last-child {
  max-width: 480px;
  margin-bottom: 0;
  color: var(--muted);
}

.email-card {
  display: flex;
  align-items: center;
  gap: 17px;
  min-width: 0;
  padding: 24px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-800), var(--blue-600));
  border-radius: 20px;
  box-shadow: 0 20px 42px rgba(8, 103, 217, 0.22);
  transition: transform 180ms ease;
}

.email-card:hover {
  transform: translateY(-3px);
}

.email-icon {
  display: grid;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  color: var(--blue-700);
  background: var(--white);
  border-radius: 15px;
  place-items: center;
  font-size: 1.2rem;
  font-weight: 900;
}

.email-card > span:nth-child(2) {
  min-width: 0;
}

.email-card small,
.email-card strong {
  display: block;
}

.email-card small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.73rem;
}

.email-card strong {
  overflow: hidden;
  font-size: clamp(0.85rem, 1.45vw, 1.05rem);
  text-overflow: ellipsis;
}

.email-card b {
  margin-left: auto;
  font-size: 1.3rem;
}

.site-footer {
  padding: 64px 0 36px;
  color: #a9bad0;
  background: #021332;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 40px;
}

.footer-brand {
  color: var(--white);
}

.footer-inner > div:first-child p {
  margin: 8px 0 0;
  font-size: 0.86rem;
}

.footer-links {
  display: flex;
  gap: 26px;
  color: #d3deed;
  font-size: 0.82rem;
  font-weight: 700;
}

.footer-links a:hover {
  color: var(--cyan-400);
}

.copyright {
  grid-column: 1 / -1;
  padding-top: 27px;
  margin: 10px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.76rem;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-short {
  transition-delay: 80ms;
}

.reveal-delay {
  transition-delay: 160ms;
}

.legal-page {
  min-height: 100vh;
  background: var(--pale);
}

.legal-header {
  position: static;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.legal-main {
  padding: 78px 0 110px;
}

.legal-card {
  max-width: 820px;
  padding: 56px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.legal-card h1 {
  margin: 0 0 8px;
  color: var(--blue-950);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.legal-card .updated {
  margin: 0 0 38px;
  color: #718198;
  font-size: 0.82rem;
}

.legal-card h2 {
  margin: 34px 0 10px;
  color: var(--blue-900);
  font-size: 1.2rem;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
  font-size: 0.94rem;
}

.legal-card a {
  color: var(--blue-600);
  font-weight: 700;
}

@media (max-width: 980px) {
  .hero {
    padding-top: 130px;
  }

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

  .hero-copy {
    position: relative;
    z-index: 4;
    max-width: 680px;
  }

  .hero-art {
    min-height: 440px;
  }

  .logo-stage {
    width: 440px;
  }

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

  .product-showcase {
    min-height: auto;
  }

  .about-grid {
    gap: 65px;
  }

  .about-visual {
    width: min(580px, 100%);
    margin-inline: auto;
  }

  .contact-card {
    grid-template-columns: 1fr;
    gap: 35px;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 32px, 1180px);
  }

  .header-inner {
    min-height: 72px;
  }

  .menu-button {
    display: block;
  }

  .menu-button[aria-expanded="true"] > span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] > span:nth-child(2) {
    opacity: 0;
  }

  .menu-button[aria-expanded="true"] > span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .site-nav {
    position: absolute;
    top: 66px;
    right: 16px;
    left: 16px;
    display: none;
    align-items: stretch;
    gap: 4px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: 0 20px 40px rgba(4, 44, 103, 0.14);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    padding: 11px 12px;
    border-radius: 10px;
  }

  .nav-contact {
    text-align: center;
  }

  .hero {
    min-height: auto;
    padding: 122px 0 85px;
  }

  .hero h1 {
    font-size: clamp(3.25rem, 15vw, 4.8rem);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 17px;
  }

  .hero-art {
    min-height: 360px;
    margin-top: 12px;
  }

  .logo-stage {
    width: min(350px, 88vw);
  }

  .hero-wave {
    bottom: -50px;
    height: 90px;
  }

  .section {
    padding: 76px 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 34px;
  }

  .brand-strip-inner {
    grid-template-columns: 1fr;
    padding: 17px 0;
  }

  .brand-strip-inner > span {
    justify-content: flex-start;
    min-height: 30px;
  }

  .brand-strip-inner > span + span {
    border-left: 0;
  }

  .product-showcase {
    padding: 54px 24px 100px;
  }

  .product-main-frame {
    border-width: 6px;
    border-radius: 24px;
  }

  .product-alt-frame {
    right: 16px;
    bottom: 18px;
    width: 112px;
  }

  .product-colour-label {
    bottom: 20px;
    left: 15px;
    max-width: 165px;
  }

  .product-content {
    padding: 38px 27px;
  }

  .product-topline {
    align-items: flex-start;
  }

  .product-brand-lockup {
    grid-template-columns: auto 1fr;
  }

  .product-brand-lockup > i {
    display: none;
  }

  .about-grid {
    gap: 45px;
  }

  .about-visual {
    min-height: 390px;
  }

  .about-card-main {
    padding: 55px 33px;
  }

  .about-card strong {
    font-size: 1.9rem;
  }

  .about-card-small {
    width: 66%;
  }

  .about-card-small strong {
    font-size: 1.05rem;
  }

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

  .value-card {
    min-height: 230px;
  }

  .value-number {
    margin-bottom: 37px;
  }

  .contact-card {
    padding: 34px 24px;
  }

  .email-card {
    padding: 17px;
  }

  .email-card strong {
    font-size: 0.78rem;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 16px 24px;
  }

  .legal-main {
    padding: 45px 0 80px;
  }

  .legal-card {
    padding: 36px 24px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
