/* Knfrmd - Static Holding Page */

:root {
  --color-text: #010101;
  --color-bg: #f7f7f7;
  --color-text-muted: #555;
  --font-primary: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  --max-width: 720px;
  --section-spacing: 100px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-primary);
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-bg);
}

.holding-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Header */
.holding-header {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2rem 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-name {
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.header-label {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  letter-spacing: 0.02em;
}

/* Main */
.holding-main {
  flex: 1;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px var(--section-spacing);
}

/* Sections */
.holding-section {
  margin-bottom: var(--section-spacing);
}

.holding-section:last-of-type {
  margin-bottom: 0;
}

/* Positioning */
.positioning-section {
  padding-top: 3rem;
}

.positioning-text {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--color-text);
  margin-bottom: 1.5rem;
}

.positioning-subline {
  font-size: 1rem;
  color: var(--color-text-muted);
}

/* Section Titles */
.holding-title {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

/* Body Text */
.holding-text {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.holding-text:last-child {
  margin-bottom: 0;
}

.holding-text-muted {
  color: var(--color-text-muted);
}

/* Platforms */
.platform-item {
  margin-bottom: 2.5rem;
}

.platform-item:last-child {
  margin-bottom: 0;
}

.platform-name {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.platform-desc {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.platform-link {
  font-size: 0.875rem;
  color: var(--color-text);
  text-decoration: none;
}

.platform-link:hover {
  text-decoration: underline;
}

/* Email */
.email-link {
  color: var(--color-text);
  text-decoration: none;
}

.email-link:hover {
  text-decoration: underline;
}

/* Footer */
.holding-footer {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 3rem 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.holding-footer p {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  margin-bottom: 0.25rem;
}

.holding-footer p:last-child {
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 600px) {
  :root {
    --section-spacing: 72px;
  }

  .holding-header {
    padding: 1.5rem 20px;
  }

  .holding-main {
    padding: 0 20px var(--section-spacing);
  }

  .positioning-section {
    padding-top: 2rem;
  }

  .positioning-text {
    font-size: 1.125rem;
  }

  .holding-footer {
    padding: 2rem 20px;
  }
}
