
* { box-sizing: border-box; }

html {
  min-width: 0;
  min-height: 100%;
  background: var(--page);
}

body {
  min-width: 0;
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background: var(--page);
  font-family: var(--font-body);
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

.announcement {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 36px 24px;
}

.announcement-card {
  width: 100%;
  max-width: 820px;
  min-width: 0;
  padding: clamp(34px, 7vw, 68px);
  border: 1px solid var(--line);
  border-radius:32px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.product-brand {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-ui);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.025em;
}

.brand-mark {
  position: relative;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border-radius: 50%;
  background: var(--brand);
}

.brand-mark::before,
.brand-mark::after,
.brand-mark span {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: #fff;
}

.brand-mark::before {
  width: 9px;
  height: 9px;
  left: 7px;
  top: 10px;
}

.brand-mark::after {
  width: 7px;
  height: 7px;
  right: 7px;
  top: 8px;
  background: var(--green);
}

.brand-mark span {
  width: 8px;
  height: 8px;
  left: 16px;
  bottom: 7px;
  background: var(--purple);
}

.announcement-copy {
  min-width: 0;
  max-width: 650px;
  margin-top: clamp(58px, 10vw, 94px);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--brand-strong);
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-family: var(--font-editorial);
  font-size: clamp(44px, 7vw, 66px);
  font-weight:800;
  letter-spacing:-.04em;
  line-height: 1.02;
  overflow-wrap: break-word;
}

.announcement-copy > p:last-child {
  max-width: 590px;
  margin: 27px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

@media (max-width: 560px) {
  .announcement { padding: 18px 14px; }
  .announcement-card {
    min-height: calc(100vh - 36px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 28px 24px 38px;
    border-radius: 22px;
  }
  .product-brand { font-size: 17px; }
  .brand-mark { width: 34px; height: 34px; flex-basis: 34px; }
  .announcement-copy { margin-top: 64px; }
  h1 { font-size: clamp(38px, 10.5vw, 44px); }
  .announcement-copy > p:last-child { font-size: 17px; }
}
