/* Clocker marketing site - global stylesheet.
 *
 * The scroll-canvas sections carry their layout as inline styles: the design
 * is scroll-driven and the runtime (assets/ck.js) reads and writes
 * element.style directly for the parallax, pane and reveal work, so moving
 * that layout into classes here would fight it.
 *
 * What DOES live here: base/reset, the icon font, keyframes, the hover rules
 * ck.js generates at runtime, the surfaces outside the canvas (legal pages,
 * 404, cookie consent, footer) and the industry-picker overlay. The overlay
 * and footer are classes rather than inline styles for one reason - they need
 * media queries, which an inline style cannot express.
 */

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: #08240F;
  color: #F2F6F0;
  font-family: Poppins, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

/* The scroll canvas hides its scrollbar so the sticky scenes read as one
   surface; the scroll itself is untouched (keyboard and wheel still work). */
html.ck-canvas,
html.ck-canvas body { scrollbar-width: none; -ms-overflow-style: none; }
html.ck-canvas ::-webkit-scrollbar { width: 0; height: 0; display: none; }

a { color: #8FD9A8; text-decoration: none; }
a:hover { color: #C4EED2; }

img { max-width: 100%; }

/* Inline display declarations would otherwise beat the UA [hidden] rule. */
[hidden] { display: none !important; }

summary { list-style: none; cursor: pointer; }
summary::-webkit-details-marker { display: none; }

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
input[type="number"] { -moz-appearance: textfield; }

:focus-visible { outline: 2px solid #8FD9A8; outline-offset: 3px; border-radius: 6px; }

/* Footer. Desktop: brand left, legal right, language row below. Phones: the
   language row hides (the header picker covers it) and everything centres. */
.ck-footer-main { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.ck-footer-row { display: flex; align-items: center; flex-wrap: wrap; }
.ck-footer-langs { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
@media (max-width: 859px) {
  .ck-footer-langs { display: none; }
  /* !important beats the inline padding; the extra bottom keeps the floating
     consent-reopen control from covering the legal links. */
  .ck-footer-main { flex-direction: column; justify-content: center; text-align: center; gap: 12px; padding-bottom: 78px !important; }
  .ck-footer-row { justify-content: center; }
}

/* Skip link - first tab stop, visible only while focused. */
.ck-skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 300;
  padding: 12px 18px;
  border-radius: 0 0 12px 0;
  background: #F5F4EE;
  color: #0B4417;
  font-size: 14px;
  font-weight: 600;
}
.ck-skip:focus { left: 0; color: #0B4417; }

.ms {
  font-family: "Material Symbols Rounded";
  font-weight: 400;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
}
.msf { font-variation-settings: "FILL" 1; }

.flag {
  flex: none;
  width: 18px;
  height: 13px;
  border-radius: 2px;
  overflow: hidden;
  display: inline-block;
  vertical-align: middle;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, .14);
}

@keyframes ckRise { from { opacity: 0; transform: translate3d(0, 110%, 0); } to { opacity: 1; transform: translate3d(0, 0, 0); } }
@keyframes ckFade { from { opacity: 0; transform: translate3d(0, 14px, 0); } to { opacity: 1; transform: none; } }
@keyframes ckPulse { 0%, 100% { opacity: .5; transform: scale(1); } 50% { opacity: 1; transform: scale(1.4); } }
@keyframes ckMarquee { from { transform: translate3d(0, 0, 0); } to { transform: translate3d(-50%, 0, 0); } }
@keyframes ckMarqueeR { from { transform: translate3d(-50%, 0, 0); } to { transform: translate3d(0, 0, 0); } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

/* --------------------------------------------------------------------------
 * Industry picker overlay
 *
 * Real classes, not inline styles, because this is the one surface that needs
 * a media query: it is the first thing a visitor sees and it must fit - or
 * scroll - on a short phone. It previously centred an 1005px block inside a
 * 667px viewport with overflow:visible and a locked body, so the title and the
 * last two trades were unreachable. Two fixes: the container scrolls, and the
 * inner block uses margin:auto (which centres when it fits and degrades to
 * flex-start when it does not - align-items:center clips instead).
 * ------------------------------------------------------------------------ */

.ck-ov {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  justify-content: center;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 24px;
  background: radial-gradient(70% 55% at 50% 30%, #0D3A1B, #08240F 75%);
  opacity: 0;
  transition: opacity .45s;
}
.ck-ov-inner { margin: auto; max-width: 820px; width: 100%; text-align: center; }

/* Fixed, not absolute: an absolutely positioned child of a scroll container
   scrolls away with the content, and the close control must not. */
.ck-ov-close {
  position: fixed;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(242, 246, 240, .2);
  background: rgba(8, 36, 15, .72);
  color: #F2F6F0;
  cursor: pointer;
  display: grid;
  place-items: center;
  backdrop-filter: blur(8px);
}
.ck-ov-close:hover { background: rgba(242, 246, 240, .14); }
.ck-ov-close .ms { font-size: 20px; }

.ck-ov-logo { height: 44px; width: 44px; margin-bottom: 18px; }
.ck-ov-title {
  margin: 0 0 10px;
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -.04em;
  line-height: 1.05;
}
.ck-ov-sub {
  margin: 0 auto 30px;
  max-width: 480px;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(242, 246, 240, .6);
}

.ck-ov-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 10px; }
.ck-ov-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 12px;
  border-radius: 18px;
  background: rgba(242, 246, 240, .05);
  border: 1.5px solid rgba(242, 246, 240, .14);
  color: #F2F6F0;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  cursor: pointer;
  transition: background .2s, border-color .2s, transform .2s;
}
.ck-ov-btn:hover { background: rgba(143, 217, 168, .12); border-color: #8FD9A8; transform: translateY(-3px); }
.ck-ov-btn .ms { font-size: 28px; color: #8FD9A8; }

/* Phones: two columns and a tighter block, so all eight trades and the
   question fit one screen instead of needing a scroll to even be seen.
   The old minmax(160px) needed 330px for two columns and had 327px - three
   pixels short, which is why it collapsed to a single tall column. */
@media (max-width: 559px) {
  .ck-ov { padding: 16px; }
  .ck-ov-logo { height: 36px; width: 36px; margin-bottom: 12px; }
  .ck-ov-title { font-size: 26px; margin-bottom: 8px; }
  .ck-ov-sub { font-size: 14px; margin-bottom: 20px; }
  .ck-ov-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .ck-ov-btn { padding: 14px 8px; gap: 7px; font-size: 12px; border-radius: 14px; }
  .ck-ov-btn .ms { font-size: 24px; }
}

/* --------------------------------------------------------------------------
 * Cookie consent
 * ------------------------------------------------------------------------ */

.consent-banner {
  position: fixed;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  z-index: 220;
  width: min(720px, calc(100vw - 24px));
}
.consent-card {
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(6, 32, 14, .94);
  border: 1px solid rgba(143, 217, 168, .28);
  box-shadow: 0 30px 70px -24px rgba(0, 0, 0, .8);
  backdrop-filter: blur(14px);
}
.consent-title { margin: 0 0 6px; font-size: 14px; font-weight: 700; letter-spacing: -.01em; }
.consent-text { margin: 0; font-size: 13px; line-height: 1.6; color: rgba(242, 246, 240, .72); }
.consent-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 14px; }

/* Both buttons are intentionally IDENTICAL in size, colour and weight: the
   EDPB cookie-banner guidance requires rejecting to carry the same visual
   weight as accepting. Do not restyle one of them to stand out. */
.consent-btn {
  flex: 0 0 auto;
  padding: 11px 20px;
  border-radius: 999px;
  border: 1px solid rgba(242, 246, 240, .2);
  background: rgba(242, 246, 240, .1);
  color: #F2F6F0;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s, border-color .2s;
}
.consent-btn:hover { background: rgba(143, 217, 168, .16); border-color: #8FD9A8; }


/* --------------------------------------------------------------------------
 * Back to top
 *
 * A dark disc that reads on both the green and the cream sections, ringed by
 * the page's scroll progress. assets/to-top.js writes the dashoffset and
 * decides when the button is on - past a threshold with a mouse, and only
 * while the reader is swiping back upward on a phone, where a permanent
 * floater would just sit on the content.
 * ------------------------------------------------------------------------ */

.ck-top {
  position: fixed;
  left: 28px;
  bottom: 28px;
  z-index: 120;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(6, 32, 14, .88);
  box-shadow: 0 16px 36px -14px rgba(0, 0, 0, .75);
  backdrop-filter: blur(10px);
  cursor: pointer;
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity .3s, transform .3s, visibility .3s;
}
.ck-top.is-on { opacity: 1; visibility: visible; transform: none; }

/* The consent card owns the bottom of the screen while it is open, and at
   860px the two overlap. Higher specificity than .is-on, so it always wins. */
#consent-banner:not([hidden]) ~ .ck-top { opacity: 0; visibility: hidden; transform: translateY(14px); }

/* Rotated so the progress arc starts at twelve o'clock. */
.ck-top-ring { position: absolute; inset: 0; width: 100%; height: 100%; transform: rotate(-90deg); }
.ck-top-track { fill: none; stroke: rgba(242, 246, 240, .16); stroke-width: 2.5; }
.ck-top-bar {
  fill: none;
  stroke: #8FD9A8;
  stroke-width: 2.5;
  stroke-linecap: round;
  transition: stroke-dashoffset 90ms linear, stroke .2s;
}
.ck-top:hover .ck-top-bar { stroke: #C4EED2; }

/* Clips the arrow swap: on hover the visible arrow leaves through the top and
   its twin arrives from below. */
.ck-top-face {
  position: relative;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #F5F4EE;
  overflow: hidden;
}
.ck-top-face svg {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 17px;
  height: 17px;
  fill: none;
  stroke: #0B4417;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transform: translate(-50%, -50%);
  transition: transform .26s cubic-bezier(.4, 0, .2, 1);
}
.ck-top-face svg + svg { transform: translate(-50%, 180%); }
.ck-top:hover .ck-top-face svg { transform: translate(-50%, -260%); }
.ck-top:hover .ck-top-face svg + svg { transform: translate(-50%, -50%); }

/* Phones: tighter into the corner and a touch smaller, so it clears the footer
   and covers as little of the content as it can while it is up. Only the parts
   sized in pixels need restating - the ring is drawn in viewBox units and
   scales with the button on its own. Must stay LAST in this section: these
   carry no extra specificity and win on source order alone. */
@media (max-width: 859px) {
  .ck-top { left: 16px; bottom: 16px; width: 46px; height: 46px; }
  .ck-top-face { width: 30px; height: 30px; }
  .ck-top-face svg { width: 15px; height: 15px; }
}


/* --------------------------------------------------------------------------
 * Legal pages + 404 - static documents, no scroll canvas
 * ------------------------------------------------------------------------ */

.doc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px clamp(18px, 5vw, 44px);
  border-bottom: 1px solid rgba(242, 246, 240, .09);
}
.doc-brand { display: flex; align-items: center; gap: 10px; color: #F2F6F0; }
.doc-brand span { font-size: 16px; font-weight: 700; letter-spacing: -.4px; }
.doc-actions { display: flex; align-items: center; gap: 10px; }
.doc-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(128, 148, 132, .4);
  background: rgba(128, 148, 132, .14);
  color: #F2F6F0;
  font-size: 12.5px;
  font-weight: 600;
}
.doc-pill:hover { border-color: #8FD9A8; color: #F2F6F0; }
.doc-cta {
  padding: 9px 16px;
  border-radius: 999px;
  background: #F5F4EE;
  color: #0B4417;
  font-size: 12.5px;
  font-weight: 600;
  white-space: nowrap;
}
.doc-cta:hover { color: #0B4417; }

.legal { padding: clamp(40px, 7vw, 90px) clamp(18px, 5vw, 44px) clamp(60px, 8vw, 110px); }
.legal-doc { max-width: 78ch; margin: 0 auto; }
.legal-kicker {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #8FD9A8;
}
.legal-title {
  margin: 14px 0 8px;
  font-size: clamp(30px, 4.4vw, 52px);
  line-height: 1.04;
  font-weight: 700;
  letter-spacing: -.04em;
}
.legal-updated { margin: 0 0 34px; font-size: 12.5px; color: rgba(242, 246, 240, .45); }

.legal-body { font-size: 15px; line-height: 1.75; color: rgba(242, 246, 240, .8); }
.legal-body h2 {
  margin: 44px 0 12px;
  font-size: clamp(19px, 2vw, 25px);
  font-weight: 700;
  letter-spacing: -.02em;
  color: #F2F6F0;
}
.legal-body h3 { margin: 28px 0 8px; font-size: 16px; font-weight: 700; color: #F2F6F0; }
.legal-body p { margin: 0 0 16px; }
.legal-body ul, .legal-body ol { margin: 0 0 16px; padding-left: 22px; }
.legal-body li { margin-bottom: 8px; }
.legal-body strong { color: #F2F6F0; }
.legal-body table { width: 100%; border-collapse: collapse; margin: 0 0 20px; font-size: 14px; }
.legal-body th, .legal-body td {
  padding: 10px 12px;
  border: 1px solid rgba(242, 246, 240, .12);
  text-align: left;
  vertical-align: top;
}
.legal-body th { background: rgba(242, 246, 240, .05); color: #F2F6F0; font-weight: 600; }

.legal-authoritative {
  margin: 40px 0 0;
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(242, 246, 240, .04);
  border: 1px solid rgba(242, 246, 240, .1);
  font-size: 12.5px;
  line-height: 1.6;
  color: rgba(242, 246, 240, .55);
}

.legal-crosslinks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid rgba(242, 246, 240, .09);
}
.legal-crosslinks-title {
  width: 100%;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(242, 246, 240, .4);
}
.legal-crosslinks a {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(242, 246, 240, .14);
  background: rgba(242, 246, 240, .04);
  color: rgba(242, 246, 240, .75);
  font-size: 12.5px;
  font-weight: 500;
}
.legal-crosslinks a:hover { border-color: #8FD9A8; color: #F2F6F0; }
.legal-crosslinks a[aria-current="page"] { background: #8FD9A8; border-color: #8FD9A8; color: #08240F; }

.doc-footer {
  padding: 26px clamp(18px, 5vw, 44px) 40px;
  border-top: 1px solid rgba(242, 246, 240, .09);
  font-size: 12px;
  color: rgba(242, 246, 240, .45);
}
.doc-footer p { margin: 0 0 6px; }

.nf {
  min-height: 78vh;
  display: grid;
  place-items: center;
  padding: clamp(40px, 8vw, 100px) clamp(20px, 5vw, 56px);
  text-align: center;
  background: radial-gradient(70% 55% at 50% 24%, #0D3A1B, #08240F 72%);
}
.nf-inner { max-width: 560px; }
.nf-kicker {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #8FD9A8;
}
.nf-title {
  margin: 14px 0 12px;
  font-size: clamp(30px, 5vw, 56px);
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: -.045em;
}
.nf-text { margin: 0 0 28px; font-size: 15px; line-height: 1.6; color: rgba(242, 246, 240, .62); }
.nf-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.nf-primary {
  padding: 15px 27px;
  border-radius: 999px;
  background: #F5F4EE;
  color: #0B4417;
  font-size: 15px;
  font-weight: 600;
}
.nf-primary:hover { color: #0B4417; }
.nf-secondary {
  padding: 15px 27px;
  border-radius: 999px;
  border: 1px solid rgba(242, 246, 240, .22);
  color: #F2F6F0;
  font-size: 15px;
  font-weight: 600;
}
.nf-secondary:hover { border-color: #8FD9A8; color: #F2F6F0; }


/* --------------------------------------------------------------------------
 * Account deletion (/delete-account/) - the site's only form
 *
 * Colour note: #C0272D is the one red on this site, and it is the DARK red on
 * purpose. The obvious bright red (#E5484D) carries only 3.9:1 against white
 * label text, which fails AA on the single most consequential button here;
 * this one reaches 5.9:1. #F2777B is its text-on-dark counterpart (6.1:1 on
 * #08240F). Do not swap either for a lighter red without recomputing.
 * ------------------------------------------------------------------------ */

.da {
  padding: clamp(36px, 6vw, 76px) clamp(18px, 5vw, 44px) clamp(56px, 8vw, 100px);
  background: radial-gradient(70% 45% at 50% 0%, #0D3A1B, #08240F 70%);
}
.da-doc { max-width: 64ch; margin: 0 auto; }
.da-lead {
  margin: 14px 0 30px;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(242, 246, 240, .74);
}

.da-cards { display: grid; gap: 12px; margin-bottom: 30px; }
.da-card {
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(242, 246, 240, .04);
  border: 1px solid rgba(242, 246, 240, .1);
}
.da-card-h {
  margin: 0 0 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #8FD9A8;
}
.da-card-p { margin: 0; font-size: 14px; line-height: 1.65; color: rgba(242, 246, 240, .74); }

/* Which account is about to go. Monospaced digits are not worth a font swap,
   but the address must never wrap into something ambiguous. */
.da-who {
  display: inline-block;
  margin: 0 0 14px;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid rgba(143, 217, 168, .3);
  background: rgba(143, 217, 168, .1);
  font-size: 13px;
  color: #F2F6F0;
  overflow-wrap: anywhere;
}

.da-panel {
  padding: 22px clamp(18px, 4vw, 26px);
  border-radius: 20px;
  background: rgba(6, 32, 14, .6);
  border: 1px solid rgba(242, 246, 240, .12);
}
.da-panel:focus { outline: none; }
.da-panel:focus-visible { outline: 2px solid #8FD9A8; outline-offset: 3px; }
.da-panel-danger { border-color: rgba(242, 119, 123, .45); }
.da-h {
  margin: 0 0 12px;
  font-size: clamp(19px, 2.2vw, 23px);
  font-weight: 700;
  letter-spacing: -.02em;
}
.da-body { margin: 0 0 16px; font-size: 14.5px; line-height: 1.65; color: rgba(242, 246, 240, .78); }
.da-note {
  margin: 16px 0 0;
  font-size: 12.5px;
  line-height: 1.6;
  color: rgba(242, 246, 240, .5);
}
.da-note a { color: #8FD9A8; }
.da-date {
  margin: 0 0 14px;
  padding: 12px 16px;
  border-radius: 14px;
  background: rgba(242, 119, 123, .12);
  border: 1px solid rgba(242, 119, 123, .3);
  font-size: 14px;
  font-weight: 600;
  color: #F2F6F0;
}
.da-list { margin: 0 0 18px; padding-left: 20px; font-size: 14.5px; line-height: 1.7; }
.da-list li { color: #F2F6F0; overflow-wrap: anywhere; }

/* Google's branding guidelines want their own mark on a light surface, which is
   also the site's primary button colour - so it needs no special-casing. */
.da-google {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 20px;
  border: 0;
  border-radius: 999px;
  background: #F5F4EE;
  color: #0B4417;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: transform .15s, box-shadow .2s;
}
.da-google:hover { transform: translateY(-1px); box-shadow: 0 16px 34px -18px rgba(0, 0, 0, .8); }

.da-or {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 18px 0;
  font-size: 12px;
  color: rgba(242, 246, 240, .4);
}
.da-or::before, .da-or::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(242, 246, 240, .12);
}

.da-form { display: grid; gap: 14px; }
.da-field { display: grid; gap: 6px; }
.da-label { font-size: 12.5px; font-weight: 600; color: rgba(242, 246, 240, .68); }
.da-input {
  width: 100%;
  padding: 13px 15px;
  border-radius: 13px;
  border: 1px solid rgba(242, 246, 240, .22);
  background: rgba(242, 246, 240, .06);
  color: #F2F6F0;
  font-family: inherit;
  font-size: 15px;
}
.da-input::placeholder { color: rgba(242, 246, 240, .35); }
.da-input:focus { outline: 2px solid #8FD9A8; outline-offset: 1px; border-color: transparent; }

.da-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }
.da-btn {
  flex: 0 0 auto;
  padding: 13px 24px;
  border-radius: 999px;
  border: 1px solid rgba(242, 246, 240, .24);
  background: transparent;
  color: #F2F6F0;
  font-family: inherit;
  font-size: 14.5px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color .2s, background .2s;
}
a.da-btn { display: inline-flex; align-items: center; }
.da-btn:hover { border-color: #8FD9A8; background: rgba(143, 217, 168, .1); color: #F2F6F0; }

.da-danger {
  flex: 0 0 auto;
  padding: 14px 26px;
  border: 0;
  border-radius: 999px;
  background: #C0272D;
  color: #FFFFFF;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s;
}
.da-danger:hover { background: #A61F25; color: #FFFFFF; }
.da-danger:disabled { opacity: .55; cursor: default; }

.da-link {
  padding: 0;
  border: 0;
  background: none;
  color: rgba(242, 246, 240, .6);
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 500;
  text-decoration: underline;
  cursor: pointer;
}
.da-link:hover { color: #8FD9A8; }

.da-msg {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(242, 246, 240, .74);
}
.da-msg.is-error { color: #F2777B; }

/* Unlike the landing's language row, this one stays on phones: somebody who
   arrived on the wrong language still has to be able to read the page. */
.da-langs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(242, 246, 240, .09);
}
.da-langs a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: rgba(242, 246, 240, .5);
}
.da-langs a[aria-current="true"] { color: #8FD9A8; }
.da-langs a:hover { color: #8FD9A8; }

@media (min-width: 720px) {
  .da-cards { grid-template-columns: repeat(3, 1fr); }
}
